原材料规则
This commit is contained in:
parent
c12036ffa1
commit
66e1a2c0f3
|
|
@ -6,6 +6,8 @@ import io.swagger.annotations.ApiModelProperty;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.experimental.Accessors;
|
import lombok.experimental.Accessors;
|
||||||
|
import org.ttzero.excel.annotation.ExcelColumn;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
|
|
||||||
|
|
@ -22,27 +24,22 @@ import java.time.LocalDate;
|
||||||
public class MaterialMateVO implements Serializable {
|
public class MaterialMateVO implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
/**
|
private Long rowId;
|
||||||
* 物料编码
|
//物料编码
|
||||||
*/
|
@ExcelColumn("物料编号")
|
||||||
@ApiModelProperty(value = "物料编码")
|
|
||||||
private String materialNo;
|
private String materialNo;
|
||||||
|
//物料名称
|
||||||
/**
|
@ExcelColumn("图纸名称包含")
|
||||||
* 物料名称
|
|
||||||
*/
|
|
||||||
@ApiModelProperty(value = "物料名称")
|
|
||||||
private String materialName;
|
private String materialName;
|
||||||
|
//材质
|
||||||
/**
|
@ExcelColumn("图纸材质")
|
||||||
* 材质
|
|
||||||
*/
|
|
||||||
@ApiModelProperty(value = "材质")
|
|
||||||
private String materialTexture;
|
private String materialTexture;
|
||||||
|
//物料描述
|
||||||
@ApiModelProperty("物料描述")
|
@ExcelColumn("物料描述")
|
||||||
private String materialDesc;
|
private String materialDesc;
|
||||||
|
|
||||||
|
private Boolean checked = false;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue