2022-04-22 15:26:39 +08:00
|
|
|
|
package net.maku.system.entity;
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
2023-01-20 13:47:45 +08:00
|
|
|
|
import net.maku.framework.mybatis.entity.BaseEntity;
|
2022-04-22 15:26:39 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 岗位管理
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author 阿沐 babamu@126.com
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@EqualsAndHashCode(callSuper=false)
|
|
|
|
|
|
@TableName("sys_post")
|
|
|
|
|
|
public class SysPostEntity extends BaseEntity {
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 岗位编码
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String postCode;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 岗位名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String postName;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 排序
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer sort;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 状态 0:停用 1:正常
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer status;
|
|
|
|
|
|
|
|
|
|
|
|
}
|