1. AttachmentSDK 增加了新的数据模型

2. Seata starter 调整了 seata包版本, 修改了统一配置文件
This commit is contained in:
ajaxfan
2021-02-08 11:58:53 +08:00
parent a9469363f4
commit 8b88f7314e
39 changed files with 540 additions and 191 deletions

View File

@ -0,0 +1,152 @@
package com.chinaunicom.mall.ebtp.cloud.security.starter.entity;
import java.util.Date;
import java.util.List;
import lombok.Data;
import lombok.experimental.Accessors;
/**
* 缓存用户实体映射类
*
* @author daixc
* @date 2020/10/16
* @version 1.0
*/
@Data
@Accessors(chain = true)
public class SecurityUser {
/**
* PKID
*/
private String userId;
/**
* 姓名
*/
private String lastName;
/**
* 姓氏
*/
private String firstName;
/**
* 全名
*/
private String fullName;
/**
* 电子邮件
*/
private String emailAddress;
//
/**
* 用户名
*/
private String loginName;
//
/**
* 手机号
*/
private String mobilePhone;
/**
* 办公号
*/
private String officePhone;
/**
* 性别
*/
private String sex;
/**
* 员工类别
*/
private String employeeCategory;
/**
* 用户类型
*/
private String userType;
/**
* 出生日期
*/
private Date dateOfBirth;
/**
* 年龄
*/
private Integer age;
/**
* 员工编号
*/
private String employeeNumber;
/**
* 国籍ID
*/
private String nationalityId;
/**
* 国籍
*/
private String nationality;
/**
* 身份证号码
*/
private String nationalIdentifier;
/**
* 主管ID
*/
private Integer supervisorId;
/**
* 组织ID
*/
private String organizationId;
/**
* 组织名称
*/
private String organizationName;
//
/**
* 组织机构类别
*/
private String orgCategory;
/**
* 部门ID
*/
private String deptId;
/**
* 部门名称
*/
private String deptName;
/**
* 角色ID
*/
private String roleIds;
/**
* 业务组id
*/
private Integer bussiGroupId;
/**
* 职位ID
*/
private Integer positionId;
/**
* 用户角色列表
*/
private List<AuthorityEntity> authorityList;
}