SmartAskForLeaveConfigControllerAPI.java 567 B

123456789101112131415161718
  1. package com.template.api;
  2. import com.template.model.result.CommonResult;
  3. import io.swagger.annotations.ApiOperation;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.RequestMapping;
  6. import org.springframework.web.bind.annotation.RequestParam;
  7. @RequestMapping("/auto/smartAskForLeaveConfig")
  8. public interface SmartAskForLeaveConfigControllerAPI {
  9. @GetMapping(value = "/list")
  10. @ApiOperation(value = "请假配置展示", notes = "请假配置展示", httpMethod = "GET")
  11. CommonResult list();
  12. }