| 12345678910111213141516171819202122232425262728 |
- package platform.modules.government.dto;
- import lombok.Data;
- import platform.common.annotation.ExcelField;
- @Data
- public class CheckTrackingNum {
- private Integer userId;
- private Integer applyId;
- private Integer handleNum; //处理单据数量
- @ExcelField(title="审核人", align=2, sort=5)
- private String checkName; //审核人
- @ExcelField(title="政务服务", align=2, sort=5)
- private String affairsType; //政务类型name
- @ExcelField(title="申请单号", align=2, sort=15)
- private String applyNo; //申请单号
- @ExcelField(title="申请企业", align=2, sort=20)
- private String company; //公司
- @ExcelField(title="单据状态", align=2, sort=25)
- private String applyStatus; //申请状态
- @ExcelField(title="审核时间", align=2, sort=30)
- private String approveTime; //审核时间
- private String approvalStatus; //审核状态
- private Integer businessType; //政务类型
- }
|