From b40ac12d6231f261581fb4281c905819530e934d Mon Sep 17 00:00:00 2001 From: whyclxw <http://whyclxw@118.89.139.230:10101/r/~whyclxw/IdeaTest.git> Date: 星期四, 15 四月 2021 15:40:03 +0800 Subject: [PATCH] 提交 --- src/main/java/com/example/lxw/pojo/User_inf.java | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/example/lxw/pojo/User_inf.java b/src/main/java/com/example/lxw/pojo/User_inf.java index ce399d3..32a650d 100644 --- a/src/main/java/com/example/lxw/pojo/User_inf.java +++ b/src/main/java/com/example/lxw/pojo/User_inf.java @@ -1,10 +1,14 @@ package com.example.lxw.pojo; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import lombok.ToString; + +import java.io.Serializable; /** * @author lxw @@ -15,7 +19,8 @@ @AllArgsConstructor @NoArgsConstructor @TableName(schema = "db_user",value = "tb_user_inf") -public class User_inf { +public class User_inf implements Serializable { + @TableId(value = "uId") private long uId; private String uSnId; private String uName; @@ -39,7 +44,14 @@ private String upassword; private String uPubKeyX; private String uPubKeyY; + @TableField(value = "uKey_ID") private String uKeyId; + @TableField(value = "face_id") private long faceId; private String license; + @TableField(exist = false) + private String note; + @TableField(exist = false) + private UserBattgroupBaojigroupUsr baojigroupUsr; + } -- Gitblit v1.9.1