SpdWvdetailScendLog.java 3.25 KB
package cn.csbr.springboot.dao.model;

import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;

@Table(name = "spd_wvdetail_scend_log")
public class SpdWvdetailScendLog {
    /**
     * 系统唯一标识
     */
    @Id
    @Column(name = "GUID")
    private String guid;

    @Column(name = "RDGUID")
    private String rdguid;

    /**
     * 单据编码
     */
    @Column(name = "BillNo")
    private String billno;

    /**
     * 行号
     */
    @Column(name = "RowNo")
    private Integer rowno;

    /**
     * 条码
     */
    @Column(name = "BarCode")
    private String barcode;

    @Column(name = "RfidUid")
    private String rfiduid;

    @Column(name = "PrintState")
    private String printstate;

    @Column(name = "BillState")
    private String billstate;

    @Column(name = "IsDelete")
    private String isDelete;

    public String getIsDelete() {
        return isDelete;
    }

    public void setIsDelete(String isDelete) {
        this.isDelete = isDelete;
    }
    /**
     * This method returns the value of the 系统唯一标识
     *
     * @return GUID - 系统唯一标识
     */
    public String getGuid() {
        return guid;
    }

    /**
     * This method set the value of the 系统唯一标识
     *
     * @param guid 系统唯一标识
     */
    public void setGuid(String guid) {
        this.guid = guid;
    }

    /**
     * @return RDGUID
     */
    public String getRdguid() {
        return rdguid;
    }

    /**
     * @param rdguid
     */
    public void setRdguid(String rdguid) {
        this.rdguid = rdguid;
    }

    /**
     * This method returns the value of the 单据编码
     *
     * @return BillNo - 单据编码
     */
    public String getBillno() {
        return billno;
    }

    /**
     * This method set the value of the 单据编码
     *
     * @param billno 单据编码
     */
    public void setBillno(String billno) {
        this.billno = billno;
    }

    /**
     * This method returns the value of the 行号
     *
     * @return RowNo - 行号
     */
    public Integer getRowno() {
        return rowno;
    }

    /**
     * This method set the value of the 行号
     *
     * @param rowno 行号
     */
    public void setRowno(Integer rowno) {
        this.rowno = rowno;
    }

    /**
     * This method returns the value of the 条码
     *
     * @return BarCode - 条码
     */
    public String getBarcode() {
        return barcode;
    }

    /**
     * This method set the value of the 条码
     *
     * @param barcode 条码
     */
    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }

    /**
     * @return RfidUid
     */
    public String getRfiduid() {
        return rfiduid;
    }

    /**
     * @param rfiduid
     */
    public void setRfiduid(String rfiduid) {
        this.rfiduid = rfiduid;
    }

    /**
     * @return PrintState
     */
    public String getPrintstate() {
        return printstate;
    }

    /**
     * @param printstate
     */
    public void setPrintstate(String printstate) {
        this.printstate = printstate;
    }

    public String getBillstate() {
        return billstate;
    }

    public void setBillstate(String billstate) {
        this.billstate = billstate;
    }
}