From bffd866e2311842747b97f563a05b56275dca0ab Mon Sep 17 00:00:00 2001 From: "tanfengling@x-ri.com" <123456> Date: Thu, 16 Oct 2025 16:38:07 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=B3=9B=E5=BE=AE-=E5=8D=95=E6=8D=AE?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E6=9B=B4=E6=96=B0=E6=8E=A5=E5=8F=A3=E3=80=91?= =?UTF-8?q?model=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lc123/cloud/app/api/model/FWBillStateUpdModel.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }