Commit 707e50b7 by 邓实川 Committed by chenzg

邮箱字段更正,地区字段补充

parent 3ec8cf4f
...@@ -58,9 +58,12 @@ public class QyzxEntInfoM extends Model<QyzxEntInfoM> { ...@@ -58,9 +58,12 @@ public class QyzxEntInfoM extends Model<QyzxEntInfoM> {
@ApiModelProperty(value = "电话号码 ", example = "18712345678") @ApiModelProperty(value = "电话号码 ", example = "18712345678")
private String phone; private String phone;
@ApiModelProperty(value = "所在地区", example = "广东省广州市白云区") @ApiModelProperty(value = "所在地区id", example = "广东省广州市白云区")
private String area; private String area;
@ApiModelProperty(value = "所在地区中文", example = "广东省广州市白云区")
private String areaName;
@ApiModelProperty(value = "办公地址 ", example = "广从一路5号柏曼酒店3楼") @ApiModelProperty(value = "办公地址 ", example = "广从一路5号柏曼酒店3楼")
private String workAddress; private String workAddress;
......
...@@ -121,8 +121,8 @@ public class YgglMainEmp extends Model<YgglMainEmp> { ...@@ -121,8 +121,8 @@ public class YgglMainEmp extends Model<YgglMainEmp> {
@ApiModelProperty(value="微信 ",example="微信") @ApiModelProperty(value="微信 ",example="微信")
private String wechat; private String wechat;
@ApiModelProperty(value="个人邮箱 ",example="个人邮箱") // @ApiModelProperty(value="个人邮箱 ",example="个人邮箱")
private String email; // private String email;
@ApiModelProperty(value="血型 ",example="血型") @ApiModelProperty(value="血型 ",example="血型")
private String bloodType; private String bloodType;
......
...@@ -495,6 +495,7 @@ public class LoginController { ...@@ -495,6 +495,7 @@ public class LoginController {
String username = entRegisterDto.getUsername(); String username = entRegisterDto.getUsername();
String name = entRegisterDto.getName(); String name = entRegisterDto.getName();
String pw = entRegisterDto.getPw(); String pw = entRegisterDto.getPw();
String email = entRegisterDto.getEmail();
if ((phone == null || StrUtil.hasBlank(phone)) || (username == null || StrUtil.hasBlank(username)) if ((phone == null || StrUtil.hasBlank(phone)) || (username == null || StrUtil.hasBlank(username))
|| (name == null || StrUtil.hasBlank(name)) || (pw == null || StrUtil.hasBlank(pw))) { || (name == null || StrUtil.hasBlank(name)) || (pw == null || StrUtil.hasBlank(pw))) {
...@@ -525,9 +526,8 @@ public class LoginController { ...@@ -525,9 +526,8 @@ public class LoginController {
} }
if (login == null) { if (login == null) {
System.err.println("kanxia");
// 员工信息 // 员工信息
QyzxEmpLogin qyzxEmpLogin = QyzxEmpLogin.builder().phone(phone).pw(Md5.md5(pw)) QyzxEmpLogin qyzxEmpLogin = QyzxEmpLogin.builder().phone(phone).pw(Md5.md5(pw)).email(email)
.sts(CommonEnum.U_STS_ON.getType()).orgId(qyId).regTime(DateUtil.date()).build(); .sts(CommonEnum.U_STS_ON.getType()).orgId(qyId).regTime(DateUtil.date()).build();
boolean b2 = qyzxEmpLogin.insert(); boolean b2 = qyzxEmpLogin.insert();
if (!b2) { if (!b2) {
...@@ -536,9 +536,9 @@ public class LoginController { ...@@ -536,9 +536,9 @@ public class LoginController {
} }
login = qyzxEmpLogin; login = qyzxEmpLogin;
} }
// 1-是主账号管理员 // 员工信息
boolean b4 = YgglMainEmp.builder().orgCode(qyId).empNum(login.getId()).rzTime(new Date()).isManager(1) boolean b4 = YgglMainEmp.builder().orgCode(qyId).empNum(login.getId()).rzTime(new Date())
.name(username).phone(phone).jobType(YgJobType.QUANZHI.getType()) .name(username).phone(phone).workEmail(email).jobType(YgJobType.QUANZHI.getType())
.jobStatus(YgEnumInterface.jobStatus.ZHENSHI.getType()).build().insert(); .jobStatus(YgEnumInterface.jobStatus.ZHENSHI.getType()).build().insert();
if (!b4) { if (!b4) {
TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();
......
...@@ -37,6 +37,9 @@ public class EntRegisterDto implements Serializable { ...@@ -37,6 +37,9 @@ public class EntRegisterDto implements Serializable {
@ApiModelProperty(value = "验证码 ", example = "666666") @ApiModelProperty(value = "验证码 ", example = "666666")
private String code; private String code;
@ApiModelProperty(value = "邮箱", example = "youxiang@qq.com")
private String email;
@ApiModelProperty(value = "1.验证码 2.消息推送 3通知提醒 ", example = "1") @ApiModelProperty(value = "1.验证码 2.消息推送 3通知提醒 ", example = "1")
private Integer messageType; private Integer messageType;
......
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