package cn.iocoder.yudao.module.hrm.controller.admin.salary.vo;
|
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
import cn.idev.excel.annotation.ExcelProperty;
|
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat;
|
import cn.iocoder.yudao.framework.excel.core.convert.DictConvert;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - 薪资发放 Response VO")
|
@Data
|
@ExcelIgnoreUnannotated
|
public class HrmSalaryPaymentRespVO {
|
|
@Schema(description = "发放ID")
|
@ExcelProperty("发放ID")
|
private Long id;
|
|
@Schema(description = "发放单号")
|
@ExcelProperty("发放单号")
|
private String no;
|
|
@Schema(description = "发放周期")
|
@ExcelProperty("发放周期")
|
private String period;
|
|
@Schema(description = "发放总金额")
|
@ExcelProperty("发放总金额")
|
private BigDecimal totalAmount;
|
|
@Schema(description = "发放人数")
|
@ExcelProperty("发放人数")
|
private Integer totalCount;
|
|
@Schema(description = "发放方式")
|
@ExcelProperty(value = "发放方式", converter = DictConvert.class)
|
@DictFormat("hrm_payment_method")
|
private Integer paymentMethod;
|
|
@Schema(description = "发放时间")
|
@ExcelProperty("发放时间")
|
private LocalDateTime paymentTime;
|
|
@Schema(description = "状态")
|
@ExcelProperty(value = "状态", converter = DictConvert.class)
|
@DictFormat("hrm_payment_status")
|
private Integer status;
|
|
@Schema(description = "银行回单附件")
|
private String fileUrl;
|
|
@Schema(description = "备注")
|
@ExcelProperty("备注")
|
private String remark;
|
|
@Schema(description = "创建时间")
|
@ExcelProperty("创建时间")
|
private LocalDateTime createTime;
|
|
}
|