| | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.stylefeng.guns.modular.system.model.DriverActivityHistory; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import org.apache.poi.hssf.usermodel.HSSFWorkbook; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | */ |
| | | List<Map<String,Object>> getList(Page<Map<String, Object>> page,Integer activityId,Integer type); |
| | | |
| | | |
| | | /** |
| | | * 导出数据查询 |
| | | * @param activityId |
| | | * @param type |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> getListt(Integer activityId,Integer type); |
| | | |
| | | |
| | | /** |
| | | * 获取司机活动收益明细 |
| | | * @param driverName |
| | | * @param driverPhone |
| | | * @param createTime |
| | | * @param offset |
| | | * @param limit |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | Map<String, Object> rewardDetailsList(String driverName, String driverPhone, String createTime, Integer offset, Integer limit) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 导出司机活动收益明细 |
| | | * @param driverName |
| | | * @param driverPhone |
| | | * @param createTime |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | HSSFWorkbook exportRewardDetails(String driverName, String driverPhone, String createTime) throws Exception; |
| | | } |