123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- package com.ruoyi.ams.qc.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;
- /**
- * 质检对象 doc_qc_details
- *
- * @author ruoyi
- * @date 2022-11-14
- */
- public class DocQcDetails extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** $column.columnComment */
- private String qcno;
- /** $column.columnComment */
- private String qclineno;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String linestatus;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private BigDecimal palineno;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String customerid;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String sku;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String lotnum;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private BigDecimal paqtyExpected;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private BigDecimal qcqtyExpected;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private BigDecimal qcqtyCompleted;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String userdefine1;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String userdefine2;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String userdefine3;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String userdefine4;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String userdefine5;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String qcdescr;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String qcresult;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String filecontent;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String notes;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Date addtime;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String addwho;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Date edittime;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String editwho;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String packid;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String transactionid;
- public void setQcno(String qcno)
- {
- this.qcno = qcno;
- }
- public String getQcno()
- {
- return qcno;
- }
- public void setQclineno(String qclineno)
- {
- this.qclineno = qclineno;
- }
- public String getQclineno()
- {
- return qclineno;
- }
- public void setLinestatus(String linestatus)
- {
- this.linestatus = linestatus;
- }
- public String getLinestatus()
- {
- return linestatus;
- }
- public void setPalineno(BigDecimal palineno)
- {
- this.palineno = palineno;
- }
- public BigDecimal getPalineno()
- {
- return palineno;
- }
- public void setCustomerid(String customerid)
- {
- this.customerid = customerid;
- }
- public String getCustomerid()
- {
- return customerid;
- }
- public void setSku(String sku)
- {
- this.sku = sku;
- }
- public String getSku()
- {
- return sku;
- }
- public void setLotnum(String lotnum)
- {
- this.lotnum = lotnum;
- }
- public String getLotnum()
- {
- return lotnum;
- }
- public void setPaqtyExpected(BigDecimal paqtyExpected)
- {
- this.paqtyExpected = paqtyExpected;
- }
- public BigDecimal getPaqtyExpected()
- {
- return paqtyExpected;
- }
- public void setQcqtyExpected(BigDecimal qcqtyExpected)
- {
- this.qcqtyExpected = qcqtyExpected;
- }
- public BigDecimal getQcqtyExpected()
- {
- return qcqtyExpected;
- }
- public void setQcqtyCompleted(BigDecimal qcqtyCompleted)
- {
- this.qcqtyCompleted = qcqtyCompleted;
- }
- public BigDecimal getQcqtyCompleted()
- {
- return qcqtyCompleted;
- }
- public void setUserdefine1(String userdefine1)
- {
- this.userdefine1 = userdefine1;
- }
- public String getUserdefine1()
- {
- return userdefine1;
- }
- public void setUserdefine2(String userdefine2)
- {
- this.userdefine2 = userdefine2;
- }
- public String getUserdefine2()
- {
- return userdefine2;
- }
- public void setUserdefine3(String userdefine3)
- {
- this.userdefine3 = userdefine3;
- }
- public String getUserdefine3()
- {
- return userdefine3;
- }
- public void setUserdefine4(String userdefine4)
- {
- this.userdefine4 = userdefine4;
- }
- public String getUserdefine4()
- {
- return userdefine4;
- }
- public void setUserdefine5(String userdefine5)
- {
- this.userdefine5 = userdefine5;
- }
- public String getUserdefine5()
- {
- return userdefine5;
- }
- public void setQcdescr(String qcdescr)
- {
- this.qcdescr = qcdescr;
- }
- public String getQcdescr()
- {
- return qcdescr;
- }
- public void setQcresult(String qcresult)
- {
- this.qcresult = qcresult;
- }
- public String getQcresult()
- {
- return qcresult;
- }
- public void setFilecontent(String filecontent)
- {
- this.filecontent = filecontent;
- }
- public String getFilecontent()
- {
- return filecontent;
- }
- public void setNotes(String notes)
- {
- this.notes = notes;
- }
- public String getNotes()
- {
- return notes;
- }
- public void setAddtime(Date addtime)
- {
- this.addtime = addtime;
- }
- public Date getAddtime()
- {
- return addtime;
- }
- public void setAddwho(String addwho)
- {
- this.addwho = addwho;
- }
- public String getAddwho()
- {
- return addwho;
- }
- public void setEdittime(Date edittime)
- {
- this.edittime = edittime;
- }
- public Date getEdittime()
- {
- return edittime;
- }
- public void setEditwho(String editwho)
- {
- this.editwho = editwho;
- }
- public String getEditwho()
- {
- return editwho;
- }
- public void setPackid(String packid)
- {
- this.packid = packid;
- }
- public String getPackid()
- {
- return packid;
- }
- public void setTransactionid(String transactionid)
- {
- this.transactionid = transactionid;
- }
- public String getTransactionid()
- {
- return transactionid;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("qcno", getQcno())
- .append("qclineno", getQclineno())
- .append("linestatus", getLinestatus())
- .append("palineno", getPalineno())
- .append("customerid", getCustomerid())
- .append("sku", getSku())
- .append("lotnum", getLotnum())
- .append("paqtyExpected", getPaqtyExpected())
- .append("qcqtyExpected", getQcqtyExpected())
- .append("qcqtyCompleted", getQcqtyCompleted())
- .append("userdefine1", getUserdefine1())
- .append("userdefine2", getUserdefine2())
- .append("userdefine3", getUserdefine3())
- .append("userdefine4", getUserdefine4())
- .append("userdefine5", getUserdefine5())
- .append("qcdescr", getQcdescr())
- .append("qcresult", getQcresult())
- .append("filecontent", getFilecontent())
- .append("notes", getNotes())
- .append("addtime", getAddtime())
- .append("addwho", getAddwho())
- .append("edittime", getEdittime())
- .append("editwho", getEditwho())
- .append("packid", getPackid())
- .append("transactionid", getTransactionid())
- .toString();
- }
- }
|