package org.jeecg.modules.lsw.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import org.jeecg.modules.lsw.entity.LswMaterialInventory;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @Description: 线边库物料信息
|
* @Author: jeecg-boot
|
* @Date: 2025-06-30
|
* @Version: V1.0
|
*/
|
@Data
|
@ApiModel(value="lsw_materialPage对象", description="线边库物料信息")
|
public class LswMaterialPage {
|
|
/**主键*/
|
@ApiModelProperty(value = "主键")
|
private String id;
|
/**创建人*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**创建日期*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "创建日期")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新日期*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "更新日期")
|
private Date updateTime;
|
/**所属部门*/
|
@ApiModelProperty(value = "所属部门")
|
private String sysOrgCode;
|
/**删除标记*/
|
@Excel(name = "删除标记", width = 15)
|
@ApiModelProperty(value = "删除标记")
|
private Integer delFlag;
|
/**物料编码*/
|
@Excel(name = "物料编码", width = 15)
|
@ApiModelProperty(value = "物料编码")
|
private String materialNumber;
|
/**物料名称*/
|
@Excel(name = "物料名称", width = 15)
|
@ApiModelProperty(value = "物料名称")
|
private String materialName;
|
/**物料型号*/
|
@Excel(name = "物料型号", width = 15)
|
@ApiModelProperty(value = "物料型号")
|
private String materialModel;
|
/**物料类型*/
|
@Excel(name = "物料类型", width = 15, dicCode = "material_category")
|
@Dict(dicCode = "material_category")
|
@ApiModelProperty(value = "物料类型")
|
private String materialCategory;
|
/**单位*/
|
@Excel(name = "单位", width = 15)
|
@ApiModelProperty(value = "单位")
|
private String materialUnit;
|
|
@ExcelCollection(name="物料库存信息")
|
@ApiModelProperty(value = "物料库存信息")
|
private List<LswMaterialInventory> lswMaterialInventoryList;
|
|
}
|