DingtalkControllerAPI.java 659 B

12345678910111213141516171819
  1. package com.template.api;
  2. import com.template.annotation.DESRespondSecret;
  3. import com.template.model.result.CommonResult;
  4. import io.swagger.annotations.Api;
  5. import io.swagger.annotations.ApiOperation;
  6. import org.springframework.web.bind.annotation.GetMapping;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. @RequestMapping("/api/DingTalk")
  9. @Api(tags = {"DingtalkController"}, value = "钉钉")
  10. public interface DingtalkControllerAPI {
  11. @GetMapping("/UpdateAttReport")
  12. @ApiOperation(value = "更新考勤报表数据",httpMethod = "GET")
  13. CommonResult queryAttReport(int currentPage, int pageCount, String name, String state);
  14. }