package com.gkhy.exam.pay.dto.rep;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.gkhy.exam.pay.entity.CoalCategory;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
@ApiModel(value = "煤矿缴费管理对象详情", description = "煤矿缴费管理对象详情")
|
@Data
|
public class CoalPayRepDto implements Serializable {
|
private Long id;
|
|
/**
|
* 批次名称
|
*/
|
private String batchName;
|
|
/**
|
* 考试点
|
*/
|
private Long deptId;
|
private String deptName;
|
|
/**
|
* 缴费类型1初训理论2初训实操3初训理论与实操4复训理论
|
*/
|
private Long payType;
|
|
/**
|
* 金额
|
*/
|
private BigDecimal amount;
|
|
/**
|
* 年份
|
*/
|
private String year;
|
|
/**
|
* 季度1一季度2二季度3三季度4四季度
|
*/
|
private Long quarter;
|
|
/**
|
* 交款人类型1个人2团体
|
*/
|
private Integer payPersonType;
|
|
/**
|
* 缴款单位名称
|
*/
|
private String payCompanyName;
|
|
/**
|
* 缴款单位证件号
|
*/
|
private String payCompanyCard;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
/**
|
* 总学员数量
|
*/
|
private Integer totalNum;
|
/**
|
* 未交费数量
|
*/
|
private Integer havePayNum;
|
|
private List<CoalCategory> coalCategoryList;
|
|
|
|
}
|