You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
2.3 KiB
131 lines
2.3 KiB
package com.spring.modules.sampleManagement.entity;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
public class PlmBmBom {
|
|
/**
|
|
* 工厂编码
|
|
*/
|
|
private String site;
|
|
|
|
/**
|
|
* 技术参数卡编码
|
|
*/
|
|
private String codeNo;
|
|
|
|
/**
|
|
* 800料号
|
|
*/
|
|
private String erpPartNo;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
private BigDecimal quantity;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String createBy;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date createDate;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String updateBy;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date updateDate;
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
|
|
public String getCodeNo() {
|
|
return codeNo;
|
|
}
|
|
|
|
public void setCodeNo(String codeNo) {
|
|
this.codeNo = codeNo;
|
|
}
|
|
|
|
public String getErpPartNo() {
|
|
return erpPartNo;
|
|
}
|
|
|
|
public void setErpPartNo(String erpPartNo) {
|
|
this.erpPartNo = erpPartNo;
|
|
}
|
|
|
|
public BigDecimal getQuantity() {
|
|
return quantity;
|
|
}
|
|
|
|
public void setQuantity(BigDecimal quantity) {
|
|
this.quantity = quantity;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
|
|
public String getCreateBy() {
|
|
return createBy;
|
|
}
|
|
|
|
public void setCreateBy(String createBy) {
|
|
this.createBy = createBy;
|
|
}
|
|
|
|
public Date getCreateDate() {
|
|
return createDate;
|
|
}
|
|
|
|
public void setCreateDate(Date createDate) {
|
|
this.createDate = createDate;
|
|
}
|
|
|
|
public String getUpdateBy() {
|
|
return updateBy;
|
|
}
|
|
|
|
public void setUpdateBy(String updateBy) {
|
|
this.updateBy = updateBy;
|
|
}
|
|
|
|
public Date getUpdateDate() {
|
|
return updateDate;
|
|
}
|
|
|
|
public void setUpdateDate(Date updateDate) {
|
|
this.updateDate = updateDate;
|
|
}
|
|
}
|
|
|