diff --git a/db/24年1月中旬需求变更新增.sql b/db/24年1月中旬需求变更新增.sql index a8ca052b..c2d26f58 100644 --- a/db/24年1月中旬需求变更新增.sql +++ b/db/24年1月中旬需求变更新增.sql @@ -153,7 +153,8 @@ INSERT INTO `income_payments`.`sys_permission`(`id`, `parent_id`, `name`, `url`, INSERT INTO `income_payments`.`sys_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1477781428149047297', '1432280766382727169', '起草组会议', '7', '起草组会议', 7.00, 1, 'LKGLZ', '2024-01-05 14:56:54', NULL, NULL); - +ALTER TABLE `pay_meeting` + MODIFY COLUMN `remark` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备注' AFTER `hotel_address`; diff --git a/jero-boot-incoming-payment/src/main/java/com/jero/meeting/vo/PayMeetingVO.java b/jero-boot-incoming-payment/src/main/java/com/jero/meeting/vo/PayMeetingVO.java index 692a48bb..79711832 100644 --- a/jero-boot-incoming-payment/src/main/java/com/jero/meeting/vo/PayMeetingVO.java +++ b/jero-boot-incoming-payment/src/main/java/com/jero/meeting/vo/PayMeetingVO.java @@ -290,7 +290,7 @@ public class PayMeetingVO implements Serializable { /**备注*/ @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") - @Size(max = 200, message = "备注最大为200字符") + @Size(max = 1000, message = "备注最大为1000字符") private String remark; /**会议通知文件*/