From 4cbd6fce040d85747faa3b7a3be05f24f274d9e1 Mon Sep 17 00:00:00 2001 From: Xusan <1105644308@QQ.COM> Date: Thu, 16 May 2024 10:08:58 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E8=AE=AF=E5=BD=95=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/whdc/model/entity/Fc.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/whdc/model/entity/Fc.java b/src/main/java/com/whdc/model/entity/Fc.java index 5716438..d9e820b 100644 --- a/src/main/java/com/whdc/model/entity/Fc.java +++ b/src/main/java/com/whdc/model/entity/Fc.java @@ -23,7 +23,7 @@ import java.util.Date; @Data @EqualsAndHashCode(callSuper = true) @Accessors(chain = true) -@ApiModel(description = "常用联系人") +@ApiModel(description = "置顶") @TableName("FXKH_TXL.FC") public class Fc extends Model implements Serializable { private static final long serialVersionUID = 1L; @@ -34,14 +34,13 @@ public class Fc extends Model implements Serializable { private Integer id; - @NotNull(message = "用户编号不能为空", groups = {Insert.class,Update.class}) @TableField("USER_ID") @ApiModelProperty(value = "用户编号") private Integer userId; - @NotNull(message = "通讯录编号不能为空", groups = {Insert.class,Update.class}) + @NotNull(message = "关联编号不能为空", groups = {Insert.class,Update.class}) @TableField("AB_ID") - @ApiModelProperty(value = "通讯录编号") + @ApiModelProperty(value = "关联编号") private Integer abId; @TableField("SORT")