办学质量监测教学评价系统
ageerle
2025-04-09 3be9005f95ebc14639a7e281703dfa9d9b4a7afc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package org.ruoyi.system.domain;
 
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;
 
    /**
     * 岗位编码
     */
    private String postCode;
 
    /**
     * 岗位名称
     */
    private String postName;
 
    /**
     * 岗位排序
     */
    private Integer postSort;
 
    /**
     * 状态(0正常 1停用)
     */
    private String status;
 
    /**
     * 备注
     */
    private String remark;
 
}