Commit 359561ad authored by 赵啸非's avatar 赵啸非

删除部分过时类

parent 32153d88
-- ----------------------------
2023-9-11
-- ----------------------------
ALTER TABLE mortals_xhx_user ADD COLUMN `staffId` varchar(64) COMMENT '员工Id,关联用户员工表';
ALTER TABLE mortals_xhx_user ADD COLUMN `serviceAprParams` varchar(1024) default '' COMMENT '事件服务接口请求参数';
File added
......@@ -17,7 +17,7 @@
/>
<b style="color:white;font-size:18px;"
>&nbsp;&nbsp;&nbsp;
{{ sysName ? sysName : "智慧办公系统" }}
{{ sysName ? sysName : "企业服务平台" }}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b
>
</router-link>
......
......@@ -75,7 +75,29 @@ public class UserEntity extends UserVo implements IUser {
* 最后一次登录地址
*/
private String lastLoginAddress;
/**
* 员工Id,关联用户员工表
*/
private Long staffId;
/**
* 微信openId
*/
private String openId;
/**
* 所属部门名称
*/
private String deptName;
/**
* 客户ID
*/
private Long customerId;
/**
* 用户所属部门id
*/
private Long deptId;
public UserEntity(){}
......@@ -340,7 +362,33 @@ public class UserEntity extends UserVo implements IUser {
}
public void setCustomerId(Long customerId) {
this.customerId = customerId;
}
public Long getStaffId() {
return staffId;
}
public void setStaffId(Long staffId) {
this.staffId = staffId;
}
public String getOpenId() {
return openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
public void setDeptName(String deptName) {
this.deptName = deptName;
}
@Override
public int hashCode() {
......
......@@ -33,7 +33,7 @@
<result property="createTime" column="createTime" />
<result property="updateUserId" column="updateUserId" />
<result property="updateTime" column="updateTime" />
</resultMap>
......
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