parent
acce22d755
commit
a832e6550c
@ -0,0 +1,124 @@
|
|||||||
|
package com.hw.mes.api.domain;
|
||||||
|
|
||||||
|
import com.hw.common.core.annotation.Excel;
|
||||||
|
import com.hw.common.core.web.domain.BaseEntity;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产线信息对象 mes_base_prodline_info
|
||||||
|
*
|
||||||
|
* @author Yinq
|
||||||
|
* @date 2024-01-24
|
||||||
|
*/
|
||||||
|
public class MesBaseProdlineInfo extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 主键标识 */
|
||||||
|
private Long prodlineId;
|
||||||
|
|
||||||
|
/** 产线编号 */
|
||||||
|
@Excel(name = "产线编号")
|
||||||
|
private String prodlineCode;
|
||||||
|
|
||||||
|
/** 产线名称 */
|
||||||
|
@Excel(name = "产线名称")
|
||||||
|
private String prodlineName;
|
||||||
|
|
||||||
|
/** 产线类型 */
|
||||||
|
@Excel(name = "产线类型")
|
||||||
|
private String prodlineType;
|
||||||
|
|
||||||
|
/** 所属工厂ID */
|
||||||
|
@Excel(name = "所属工厂ID")
|
||||||
|
private Long factoryId;
|
||||||
|
|
||||||
|
/** 所属工厂名称 */
|
||||||
|
@Excel(name = "所属工厂名称")
|
||||||
|
private String factoryName;
|
||||||
|
|
||||||
|
/** 是否标识 */
|
||||||
|
@Excel(name = "是否标识")
|
||||||
|
private String isFlag;
|
||||||
|
|
||||||
|
public String getFactoryName() {
|
||||||
|
return factoryName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFactoryName(String factoryName) {
|
||||||
|
this.factoryName = factoryName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProdlineId(Long prodlineId)
|
||||||
|
{
|
||||||
|
this.prodlineId = prodlineId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getProdlineId()
|
||||||
|
{
|
||||||
|
return prodlineId;
|
||||||
|
}
|
||||||
|
public void setProdlineCode(String prodlineCode)
|
||||||
|
{
|
||||||
|
this.prodlineCode = prodlineCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProdlineCode()
|
||||||
|
{
|
||||||
|
return prodlineCode;
|
||||||
|
}
|
||||||
|
public void setProdlineName(String prodlineName)
|
||||||
|
{
|
||||||
|
this.prodlineName = prodlineName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProdlineName()
|
||||||
|
{
|
||||||
|
return prodlineName;
|
||||||
|
}
|
||||||
|
public void setProdlineType(String prodlineType)
|
||||||
|
{
|
||||||
|
this.prodlineType = prodlineType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProdlineType()
|
||||||
|
{
|
||||||
|
return prodlineType;
|
||||||
|
}
|
||||||
|
public void setFactoryId(Long factoryId)
|
||||||
|
{
|
||||||
|
this.factoryId = factoryId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getFactoryId()
|
||||||
|
{
|
||||||
|
return factoryId;
|
||||||
|
}
|
||||||
|
public void setIsFlag(String isFlag)
|
||||||
|
{
|
||||||
|
this.isFlag = isFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getIsFlag()
|
||||||
|
{
|
||||||
|
return isFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("prodlineId", getProdlineId())
|
||||||
|
.append("prodlineCode", getProdlineCode())
|
||||||
|
.append("prodlineName", getProdlineName())
|
||||||
|
.append("prodlineType", getProdlineType())
|
||||||
|
.append("factoryId", getFactoryId())
|
||||||
|
.append("isFlag", getIsFlag())
|
||||||
|
.append("remark", getRemark())
|
||||||
|
.append("createBy", getCreateBy())
|
||||||
|
.append("createTime", getCreateTime())
|
||||||
|
.append("updateBy", getUpdateBy())
|
||||||
|
.append("updateTime", getUpdateTime())
|
||||||
|
.toString();
|
||||||
|
}
|
||||||
|
}
|
@ -1,124 +1,124 @@
|
|||||||
package com.hw.mes.domain;
|
//package com.hw.mes.domain;
|
||||||
|
//
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
//import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
//import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
import com.hw.common.core.annotation.Excel;
|
//import com.hw.common.core.annotation.Excel;
|
||||||
import com.hw.common.core.web.domain.BaseEntity;
|
//import com.hw.common.core.web.domain.BaseEntity;
|
||||||
|
//
|
||||||
/**
|
///**
|
||||||
* 产线信息对象 mes_base_prodline_info
|
// * 产线信息对象 mes_base_prodline_info
|
||||||
*
|
// *
|
||||||
* @author Yinq
|
// * @author Yinq
|
||||||
* @date 2024-01-24
|
// * @date 2024-01-24
|
||||||
*/
|
// */
|
||||||
public class MesBaseProdlineInfo extends BaseEntity
|
//public class MesBaseProdlineInfo extends BaseEntity
|
||||||
{
|
//{
|
||||||
private static final long serialVersionUID = 1L;
|
// private static final long serialVersionUID = 1L;
|
||||||
|
//
|
||||||
/** 主键标识 */
|
// /** 主键标识 */
|
||||||
private Long prodlineId;
|
// private Long prodlineId;
|
||||||
|
//
|
||||||
/** 产线编号 */
|
// /** 产线编号 */
|
||||||
@Excel(name = "产线编号")
|
// @Excel(name = "产线编号")
|
||||||
private String prodlineCode;
|
// private String prodlineCode;
|
||||||
|
//
|
||||||
/** 产线名称 */
|
// /** 产线名称 */
|
||||||
@Excel(name = "产线名称")
|
// @Excel(name = "产线名称")
|
||||||
private String prodlineName;
|
// private String prodlineName;
|
||||||
|
//
|
||||||
/** 产线类型 */
|
// /** 产线类型 */
|
||||||
@Excel(name = "产线类型")
|
// @Excel(name = "产线类型")
|
||||||
private String prodlineType;
|
// private String prodlineType;
|
||||||
|
//
|
||||||
/** 所属工厂ID */
|
// /** 所属工厂ID */
|
||||||
@Excel(name = "所属工厂ID")
|
// @Excel(name = "所属工厂ID")
|
||||||
private Long factoryId;
|
// private Long factoryId;
|
||||||
|
//
|
||||||
/** 所属工厂名称 */
|
// /** 所属工厂名称 */
|
||||||
@Excel(name = "所属工厂名称")
|
// @Excel(name = "所属工厂名称")
|
||||||
private String factoryName;
|
// private String factoryName;
|
||||||
|
//
|
||||||
/** 是否标识 */
|
// /** 是否标识 */
|
||||||
@Excel(name = "是否标识")
|
// @Excel(name = "是否标识")
|
||||||
private String isFlag;
|
// private String isFlag;
|
||||||
|
//
|
||||||
public String getFactoryName() {
|
// public String getFactoryName() {
|
||||||
return factoryName;
|
// return factoryName;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public void setFactoryName(String factoryName) {
|
// public void setFactoryName(String factoryName) {
|
||||||
this.factoryName = factoryName;
|
// this.factoryName = factoryName;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public void setProdlineId(Long prodlineId)
|
// public void setProdlineId(Long prodlineId)
|
||||||
{
|
// {
|
||||||
this.prodlineId = prodlineId;
|
// this.prodlineId = prodlineId;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public Long getProdlineId()
|
// public Long getProdlineId()
|
||||||
{
|
// {
|
||||||
return prodlineId;
|
// return prodlineId;
|
||||||
}
|
// }
|
||||||
public void setProdlineCode(String prodlineCode)
|
// public void setProdlineCode(String prodlineCode)
|
||||||
{
|
// {
|
||||||
this.prodlineCode = prodlineCode;
|
// this.prodlineCode = prodlineCode;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public String getProdlineCode()
|
// public String getProdlineCode()
|
||||||
{
|
// {
|
||||||
return prodlineCode;
|
// return prodlineCode;
|
||||||
}
|
// }
|
||||||
public void setProdlineName(String prodlineName)
|
// public void setProdlineName(String prodlineName)
|
||||||
{
|
// {
|
||||||
this.prodlineName = prodlineName;
|
// this.prodlineName = prodlineName;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public String getProdlineName()
|
// public String getProdlineName()
|
||||||
{
|
// {
|
||||||
return prodlineName;
|
// return prodlineName;
|
||||||
}
|
// }
|
||||||
public void setProdlineType(String prodlineType)
|
// public void setProdlineType(String prodlineType)
|
||||||
{
|
// {
|
||||||
this.prodlineType = prodlineType;
|
// this.prodlineType = prodlineType;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public String getProdlineType()
|
// public String getProdlineType()
|
||||||
{
|
// {
|
||||||
return prodlineType;
|
// return prodlineType;
|
||||||
}
|
// }
|
||||||
public void setFactoryId(Long factoryId)
|
// public void setFactoryId(Long factoryId)
|
||||||
{
|
// {
|
||||||
this.factoryId = factoryId;
|
// this.factoryId = factoryId;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public Long getFactoryId()
|
// public Long getFactoryId()
|
||||||
{
|
// {
|
||||||
return factoryId;
|
// return factoryId;
|
||||||
}
|
// }
|
||||||
public void setIsFlag(String isFlag)
|
// public void setIsFlag(String isFlag)
|
||||||
{
|
// {
|
||||||
this.isFlag = isFlag;
|
// this.isFlag = isFlag;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
public String getIsFlag()
|
// public String getIsFlag()
|
||||||
{
|
// {
|
||||||
return isFlag;
|
// return isFlag;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
@Override
|
// @Override
|
||||||
public String toString() {
|
// public String toString() {
|
||||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
// return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
.append("prodlineId", getProdlineId())
|
// .append("prodlineId", getProdlineId())
|
||||||
.append("prodlineCode", getProdlineCode())
|
// .append("prodlineCode", getProdlineCode())
|
||||||
.append("prodlineName", getProdlineName())
|
// .append("prodlineName", getProdlineName())
|
||||||
.append("prodlineType", getProdlineType())
|
// .append("prodlineType", getProdlineType())
|
||||||
.append("factoryId", getFactoryId())
|
// .append("factoryId", getFactoryId())
|
||||||
.append("isFlag", getIsFlag())
|
// .append("isFlag", getIsFlag())
|
||||||
.append("remark", getRemark())
|
// .append("remark", getRemark())
|
||||||
.append("createBy", getCreateBy())
|
// .append("createBy", getCreateBy())
|
||||||
.append("createTime", getCreateTime())
|
// .append("createTime", getCreateTime())
|
||||||
.append("updateBy", getUpdateBy())
|
// .append("updateBy", getUpdateBy())
|
||||||
.append("updateTime", getUpdateTime())
|
// .append("updateTime", getUpdateTime())
|
||||||
.toString();
|
// .toString();
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
Loading…
Reference in New Issue