【泛微-单据状态更新接口】model修改

This commit is contained in:
tanfengling@x-ri.com 2025-10-16 16:38:07 +08:00
parent aaf223e706
commit bffd866e23
1 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@ public class FWBillStateUpdModel {
@ApiParam(value = "金蝶单据编码", example = "M001", required = true) @ApiParam(value = "金蝶单据编码", example = "M001", required = true)
private String KDBillNumber; private String KDBillNumber;
@ApiParam(value = "状态", example = "A", required = true) @ApiParam(value = "状态", example = "1", required = true)
private String state; private Integer state;
@ApiParam(value = "说明", example = "审核通过") @ApiParam(value = "说明", example = "审核通过")
private String message; private String message;
@ -34,11 +34,11 @@ public class FWBillStateUpdModel {
this.KDBillNumber = KDBillNumber; this.KDBillNumber = KDBillNumber;
} }
public String getState() { public Integer getState() {
return state; return state;
} }
public void setState(String state) { public void setState(Integer state) {
this.state = state; this.state = state;
} }