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;
|
|
}
|