| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.xjrsoft.module.personnel.vo;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.alibaba.excel.annotation.write.style.ContentStyle;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.LinkedHashMap;
- /**
- * @title: 月工资条分页列表出参
- * @Author brealinxx
- * @Date: 2024-01-25
- * @Version 1.0
- */
- @Data
- public class BasePersonnelLabourCapitalMonthPageVo {
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("主键")
- @ApiModelProperty("主键")
- private String id;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("姓名")
- @ApiModelProperty("姓名")
- private String name;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("部门")
- @ApiModelProperty("部门")
- private String dept;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("总计")
- @ApiModelProperty("总计")
- private String amount;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("待处理json")
- @ApiModelProperty("待处理json")
- private String pendingJson;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("月工资明细")
- @ApiModelProperty("月工资明细")
- private LinkedHashMap<String, Object> dict;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("月份")
- @ApiModelProperty("月份")
- private int month;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("年份")
- @ApiModelProperty("年份")
- private int year;
- @ApiModelProperty("年份")
- private Long labourCapitalId;
- }
|