update 参会人备注改为公共字段

This commit is contained in:
lijiarao
2023-07-20 09:46:43 +08:00
parent 60656f9a2e
commit 16986ebafc
2 changed files with 7 additions and 5 deletions
@@ -156,9 +156,5 @@ public class InternationalGuestVO {
@Size(max = 50,message = "同行人最大为50字符")
private String peer;
/**备注*/
@Excel(name = "备注", width = 15)
@ApiModelProperty(value = "备注")
@Size(max = 200,message = "备注最大为200字符")
private String remark;
}
@@ -96,4 +96,10 @@ public class MeetingEntity implements Serializable {
@ApiModelProperty(value = "实收金额")
private BigDecimal paidAmount;
/**备注*/
@Excel(name = "备注", width = 15)
@ApiModelProperty(value = "备注")
@Size(max = 200,message = "备注最大为200字符")
private String remark;
}