100 lines
2.2 KiB
Java
Raw Normal View History

2020-07-20 10:41:32 +08:00
package com.ruoyi.system.domain;
2020-02-13 10:48:51 +08:00
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
2020-07-20 10:41:32 +08:00
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.annotation.Excel.ColumnType;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;
import java.util.Date;
2020-02-13 10:48:51 +08:00
/**
* 岗位表 sys_post
*
2020-02-13 10:48:51 +08:00
* @author ruoyi
*/
@Data
@NoArgsConstructor
@Accessors(chain = true)
@TableName("sys_post")
public class SysPost {
2020-02-13 10:48:51 +08:00
private static final long serialVersionUID = 1L;
/**
* 岗位序号
*/
2020-02-13 10:48:51 +08:00
@Excel(name = "岗位序号", cellType = ColumnType.NUMERIC)
@TableId(value = "post_id", type = IdType.AUTO)
2020-02-13 10:48:51 +08:00
private Long postId;
/**
* 岗位编码
*/
2020-02-13 10:48:51 +08:00
@Excel(name = "岗位编码")
@NotBlank(message = "岗位编码不能为空")
@Size(min = 0, max = 64, message = "岗位编码长度不能超过64个字符")
2020-02-13 10:48:51 +08:00
private String postCode;
/**
* 岗位名称
*/
2020-02-13 10:48:51 +08:00
@Excel(name = "岗位名称")
@NotBlank(message = "岗位名称不能为空")
@Size(min = 0, max = 50, message = "岗位名称长度不能超过50个字符")
2020-02-13 10:48:51 +08:00
private String postName;
/**
* 岗位排序
*/
2020-02-13 10:48:51 +08:00
@Excel(name = "岗位排序")
@NotBlank(message = "显示顺序不能为空")
2020-02-13 10:48:51 +08:00
private String postSort;
/**
* 状态0正常 1停用
*/
2020-02-13 10:48:51 +08:00
@Excel(name = "状态", readConverterExp = "0=正常,1=停用")
private String status;
/**
* 创建者
*/
private String createBy;
/**
* 创建时间
*/
@TableField(fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
* 更新者
*/
private String updateBy;
/**
* 更新时间
*/
@TableField(fill = FieldFill.INSERT_UPDATE)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
/**
* 备注
*/
private String remark;
/**
* 用户是否存在此岗位标识 默认不存在
*/
@TableField(exist = false)
2020-02-13 10:48:51 +08:00
private boolean flag = false;
}