Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
向汉
/
uc-consumer
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
0c581e3a
...
0c581e3abd7c722350ade128d8c41968b437c6db
authored
2022-03-23 17:29:28 +0800
by
xianghan
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1.添加vis_user_id字段
1 parent
799a2ce5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
src/main/java/com/topdraw/business/module/user/iptv/domain/UserTv.java
src/main/java/com/topdraw/business/module/user/iptv/service/dto/UserTvDTO.java
src/main/java/com/topdraw/business/module/user/iptv/domain/UserTv.java
View file @
0c581e3
...
...
@@ -31,6 +31,10 @@ public class UserTv implements Serializable {
@Transient
private
String
memberCode
;
// vis_user表主键
@Column
(
name
=
"vis_user_id"
)
private
Long
visUserId
;
// ID
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
IDENTITY
)
...
...
src/main/java/com/topdraw/business/module/user/iptv/service/dto/UserTvDTO.java
View file @
0c581e3
...
...
@@ -14,6 +14,8 @@ import java.time.LocalDateTime;
@Data
public
class
UserTvDTO
implements
Serializable
{
private
Long
visUserId
;
// ID
private
Long
id
;
...
...
Please
register
or
sign in
to post a comment