package com.ruoyi.project.domain;
|
|
import com.ruoyi.common.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* SP_STAT_BONUS
|
*
|
* @author ls
|
* @date 2024-03-11
|
*/
|
@Data
|
@ApiModel("SP_STAT_BONUS")
|
public class SpStatBonus {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 绩效:1、月度、2季度、3年度
|
*/
|
@ApiModelProperty("绩效:1、月度、2季度、3年度")
|
@Excel(name = "绩效:1、月度、2季度、3年度")
|
private Integer performancetype;
|
|
/**
|
* 绩效日期
|
*/
|
@ApiModelProperty("绩效日期")
|
private String bonusmonth;
|
|
/**
|
* 部门id
|
*/
|
@ApiModelProperty("部门id")
|
private Long deptId;
|
|
/**
|
* 部门名称
|
*/
|
@ApiModelProperty("部门名称")
|
private String deptName;
|
|
/**
|
* 收益人编号
|
*/
|
@ApiModelProperty("收益人编号")
|
@Excel(name = "收益人编号")
|
private String beneficiaryno;
|
|
}
|