MrShi
4 天以前 82f707ece09a906007f3d760b6bb025896e3bba6
server/services/src/main/java/com/doumee/service/business/ShopInfoService.java
@@ -6,6 +6,7 @@
import com.doumee.dao.business.model.Member;
import com.doumee.dao.dto.*;
import com.doumee.dao.vo.ShopLoginVO;
import com.doumee.dao.vo.ShopCenterVO;
import com.doumee.dao.vo.ShopDetailVO;
import com.doumee.dao.vo.ShopNearbyVO;
import com.doumee.dao.vo.ShopWebDetailVO;
@@ -108,7 +109,7 @@
     * @param request 申请请求
     * @param member 当前登录会员
     */
    void applyShop(ShopApplyDTO request, Member member);
    void applyShop(ShopApplyDTO request);
    /**
     * 查询门店详情(含附件)
@@ -178,6 +179,13 @@
    /**
     * 获取门店登录后信息(门店中心)
     * @param shopId 门店主键
     * @return 门店中心信息
     */
    ShopCenterVO getShopCenterInfo(Integer shopId);
    /**
     * 门店密码登录
     * @param dto 登录请求
     * @return 登录结果
@@ -185,10 +193,10 @@
    ShopLoginVO shopPasswordLogin(ShopLoginDTO dto);
    /**
     * 门店静默登录(根据openid)
     * @param openid
     * 门店静默登录(默认用户携带的openid进行查询)
     * @param memberId
     * @return 登录结果
     */
    ShopLoginVO shopSilentLogin(String openid);
    ShopLoginVO shopSilentLogin(Integer memberId);
}