Commit 915d471a by 陶光胜

增加营销是否触达字段

parent 74794a36
......@@ -140,6 +140,11 @@ public class UserDTO implements Serializable{
*/
private String accountGroupIds;
/***
* 营销是否触达 1是0否
*/
private Integer markingFlag;
public Integer getUserId() {
return userId;
}
......@@ -321,6 +326,14 @@ public class UserDTO implements Serializable{
return this;
}
public Integer getMarkingFlag() {
return markingFlag;
}
public void setMarkingFlag(Integer markingFlag) {
this.markingFlag = markingFlag;
}
@Override
public String toString() {
return "UserDTO{" +
......
......@@ -93,6 +93,11 @@ public class TabSysUser {
*/
private Integer userPosition;
/***
* 营销是否触达 1是0否
*/
private Integer markingFlag;
public Integer getUserId() {
return userId;
}
......@@ -224,4 +229,13 @@ public class TabSysUser {
this.userPosition = userPosition;
return this;
}
public Integer getMarkingFlag() {
return markingFlag;
}
public TabSysUser setMarkingFlag(Integer markingFlag) {
this.markingFlag = markingFlag;
return this;
}
}
\ No newline at end of file
......@@ -18,10 +18,11 @@
<result column="account_type" jdbcType="INTEGER" property="accountType" />
<result column="account_due_date" jdbcType="TIMESTAMP" property="accountDueDate" />
<result column="user_position" jdbcType="INTEGER" property="userPosition" />
<result column="marking_flag" jdbcType="INTEGER" property="markingFlag" />
</resultMap>
<sql id="Base_Column_List">
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>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment