| 1234567891011121314151617181920212223 |
- package com.template.api;
- import com.template.model.dto.CallSystemSaveOrUpdateDto;
- import com.template.model.result.CommonResult;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- @RequestMapping("/auto/call-system")
- public interface CallSystemControllerAPI {
- @GetMapping("/list")
- @ApiOperation(value = "催缴设置查询", notes = "催缴设置查询", httpMethod = "GET")
- CommonResult list(String permissionSettingId);
- @PostMapping("/saveOrUpdate")
- @ApiOperation(value = "催缴置修改和添加", notes = "催缴设置修改和添加", httpMethod = "POST")
- CommonResult saveOrUpdate(@RequestBody CallSystemSaveOrUpdateDto callSystemSaveOrUpdateDto);
- }
|