package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
@TableName(schema = "db_doc",value = "tb_material_product_history")
|
@Alias("MaterialProductHistory")
|
public class MaterialProductHistory {
|
|
private Integer id;
|
@ApiModelProperty("物料id")
|
private Integer materialId;
|
@ApiModelProperty("产品id")
|
private String productId;
|
@ApiModelProperty("子件编码")
|
private String subCode;
|
@ApiModelProperty("子件数量")
|
private Integer quantity;
|
private Date createTime;
|
@ApiModelProperty("关联类型:1(关联)")
|
private Integer linkType;
|
private Integer version;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getMaterialId() {
|
return materialId;
|
}
|
|
public void setMaterialId(Integer materialId) {
|
this.materialId = materialId;
|
}
|
|
public String getProductId() {
|
return productId;
|
}
|
|
public void setProductId(String productId) {
|
this.productId = productId;
|
}
|
|
public String getSubCode() {
|
return subCode;
|
}
|
|
public void setSubCode(String subCode) {
|
this.subCode = subCode;
|
}
|
|
public Integer getVersion() {
|
return version;
|
}
|
|
public void setVersion(Integer version) {
|
this.version = version;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getLinkType() {
|
return linkType;
|
}
|
|
public void setLinkType(Integer linkType) {
|
this.linkType = linkType;
|
}
|
|
public Integer getQuantity() {
|
return quantity;
|
}
|
|
public void setQuantity(Integer quantity) {
|
this.quantity = quantity;
|
}
|
}
|