Commit a108b69c by zhangxingmin

增加字段 - 注册来源

parent 76601736
...@@ -132,6 +132,8 @@ public class ApiClientUserServiceImpl implements ApiClientUserService { ...@@ -132,6 +132,8 @@ public class ApiClientUserServiceImpl implements ApiClientUserService {
clientUser.setProjectBizId(projectBizId); clientUser.setProjectBizId(projectBizId);
//用户唯一标识(sys_user系统用户表) //用户唯一标识(sys_user系统用户表)
clientUser.setUserBizId(dto.getUserBizId()); clientUser.setUserBizId(dto.getUserBizId());
//注册来源 - PC
clientUser.setRegisterSource(CommonEnum.SOURCE_TYPE_PC.getCode());
return clientUser; return clientUser;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
} }
......
...@@ -91,6 +91,12 @@ public class ClientUser implements Serializable { ...@@ -91,6 +91,12 @@ public class ClientUser implements Serializable {
private String approvalStatus; private String approvalStatus;
/** /**
* 注册来源(PC、小程序等)默认小程序 - MINI_PROGRAM
*/
@TableField("register_source")
private String registerSource;
/**
* 所属租户唯一业务ID(冗余) * 所属租户唯一业务ID(冗余)
*/ */
@TableField("tenant_biz_id") @TableField("tenant_biz_id")
......
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