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_component_product_history")
|
@Alias("ComponentProductHistory")
|
public class ComponentProductHistory {
|
|
private Integer id;
|
@ApiModelProperty("散装件id")
|
private Integer componentId;
|
@ApiModelProperty("母料型号")
|
private String parentModel;
|
@ApiModelProperty("子件名称")
|
private String subName;
|
@ApiModelProperty("子件数量")
|
private Integer quantity;
|
private Date createTime;
|
@ApiModelProperty("关联类型:1(关联),2(替换)")
|
private Integer linkType;
|
private Integer sVersion;
|
private Integer eVersion;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getComponentId() {
|
return componentId;
|
}
|
|
public void setComponentId(Integer componentId) {
|
this.componentId = componentId;
|
}
|
|
public String getParentModel() {
|
return parentModel;
|
}
|
|
public void setParentModel(String parentModel) {
|
this.parentModel = parentModel;
|
}
|
|
public String getSubName() {
|
return subName;
|
}
|
|
public void setSubName(String subName) {
|
this.subName = subName;
|
}
|
|
public Integer getSVersion() {
|
return sVersion;
|
}
|
|
public void setSVersion(Integer sVersion) {
|
this.sVersion = sVersion;
|
}
|
|
public Integer getEVersion() {
|
return eVersion;
|
}
|
|
public void setEVersion(Integer eVersion) {
|
this.eVersion = eVersion;
|
}
|
|
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;
|
}
|
}
|