| | |
| | | public interface ActivityMapper extends BaseMapper<Activity> { |
| | | |
| | | /** |
| | | * id查找客户黑名单 |
| | | * id查找 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ActivityVO getById(String id); |
| | | |
| | | /** |
| | | * 分页 |
| | | * 管理端分页 |
| | | */ |
| | | IPage getPage(IPage page, @Param("query") ActivityQuery query); |
| | | |
| | | /** |
| | | * 商家端端分页 |
| | | */ |
| | | IPage storeGetPage(IPage page, @Param("query") ActivityQuery query); |
| | | |
| | | |
| | | IPage getMembers(IPage page, @Param("query") ActivityMembersQuery query); |
| | |
| | | int batchUpdateActivities(@Param("list") List<Activity> activityList); |
| | | |
| | | |
| | | |
| | | |
| | | IPage getCanReportPage(IPage page,@Param("query") ActivityQuery query); |
| | | } |