1
dd
2025-11-06 1e0848427a1f5c771b61a2939af3ff78b9b1d37b
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;
 
}