通讯录查询修改

master
Xusan 2024-05-16 10:08:58 +08:00
parent 20048bdffe
commit 4cbd6fce04
1 changed files with 3 additions and 4 deletions

View File

@ -23,7 +23,7 @@ import java.util.Date;
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@Accessors(chain = true) @Accessors(chain = true)
@ApiModel(description = "常用联系人") @ApiModel(description = "置顶")
@TableName("FXKH_TXL.FC") @TableName("FXKH_TXL.FC")
public class Fc extends Model<Fc> implements Serializable { public class Fc extends Model<Fc> implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@ -34,14 +34,13 @@ public class Fc extends Model<Fc> implements Serializable {
private Integer id; private Integer id;
@NotNull(message = "用户编号不能为空", groups = {Insert.class,Update.class})
@TableField("USER_ID") @TableField("USER_ID")
@ApiModelProperty(value = "用户编号") @ApiModelProperty(value = "用户编号")
private Integer userId; private Integer userId;
@NotNull(message = "通讯录编号不能为空", groups = {Insert.class,Update.class}) @NotNull(message = "关联编号不能为空", groups = {Insert.class,Update.class})
@TableField("AB_ID") @TableField("AB_ID")
@ApiModelProperty(value = "通讯录编号") @ApiModelProperty(value = "关联编号")
private Integer abId; private Integer abId;
@TableField("SORT") @TableField("SORT")