feat: 打包管理增加三个字段

收费通知号
收费通知文件id
合同号
This commit is contained in:
2024-03-11 14:21:07 +08:00
parent ec9f232fbd
commit 44ff0c3111
@@ -223,7 +223,17 @@ public class PayPackCompany implements Serializable {
@ApiModelProperty(value = "来款方式(1:无,2:合同,3:收费通知)")
@NotNull(message = "来款方式不能为空")
private java.lang.Integer chargeWay;
/**合同编号*/
@ApiModelProperty(value = "合同编号")
@Size(max = 50,message = "合同编号长度不能大于50个字符")
private String contractNum;
/**收费通知号*/
@ApiModelProperty(value = "收费通知号")
@Size(max = 50,message = "收费通知号长度不能大于50个字符")
private String chargeNoticeNo;
/**收费通知文件id*/
@ApiModelProperty(value = "收费通知文件id")
private String chargeNoticeId;
/**待确收金额(元)*/
@Excel(name = "待确收金额(元)", width = 15)
@ApiModelProperty(value = "待确收金额(元)")