Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-auth
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-platform-auth
Commits
915d471a
Commit
915d471a
authored
Oct 26, 2020
by
陶光胜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加营销是否触达字段
parent
74794a36
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
1 deletions
+30
-1
UserDTO.java
...form-auth-api/src/main/java/com/gic/auth/dto/UserDTO.java
+13
-0
TabSysUser.java
...service/src/main/java/com/gic/auth/entity/TabSysUser.java
+15
-0
TabSysUserMapper.xml
...th-service/src/main/resources/mapper/TabSysUserMapper.xml
+2
-1
No files found.
gic-platform-auth-api/src/main/java/com/gic/auth/dto/UserDTO.java
View file @
915d471a
...
@@ -140,6 +140,11 @@ public class UserDTO implements Serializable{
...
@@ -140,6 +140,11 @@ public class UserDTO implements Serializable{
*/
*/
private
String
accountGroupIds
;
private
String
accountGroupIds
;
/***
* 营销是否触达 1是0否
*/
private
Integer
markingFlag
;
public
Integer
getUserId
()
{
public
Integer
getUserId
()
{
return
userId
;
return
userId
;
}
}
...
@@ -321,6 +326,14 @@ public class UserDTO implements Serializable{
...
@@ -321,6 +326,14 @@ public class UserDTO implements Serializable{
return
this
;
return
this
;
}
}
public
Integer
getMarkingFlag
()
{
return
markingFlag
;
}
public
void
setMarkingFlag
(
Integer
markingFlag
)
{
this
.
markingFlag
=
markingFlag
;
}
@Override
@Override
public
String
toString
()
{
public
String
toString
()
{
return
"UserDTO{"
+
return
"UserDTO{"
+
...
...
gic-platform-auth-service/src/main/java/com/gic/auth/entity/TabSysUser.java
View file @
915d471a
...
@@ -93,6 +93,11 @@ public class TabSysUser {
...
@@ -93,6 +93,11 @@ public class TabSysUser {
*/
*/
private
Integer
userPosition
;
private
Integer
userPosition
;
/***
* 营销是否触达 1是0否
*/
private
Integer
markingFlag
;
public
Integer
getUserId
()
{
public
Integer
getUserId
()
{
return
userId
;
return
userId
;
}
}
...
@@ -224,4 +229,13 @@ public class TabSysUser {
...
@@ -224,4 +229,13 @@ public class TabSysUser {
this
.
userPosition
=
userPosition
;
this
.
userPosition
=
userPosition
;
return
this
;
return
this
;
}
}
public
Integer
getMarkingFlag
()
{
return
markingFlag
;
}
public
TabSysUser
setMarkingFlag
(
Integer
markingFlag
)
{
this
.
markingFlag
=
markingFlag
;
return
this
;
}
}
}
\ No newline at end of file
gic-platform-auth-service/src/main/resources/mapper/TabSysUserMapper.xml
View file @
915d471a
...
@@ -18,10 +18,11 @@
...
@@ -18,10 +18,11 @@
<result
column=
"account_type"
jdbcType=
"INTEGER"
property=
"accountType"
/>
<result
column=
"account_type"
jdbcType=
"INTEGER"
property=
"accountType"
/>
<result
column=
"account_due_date"
jdbcType=
"TIMESTAMP"
property=
"accountDueDate"
/>
<result
column=
"account_due_date"
jdbcType=
"TIMESTAMP"
property=
"accountDueDate"
/>
<result
column=
"user_position"
jdbcType=
"INTEGER"
property=
"userPosition"
/>
<result
column=
"user_position"
jdbcType=
"INTEGER"
property=
"userPosition"
/>
<result
column=
"marking_flag"
jdbcType=
"INTEGER"
property=
"markingFlag"
/>
</resultMap>
</resultMap>
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
user_id, user_name, phone_number, password, super_admin, delete_flag, create_time, update_time,
user_id, user_name, phone_number, password, super_admin, delete_flag, create_time, update_time,
enterprise_id, phone_area_code, user_group_ids, login_type, password_type, account_type, account_due_date, user_position
enterprise_id, phone_area_code, user_group_ids, login_type, password_type, account_type, account_due_date, user_position
, marking_flag
</sql>
</sql>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Integer"
resultMap=
"BaseResultMap"
>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Integer"
resultMap=
"BaseResultMap"
>
select
select
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment