rk
14 小时以前 df587a823a6d61f178e43cac10403218b06c3646
server/dmmall_service/src/main/java/com/doumee/service/business/ShopService.java
@@ -5,6 +5,7 @@
import com.doumee.dao.business.model.Integral;
import com.doumee.dao.business.model.Member;
import com.doumee.dao.business.model.Shop;
import com.doumee.dao.system.vo.ShopMoneyVO;
import com.doumee.dao.web.dto.MemberDTO;
import com.doumee.dao.web.dto.ResetSystemUserPwdDTO;
import com.doumee.dao.web.dto.ShopLoginDTO;
@@ -31,7 +32,7 @@
     * @param shop 实体对象
     * @return Integer
     */
    Integer create(Shop shop);
    Integer create(Shop shop) throws Exception;
    /**
     * 主键删除
@@ -59,7 +60,7 @@
     *
     * @param shop 实体对象
     */
    void updateById(Shop shop);
    void updateById(Shop shop) throws Exception;
    void updateIsRecById(Shop shop);
@@ -70,7 +71,7 @@
     *
     * @param shops 实体集
     */
    void updateByIdInBatch(List<Shop> shops);
//    void updateByIdInBatch(List<Shop> shops);
    /**
     * 支持维护店铺信息
@@ -197,11 +198,10 @@
    /**
     * 我的客户信息
     * @param request
     * @param shopId
     * @return
     */
    List<MyCustomerResponse> myCustomer(MyCustomerRequest request, Integer shopId);
    PageData<Member> myCustomer(PageWrap<MyCustomerRequest> pageWrap, Integer shopId);
    /**
     * 销售明细
@@ -209,9 +209,13 @@
     * @param shopId
     * @return
     */
    SaleReportResponse saleReport(SaleReportRequest request, String shopId);
    SaleReportResponse saleReport(SaleReportRequest request, Integer shopId);
    String setGoodsPrice(Shop shop);
    PageData<ShopMoneyVO>  findPageMoney(PageWrap<Shop> pageWrap);
    void logOut(String token,Integer shopId);
}