|
|
@ -4,6 +4,7 @@ import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
@ -42,6 +43,16 @@ public class SysLogRoleChange extends BaseBean {
|
|
|
|
@ApiModelProperty(value = "用户名", access = "用户名")
|
|
|
|
@ApiModelProperty(value = "用户名", access = "用户名")
|
|
|
|
private String userName;
|
|
|
|
private String userName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/********************************** 导出冗余信息 ********************************/
|
|
|
|
|
|
|
|
@Column(name = "USER_LOGIN_NAME")
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "登录名", access = "登录名")
|
|
|
|
|
|
|
|
private String userLoginName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "DEPARTMENT_NAME_RDD")
|
|
|
|
|
|
|
|
@ApiParam(value = "部门名称", access = "部门名称")
|
|
|
|
|
|
|
|
private String departmentNameRdd;
|
|
|
|
|
|
|
|
/********************************** 完 ********************************/
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "PREVIOUS_ROLES",columnDefinition = "TEXT")
|
|
|
|
@Column(name = "PREVIOUS_ROLES",columnDefinition = "TEXT")
|
|
|
|
@ApiModelProperty(value = "之前的角色", access = "之前的角色")
|
|
|
|
@ApiModelProperty(value = "之前的角色", access = "之前的角色")
|
|
|
|
private String previousRoles;
|
|
|
|
private String previousRoles;
|
|
|
|