| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.stylefeng.guns.modular.system.model.SysRedPacketRecord; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2020-06-13 |
| | | */ |
| | | public interface ISysRedPacketRecordService extends IService<SysRedPacketRecord> { |
| | | List<Map<String,Object>> getList(Page<Map<String, Object>> page, |
| | | String beginTime, |
| | | String endTime, |
| | | String userName, |
| | | String userPhone, |
| | | Integer couponActivityId, |
| | | Integer activityType, Integer state); |
| | | |
| | | } |