49 lines
1005 B
Java
49 lines
1005 B
Java
|
|
package com.klp.domain.vo;
|
|||
|
|
|
|||
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|||
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|||
|
|
import com.klp.common.annotation.ExcelDictFormat;
|
|||
|
|
import com.klp.common.convert.ExcelDictConvert;
|
|||
|
|
import lombok.Data;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* BOM 明细,存放属性–值视图对象 wms_bom_item
|
|||
|
|
*
|
|||
|
|
* @author Joshi
|
|||
|
|
* @date 2025-07-29
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@ExcelIgnoreUnannotated
|
|||
|
|
public class WmsBomItemVo {
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID = 1L;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 属性名称
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "属性名称")
|
|||
|
|
private String attrKey;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 属性值
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "属性值")
|
|||
|
|
private String attrValue;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 是否启用(0=否,1=是)
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "是否启用", converter = ExcelDictConvert.class)
|
|||
|
|
@ExcelDictFormat(dictType = "common_swicth")
|
|||
|
|
private Integer isEnabled;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 备注
|
|||
|
|
*/
|
|||
|
|
@ExcelProperty(value = "备注")
|
|||
|
|
private String remark;
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|