1
zj
2025-10-10 080dd1f1de81758b946c01e6db71938c008e9427
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
package com.ruoyi.system.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 保险职位
 */
@Data
public class InsurancePosition {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
    //职位
    private String position;
    //人数
    private Integer numberPeople;
    //级别
    private String rank;
    //工资
    private BigDecimal salary;
    //排序
    private Integer sort;
    //创建时间
    private Date createdAt;
    //更新时间
    private Date updatedAt;
 
}