rk
4 天以前 ce477aa3f4d34a65898c7e69162dde623182338b
server/services/src/main/java/com/doumee/service/business/ShopInfoService.java
@@ -9,6 +9,7 @@
import com.doumee.dao.vo.ShopCenterVO;
import com.doumee.dao.vo.ShopDetailVO;
import com.doumee.dao.vo.ShopNearbyVO;
import com.doumee.dao.vo.ShopSalesStatsVO;
import com.doumee.dao.vo.ShopWebDetailVO;
import java.math.BigDecimal;
@@ -109,7 +110,7 @@
     * @param request 申请请求
     * @param member 当前登录会员
     */
    void applyShop(ShopApplyDTO request, Member member);
    void applyShop(ShopApplyDTO request);
    /**
     * 查询门店详情(含附件)
@@ -193,10 +194,19 @@
    ShopLoginVO shopPasswordLogin(ShopLoginDTO dto);
    /**
     * 门店静默登录(根据openid)
     * @param openid
     * 门店静默登录(默认用户携带的openid进行查询)
     * @param memberId
     * @return 登录结果
     */
    ShopLoginVO shopSilentLogin(String openid);
    ShopLoginVO shopSilentLogin(Integer memberId);
    /**
     * 门店销售统计
     *
     * @param shopId  门店主键
     * @param period  统计周期:0=今日, 1=本月, 2=上月
     * @return 销售统计
     */
    ShopSalesStatsVO getShopSalesStats(Integer shopId, Integer period);
}