| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import com.ruoyi.common.xss.Xss; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | |
| | | * @author ruoyi |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "用户新增编辑DTO") |
| | | public class SysUser extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | */ |
| | | @ApiModelProperty(value = "区县id") |
| | | private Integer districtId; |
| | | |
| | | /** 角色类型 1=超管 2=审批人 3=工艺工程师 4=化验师 5=实验员 */ |
| | | @ApiModelProperty(value = "角色类型 1=超管 2=审批人 3=工艺工程师 4=化验师 5=实验员") |
| | | private Integer roleType; |
| | | @TableField(exist = false) |
| | | private String roleName; |
| | | @TableField(exist = false) |
| | |
| | | @TableField("business_dept_id") |
| | | private String businessDeptId; |
| | | |
| | | public Integer getRoleType() { |
| | | return roleType; |
| | | } |
| | | |
| | | public void setRoleType(Integer roleType) { |
| | | this.roleType = roleType; |
| | | } |
| | | |
| | | public String getRoleName() { |
| | | return roleName; |
| | | } |