package org.jeecg.modules.bonus.entity;
|
|
import lombok.Data;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import org.jeecg.common.system.base.entity.JeecgEntity;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.io.Serializable;
|
|
@Data
|
public class BonusAllocation extends JeecgEntity implements Serializable {
|
private static final long serialVersionUID = -45183221283732519L;
|
|
|
/**
|
* 父表id(bonus_payment_item)
|
*/
|
private String pid;
|
/**
|
* bonus_payment
|
*/
|
private String ppid;
|
/**
|
* 发放进度
|
*/
|
private Integer ffjd;
|
/**
|
* 分配成员
|
*/
|
@Excel(name = "项目负责人", width = 15,dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
private String fpcy;
|
/**
|
* 分配金额
|
*/
|
private BigDecimal fpje;
|
/**
|
* 分配比例
|
*/
|
private Double fpbl;
|
/**
|
* 项目id
|
*/
|
private String pro;
|
|
|
}
|