CallSystemControllerAPI.java 923 B

1234567891011121314151617181920212223
  1. package com.template.api;
  2. import com.template.model.dto.CallSystemSaveOrUpdateDto;
  3. import com.template.model.result.CommonResult;
  4. import io.swagger.annotations.ApiOperation;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.PostMapping;
  7. import org.springframework.web.bind.annotation.RequestBody;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. @RequestMapping("/auto/call-system")
  10. public interface CallSystemControllerAPI {
  11. @GetMapping("/list")
  12. @ApiOperation(value = "催缴设置查询", notes = "催缴设置查询", httpMethod = "GET")
  13. CommonResult list(String permissionSettingId);
  14. @PostMapping("/saveOrUpdate")
  15. @ApiOperation(value = "催缴置修改和添加", notes = "催缴设置修改和添加", httpMethod = "POST")
  16. CommonResult saveOrUpdate(@RequestBody CallSystemSaveOrUpdateDto callSystemSaveOrUpdateDto);
  17. }