package org.ruoyi.system.domain; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.EqualsAndHashCode; import org.ruoyi.common.tenant.core.TenantEntity; /** * 岗位表 sys_post * * @author Lion Li */ @Data @EqualsAndHashCode(callSuper = true) @TableName("SYS_POST") public class SysPost extends TenantEntity { /** * 岗位序号 */ @TableId(value = "POST_ID") private Long postId; /** * 岗位编码 */ @TableField("POST_CODE") private String postCode; /** * 岗位名称 */ @TableField("POST_NAME") private String postName; /** * 岗位排序 */ @TableField("POST_SORT") private Integer postSort; /** * 状态(0正常 1停用) */ @TableField("STATUS") private String status; /** * 备注 */ @TableField("REMARK") private String remark; }