tuqin
4 天以前 10158625f1096c54664a5f87b3f32d33794e4eee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package cn.iocoder.yudao.module.mdm.controller.admin.unit.vo;
 
import cn.idev.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * MDM 计量单位导出 Excel VO
 *
 * @author 超级管理员
 */
@Data
public class MdmUnitMeasureExcelVO {
 
    @ExcelProperty("单位编码")
    private String code;
 
    @ExcelProperty("单位名称")
    private String name;
 
    @ExcelProperty("是否主单位")
    private Boolean primaryFlag;
 
    @ExcelProperty("主单位编码")
    private String primaryCode;
 
    @ExcelProperty("与主单位换算比例")
    private BigDecimal changeRate;
 
    @ExcelProperty("状态")
    private Integer status;
 
    @ExcelProperty("备注")
    private String remark;
 
    @ExcelProperty("创建时间")
    private LocalDateTime createTime;
 
}