| | |
| | | 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; |
| | |
| | | * @param shop 实体对象 |
| | | * @return Integer |
| | | */ |
| | | Integer create(Shop shop); |
| | | Integer create(Shop shop) throws Exception; |
| | | |
| | | /** |
| | | * 主键删除 |
| | |
| | | |
| | | /** |
| | | * 我的客户信息 |
| | | * @param request |
| | | * @param shopId |
| | | * @return |
| | | */ |
| | | List<MyCustomerResponse> myCustomer(MyCustomerRequest request, Integer shopId); |
| | | PageData<Member> myCustomer(PageWrap<MyCustomerRequest> pageWrap, Integer shopId); |
| | | |
| | | /** |
| | | * 销售明细 |
| | |
| | | * @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); |
| | | } |