| | |
| | |
|
| | | import javax.validation.constraints.NotBlank;
|
| | | import javax.validation.constraints.Size;
|
| | | import org.apache.commons.lang3.builder.ToStringBuilder;
|
| | | import org.apache.commons.lang3.builder.ToStringStyle;
|
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel.ColumnType;
|
| | | import com.ruoyi.framework.web.domain.BaseEntity;
|
| | |
|
| | | /**
|
| | |
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | /** 岗位序号 */
|
| | | @Excel(name = "岗位序号", cellType = ColumnType.NUMERIC)
|
| | | private Long postId;
|
| | |
|
| | | /** 岗位编码 */
|
| | | @Excel(name = "岗位编码")
|
| | | private String postCode;
|
| | |
|
| | | /** 岗位名称 */
|
| | | @Excel(name = "岗位名称")
|
| | | private String postName;
|
| | |
|
| | | /** 岗位排序 */
|
| | | @Excel(name = "岗位排序")
|
| | | private String postSort;
|
| | |
|
| | | /** 状态(0正常 1停用) */
|
| | | @Excel(name = "状态", readConverterExp = "0=正常,1=停用")
|
| | | private String status;
|
| | |
|
| | | /** 用户是否存在此岗位标识 默认不存在 */
|
| | |
| | | {
|
| | | this.flag = flag;
|
| | | }
|
| | | |
| | | @Override
|
| | | public String toString() {
|
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
| | | .append("postId", getPostId())
|
| | | .append("postCode", getPostCode())
|
| | | .append("postName", getPostName())
|
| | | .append("postSort", getPostSort())
|
| | | .append("status", getStatus())
|
| | | .append("createBy", getCreateBy())
|
| | | .append("createTime", getCreateTime())
|
| | | .append("updateBy", getUpdateBy())
|
| | | .append("updateTime", getUpdateTime())
|
| | | .append("remark", getRemark())
|
| | | .toString();
|
| | | }
|
| | | }
|