Skip to content
Snippets Groups Projects

Feature/zhoushiqi

Merged 周士琪 requested to merge feature/zhoushiqi into develop
Compare and
41 files
+ 1404
107
Compare changes
  • Side-by-side
  • Inline
Files
41
@@ -24,7 +24,7 @@ public interface IEntrustmentController {
@ApiOperation("生成委托函")
@PostMapping(path = "/saveEntrustment")
Result<Integer> saveEntrustment(@RequestBody @NotNull @Valid com.seasky.budget.web.dto.entrustment.EntrustmentCmd entrustmentCmd);
Result<Integer> saveEntrustment(@RequestBody @NotNull @Valid EntrustmentCmd entrustmentCmd);
@ApiOperation("获取委托函状态列表")
@PostMapping(path = "/getEnstrustmentStateEnumList")
@@ -76,7 +76,7 @@ public interface IEntrustmentController {
@ApiOperation("财资中心批量分配委托函给事务所")
@PostMapping(path = "/batchOfiiceDevide")
Result<Integer> batchOfiiceDevide(@RequestBody @NotNull com.seasky.budget.web.dto.entrustment.EntrustmentOperateCmd entrustmentOperateCmd);
Result<Integer> batchOfiiceDevide(@RequestBody @NotNull EntrustmentOperateCmd entrustmentOperateCmd);
@ApiOperation("财资中心取消认领委托函")
@PostMapping(path = "/cancelClaimEntrustment")
@@ -86,14 +86,14 @@ public interface IEntrustmentController {
@PostMapping(path = "/confirmAccept")
Result<Integer> confirmAccept(@RequestBody @NotNull EntrustmentOperateCmd entrustmentOperateCmd);
@ApiOperation("预审完成前校验")
@ApiOperation("预审完成前校验【预审项目数与项目表个数的对比】")
@PostMapping(path = "/preliminaryCheck")
Result<Integer> preliminaryCheck(@RequestBody @NotNull IdRequest idRequest);
@ApiOperation("委托函预审完成")
@PostMapping(path = "/preliminary")
Result<Integer> preliminary(@RequestBody @NotNull IdRequest idRequest);
@ApiOperation("获取事务所列表")
@ApiOperation("分配事务所-获取事务所列表")
@PostMapping(path = "/getOfficeList")
Result<OfficeOut> getOfficeList();
}