1.添加vis_user_id字段
Showing
2 changed files
with
6 additions
and
0 deletions
| ... | @@ -31,6 +31,10 @@ public class UserTv implements Serializable { | ... | @@ -31,6 +31,10 @@ public class UserTv implements Serializable { |
| 31 | @Transient | 31 | @Transient |
| 32 | private String memberCode; | 32 | private String memberCode; |
| 33 | 33 | ||
| 34 | // vis_user表主键 | ||
| 35 | @Column(name = "vis_user_id") | ||
| 36 | private Long visUserId; | ||
| 37 | |||
| 34 | // ID | 38 | // ID |
| 35 | @Id | 39 | @Id |
| 36 | @GeneratedValue(strategy = GenerationType.IDENTITY) | 40 | @GeneratedValue(strategy = GenerationType.IDENTITY) | ... | ... |
| ... | @@ -14,6 +14,8 @@ import java.time.LocalDateTime; | ... | @@ -14,6 +14,8 @@ import java.time.LocalDateTime; |
| 14 | @Data | 14 | @Data |
| 15 | public class UserTvDTO implements Serializable { | 15 | public class UserTvDTO implements Serializable { |
| 16 | 16 | ||
| 17 | private Long visUserId; | ||
| 18 | |||
| 17 | // ID | 19 | // ID |
| 18 | private Long id; | 20 | private Long id; |
| 19 | 21 | ... | ... |
-
Please register or sign in to post a comment