| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- package com.xjrsoft.module.student.vo;
- import com.alibaba.excel.annotation.ExcelIgnore;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.alibaba.excel.annotation.write.style.ContentStyle;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.math.BigDecimal;
- /**
- * @title: 分页列表出参
- * @Author dzx
- * @Date: 2024-03-13
- * @Version 1.0
- */
- @Data
- public class PbVXsxxsfytbExcelVo {
- /**
- * 学号
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("学号")
- @ApiModelProperty("学号")
- private String Studentcode;
- /**
- * 姓名
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("姓名")
- @ApiModelProperty("姓名")
- private String feeobjname;
- /**
- * 所属班级名称
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("所属班级名称")
- @ApiModelProperty("所属班级名称")
- private String classname;
- /**
- * 电话
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("电话")
- @ApiModelProperty("电话")
- private String telephone;
- /**
- * 性别
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("性别")
- @ApiModelProperty("性别")
- private String sex;
- /**
- * 收费标准金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("收费标准金额")
- @ApiModelProperty("收费标准金额")
- private BigDecimal standardar;
- /**
- * 应缴金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("应缴金额")
- @ApiModelProperty("应缴金额 ")
- private BigDecimal factar;
- /**
- * 调整(减免)金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("调整(减免)金额")
- @ApiModelProperty("调整(减免)金额")
- private BigDecimal adjustmny;
- /**
- * 减免金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("减免金额")
- @ApiModelProperty("减免金额")
- private BigDecimal jmje;
- /**
- * 欠费金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("欠费金额")
- @ApiModelProperty("欠费金额")
- private BigDecimal arrearagemny;
- /**
- * 实缴金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("实缴金额")
- @ApiModelProperty("实缴金额")
- private BigDecimal factrecarmny;
- /**
- * 退款金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("退款金额")
- @ApiModelProperty("退款金额")
- private BigDecimal refundmny;
- /**
- * 欠费金额
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("欠费金额")
- @ApiModelProperty("欠费金额")
- private BigDecimal qfje;
- /**
- * 缴费状态
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("缴费状态")
- @ApiModelProperty("缴费状态")
- private String jfzt;
- /**
- * 收费项目名称
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("收费项目名称")
- @ApiModelProperty("收费项目名称")
- private String feeitemname;
- /**
- * 收费区间名称
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("收费区间名称")
- @ApiModelProperty("收费区间名称")
- private String beltname;
- /**
- * 学期Id
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("学期Id")
- @ExcelIgnore
- @ApiModelProperty("学期Id")
- private String baseSemester;
- /**
- * 学期
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("学期")
- @ApiModelProperty("学期")
- private String baseSemesterCn;
- /**
- * 学生Id
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("学生Id")
- @ExcelIgnore
- @ApiModelProperty("学生Id")
- private String userId;
- /**
- * 主键
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("主键")
- @ExcelIgnore
- @ApiModelProperty("主键")
- private String pksfxxytb;
- }
|