package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
@TableName(schema = "db_doc",value = "tb_component_product_approving")
|
@Alias("ComponentProductApproving")
|
public class ComponentProductApproving {
|
|
private Integer id;
|
@ApiModelProperty("散装件id")
|
private Integer componentId;
|
@ApiModelProperty("母料型号")
|
private String parentModel;
|
@ApiModelProperty("子件名称")
|
private String subName;
|
@ApiModelProperty("关联类型:-1(移除),1(关联),2(替换)")
|
private Integer linkType;
|
@ApiModelProperty("主表id")
|
private Integer mainId;
|
|
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 getMainId() {
|
return mainId;
|
}
|
|
public void setMainId(Integer mainId) {
|
this.mainId = mainId;
|
}
|
|
public Integer getLinkType() {
|
return linkType;
|
}
|
|
public void setLinkType(Integer linkType) {
|
this.linkType = linkType;
|
}
|
}
|