package com.template.api; import com.template.annotation.DESRespondSecret; import com.template.model.result.CommonResult; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @RequestMapping("/api/DingTalk") @Api(tags = {"DingtalkController"}, value = "钉钉") public interface DingtalkControllerAPI { @GetMapping("/UpdateAttReport") @ApiOperation(value = "更新考勤报表数据",httpMethod = "GET") CommonResult queryAttReport(int currentPage, int pageCount, String name, String state); }