123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- package com.ruoyi.app.domain;
- import java.math.BigDecimal;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 白脏生产记录对象 pork_whiteoffal_produce
- *
- * @author coede
- * @date 2025-03-19
- */
- public class PorkWhiteoffalProduce extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** ID */
- private Long id;
- /** 产品名称 */
- @Excel(name = "产品名称")
- private String productName;
- /** 生产时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @Excel(name = "生产时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
- private Date produceTime;
- /** 血码 */
- @Excel(name = "血码")
- private String slaughterCode;
- /** 分销批次ID */
- @Excel(name = "分销批次ID")
- private Long distributeBatchId;
- /** 入场批次ID */
- @Excel(name = "入场批次ID")
- private Long entranceBatchId;
- /** 称显重量 */
- @Excel(name = "称显重量")
- private BigDecimal scaleWeight;
- /** 宰后重量 */
- @Excel(name = "宰后重量")
- private BigDecimal finalWeight;
- /** 删除标志 */
- private String delFlag;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setProductName(String productName)
- {
- this.productName = productName;
- }
- public String getProductName()
- {
- return productName;
- }
- public void setProduceTime(Date produceTime)
- {
- this.produceTime = produceTime;
- }
- public Date getProduceTime()
- {
- return produceTime;
- }
- public void setSlaughterCode(String slaughterCode)
- {
- this.slaughterCode = slaughterCode;
- }
- public String getSlaughterCode()
- {
- return slaughterCode;
- }
- public void setDistributeBatchId(Long distributeBatchId)
- {
- this.distributeBatchId = distributeBatchId;
- }
- public Long getDistributeBatchId()
- {
- return distributeBatchId;
- }
- public void setEntranceBatchId(Long entranceBatchId)
- {
- this.entranceBatchId = entranceBatchId;
- }
- public Long getEntranceBatchId()
- {
- return entranceBatchId;
- }
- public void setScaleWeight(BigDecimal scaleWeight)
- {
- this.scaleWeight = scaleWeight;
- }
- public BigDecimal getScaleWeight()
- {
- return scaleWeight;
- }
- public void setFinalWeight(BigDecimal finalWeight)
- {
- this.finalWeight = finalWeight;
- }
- public BigDecimal getFinalWeight()
- {
- return finalWeight;
- }
- public void setDelFlag(String delFlag)
- {
- this.delFlag = delFlag;
- }
- public String getDelFlag()
- {
- return delFlag;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("productName", getProductName())
- .append("produceTime", getProduceTime())
- .append("slaughterCode", getSlaughterCode())
- .append("distributeBatchId", getDistributeBatchId())
- .append("entranceBatchId", getEntranceBatchId())
- .append("scaleWeight", getScaleWeight())
- .append("finalWeight", getFinalWeight())
- .append("remark", getRemark())
- .append("createBy", getCreateBy())
- .append("updateTime", getUpdateTime())
- .append("updateBy", getUpdateBy())
- .append("delFlag", getDelFlag())
- .toString();
- }
- }
|