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;
|
|
}
|