From 3ee5c85882e6d8fe75d51a4494a21237a15e6c63 Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Thu, 5 Dec 2024 17:07:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E7=A8=8B=E7=BB=93=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../settlement/domain/SltAgreementInfo.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/bonus-modules/bonus-material/src/main/java/com/bonus/material/settlement/domain/SltAgreementInfo.java b/bonus-modules/bonus-material/src/main/java/com/bonus/material/settlement/domain/SltAgreementInfo.java index bfe00cf3..00fbf023 100644 --- a/bonus-modules/bonus-material/src/main/java/com/bonus/material/settlement/domain/SltAgreementInfo.java +++ b/bonus-modules/bonus-material/src/main/java/com/bonus/material/settlement/domain/SltAgreementInfo.java @@ -30,6 +30,13 @@ public class SltAgreementInfo extends BaseEntity { @ApiModelProperty(value = "协议id") private Long agreementId; + /** + * 协议编号 + */ + @Excel(name = "协议编号") + @ApiModelProperty(value = "协议编号") + private String agreementCode; + /** 机具规格id */ @Excel(name = "机具规格id") @ApiModelProperty(value = "机具规格id") @@ -131,4 +138,17 @@ public class SltAgreementInfo extends BaseEntity { * 工程名称 */ private String projectName; + + @ApiModelProperty(value = "往来单位id") + private Long unitId; + + /** + * 工程标段ID + */ + @ApiModelProperty(value = "工程标段ID") + private Long projectId; + + @ApiModelProperty(value = "结算状态") + private String sltStatus; + }