| 123456789101112131415161718 |
- package com.template.api;
- import com.template.model.result.CommonResult;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- @RequestMapping("/auto/smartAskForLeaveConfig")
- public interface SmartAskForLeaveConfigControllerAPI {
- @GetMapping(value = "/list")
- @ApiOperation(value = "请假配置展示", notes = "请假配置展示", httpMethod = "GET")
- CommonResult list();
- }
|