HisInboud.java 5.04 KB
package cn.csbr.springboot.dao.model;

import org.apache.ibatis.type.JdbcType;
import tk.mybatis.mapper.annotation.ColumnType;

import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;

@Table(name = "his_inboud")
public class HisInboud {
    /**
     * 本表的主键
     */
    @Id
    private String guid;

    /**
     * his系统原始的主键
     */
    private String hisid;

    /**
     * 入库时间
     */
    @ColumnType(jdbcType = JdbcType.TIMESTAMP)
    private Date intime;

    /**
     * 入库订单号
     */
    private String orderno;

    /**
     * 追溯码
     */
    private String tracecode;

    /**
     * 导入时间
     */
    @ColumnType(jdbcType = JdbcType.TIMESTAMP)
    private Date importtime;

    /**
     * 是否入柜
     */
    private Boolean ifinbound;

    /**
     * 标记入柜时间
     */
    @ColumnType(jdbcType = JdbcType.TIMESTAMP)
    private Date markinboundtime;

    /**
     * 标记人
     */
    private String markuserguid;

    /**
     * 标记人真实姓名
     */
    private String makruserrealname;

    /**
     * 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;
    }

    /**
     * This method returns the value of the his系统原始的主键
     *
     * @return hisid - his系统原始的主键
     */
    public String getHisid() {
        return hisid;
    }

    /**
     * This method set the value of the his系统原始的主键
     *
     * @param hisid his系统原始的主键
     */
    public void setHisid(String hisid) {
        this.hisid = hisid;
    }

    /**
     * This method returns the value of the 入库时间
     *
     * @return intime - 入库时间
     */
    public Date getIntime() {
        return intime;
    }

    /**
     * This method set the value of the 入库时间
     *
     * @param intime 入库时间
     */
    public void setIntime(Date intime) {
        this.intime = intime;
    }

    /**
     * This method returns the value of the 入库订单号
     *
     * @return orderno - 入库订单号
     */
    public String getOrderno() {
        return orderno;
    }

    /**
     * This method set the value of the 入库订单号
     *
     * @param orderno 入库订单号
     */
    public void setOrderno(String orderno) {
        this.orderno = orderno;
    }

    /**
     * This method returns the value of the 追溯码
     *
     * @return tracecode - 追溯码
     */
    public String getTracecode() {
        return tracecode;
    }

    /**
     * This method set the value of the 追溯码
     *
     * @param tracecode 追溯码
     */
    public void setTracecode(String tracecode) {
        this.tracecode = tracecode;
    }

    /**
     * This method returns the value of the 导入时间
     *
     * @return importtime - 导入时间
     */
    public Date getImporttime() {
        return importtime;
    }

    /**
     * This method set the value of the 导入时间
     *
     * @param importtime 导入时间
     */
    public void setImporttime(Date importtime) {
        this.importtime = importtime;
    }

    /**
     * This method returns the value of the 是否入柜
     *
     * @return ifinbound - 是否入柜
     */
    public Boolean getIfinbound() {
        return ifinbound;
    }

    /**
     * This method set the value of the 是否入柜
     *
     * @param ifinbound 是否入柜
     */
    public void setIfinbound(Boolean ifinbound) {
        this.ifinbound = ifinbound;
    }

    /**
     * This method returns the value of the 标记入柜时间
     *
     * @return markinboundtime - 标记入柜时间
     */
    public Date getMarkinboundtime() {
        return markinboundtime;
    }

    /**
     * This method set the value of the 标记入柜时间
     *
     * @param markinboundtime 标记入柜时间
     */
    public void setMarkinboundtime(Date markinboundtime) {
        this.markinboundtime = markinboundtime;
    }

    /**
     * This method returns the value of the 标记人
     *
     * @return markuserguid - 标记人
     */
    public String getMarkuserguid() {
        return markuserguid;
    }

    /**
     * This method set the value of the 标记人
     *
     * @param markuserguid 标记人
     */
    public void setMarkuserguid(String markuserguid) {
        this.markuserguid = markuserguid;
    }

    /**
     * This method returns the value of the 标记人真实姓名
     *
     * @return makruserrealname - 标记人真实姓名
     */
    public String getMakruserrealname() {
        return makruserrealname;
    }

    /**
     * This method set the value of the 标记人真实姓名
     *
     * @param makruserrealname 标记人真实姓名
     */
    public void setMakruserrealname(String makruserrealname) {
        this.makruserrealname = makruserrealname;
    }
}