| | |
| | | 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; |
| | |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @TableName("sys_post") |
| | | @TableName("SYS_POST") |
| | | public class SysPost extends TenantEntity { |
| | | |
| | | /** |
| | | * 岗位序号 |
| | | */ |
| | | @TableId(value = "post_id") |
| | | @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; |
| | | |
| | | } |