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