commit
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
package com.budwk.app.zhgh.dayofficework.outlay.outlayManage.union.vo;
|
||||
|
||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 分工会季度额度导入行数据。
|
||||
*/
|
||||
@Data
|
||||
public class OutlayUnionAllocateImportVo {
|
||||
|
||||
@Excel(name = "工会编码")
|
||||
private String unionCode;
|
||||
|
||||
@Excel(name = "分配额度")
|
||||
private BigDecimal allocateMoney;
|
||||
|
||||
/**
|
||||
* 预览时展示匹配到的工会名称。
|
||||
*/
|
||||
private String unionName;
|
||||
|
||||
/**
|
||||
* 预览时展示当前行错误信息。
|
||||
*/
|
||||
private String errMsg;
|
||||
|
||||
/**
|
||||
* Excel 行号,便于用户定位问题数据。
|
||||
*/
|
||||
private Integer rowNum;
|
||||
}
|
||||
Reference in New Issue
Block a user