diff --git a/lc123/cloud/app/api/model/FWBillStateUpdModel.java b/lc123/cloud/app/api/model/FWBillStateUpdModel.java index ddfc0cf..1644c70 100644 --- a/lc123/cloud/app/api/model/FWBillStateUpdModel.java +++ b/lc123/cloud/app/api/model/FWBillStateUpdModel.java @@ -12,8 +12,8 @@ public class FWBillStateUpdModel { @ApiParam(value = "金蝶单据编码", example = "M001", required = true) private String KDBillNumber; - @ApiParam(value = "状态", example = "A", required = true) - private String state; + @ApiParam(value = "状态", example = "1", required = true) + private Integer state; @ApiParam(value = "说明", example = "审核通过") private String message; @@ -34,11 +34,11 @@ public class FWBillStateUpdModel { this.KDBillNumber = KDBillNumber; } - public String getState() { + public Integer getState() { return state; } - public void setState(String state) { + public void setState(Integer state) { this.state = state; }