1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| 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;
| //排序
| private Integer sort;
| }
|
|