1
zj
2025-09-21 db4f7bbb81d14ba590206b9ba2ebcea76f7de9bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.domain.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class InsurancePositionDto {
 
    private Integer id;
    //职位
    private String position;
    //人数
    private Integer numberPeople;
    //级别
    private String rank;
    //工资
    private BigDecimal salary;
}