|
|
@@ -171,12 +171,26 @@ public class ActivityController extends BaseController {
|
|
|
*/
|
|
|
@ApiOperation("查询活动打卡记录列表(分页)")
|
|
|
@SaCheckPermission("clock:activity:clockRecord:list")
|
|
|
+ @FilePathSplicing(type = FilePathSplicingType.RESPONSE)
|
|
|
@GetMapping("/clockRecord/page")
|
|
|
public TableDataInfo<ActivityClockRecordVo> clockRecordPage(
|
|
|
@Validated(QueryGroup.class) ActivityClockRecordBo bo, PageQuery pageQuery) {
|
|
|
return iClockRecordService.queryActivityClockRecordPage(bo, pageQuery);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 导出活动打卡记录信息列表
|
|
|
+ */
|
|
|
+ @ApiOperation("导出活动信息列表")
|
|
|
+ @Log(title = "活动信息", businessType = BusinessType.EXPORT)
|
|
|
+ @FilePathSplicing(type = FilePathSplicingType.RESPONSE)
|
|
|
+ @PostMapping("/clockRecordExport")
|
|
|
+ public void clockRecordExport(@Validated ActivityClockRecordBo bo, HttpServletResponse response) {
|
|
|
+ List<ActivityClockRecordVo> list = iClockRecordService.queryActivityClockRecordList(bo);
|
|
|
+ ExcelUtil.exportExcel(list, "活动打卡记录信息", ActivityClockRecordVo.class, response);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 查询活动打卡统计
|
|
|
* 当前筛选条件下打卡店员人数与销售数量合计
|