| | |
| | | @FieldInfo(name = "reportStatus", type = "bit", explain = "是否已报告1-未报告 2-已报告") |
| | | @TableField("reportStatus") |
| | | @ExcelField(value = "是否已报告", writeConverterExp = "1=未报告,2=已报告") |
| | | private Integer reportStatus = 1; |
| | | private Integer reportStatus = 0; |
| | | |
| | | @FieldInfo(name = "applayStatus", type = "bit", explain = "申请状态 1-未申请 2-已申请") |
| | | @TableField("applayStatus") |
| | | @ExcelField(value = "状态", writeConverterExp = "1=未申请,2=已申请") |
| | | private Integer applayStatus = 1; |
| | | private Integer applayStatus = 0; |
| | | |
| | | @FieldInfo(name = "auditor", type = "varchar", explain = "审核人") |
| | | @TableField("auditor") |