HisGoodsBound.java 3.91 KB
package cn.csbr.springboot.dao.model;

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

import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
import java.math.BigDecimal;
import java.util.Date;

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

    /**
     * 商品表guid
     */
    @Column(name = "HisGoodsGUID")
    private String hisgoodguid;

    /**
     * 科室guid
     */
    @Column(name = "orgGUID")
    private String orgguid;

    /**
     * 库存上限
     */
    @Column(name = "StockUpperLimit")
    private BigDecimal stockupperlimit;

    /**
     * 库存下限
     */
    @Column(name = "StockLowerLimit")
    private BigDecimal stocklowerlimit;

    /**
     * 创建人
     */
    @Column(name = "CREATERID")
    private String createrid;

    /**
     * 创建时间
     */
    @Column(name = "CREATETIME")

    @ColumnType(jdbcType = JdbcType.TIMESTAMP)
    private Date createtime;

    /**
     * 修改人
     */
    @Column(name = "UPDATERID")
    private String updaterid;

    /**
     * 修改时间
     */
    @Column(name = "UPDATETIME")
    @ColumnType(jdbcType = JdbcType.TIMESTAMP)
    private Date updatetime;

    /**
     * 备注
     */
    @Column(name = "Memo")
    private String memo;

    /**
     * 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 库存上限
     *
     * @return StockUpperLimit - 库存上限
     */
    public BigDecimal getStockupperlimit() {
        return stockupperlimit;
    }

    /**
     * This method set the value of the 库存上限
     *
     * @param stockupperlimit 库存上限
     */
    public void setStockupperlimit(BigDecimal stockupperlimit) {
        this.stockupperlimit = stockupperlimit;
    }

    /**
     * This method returns the value of the 库存下限
     *
     * @return StockLowerLimit - 库存下限
     */
    public BigDecimal getStocklowerlimit() {
        return stocklowerlimit;
    }

    /**
     * This method set the value of the 库存下限
     *
     * @param stocklowerlimit 库存下限
     */
    public void setStocklowerlimit(BigDecimal stocklowerlimit) {
        this.stocklowerlimit = stocklowerlimit;
    }

    /**
     * This method returns the value of the 备注
     *
     * @return Memo - 备注
     */

    public String getMemo() {
        return memo;
    }

    /**
     * This method set the value of the 备注
     *
     * @param memo 备注
     */
    public void setMemo(String memo) {
        this.memo = memo;
    }

    public String getCreaterid() {
        return createrid;
    }

    public void setCreaterid(String createrid) {
        this.createrid = createrid;
    }

    public Date getCreatetime() {
        return createtime;
    }

    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }

    public String getUpdaterid() {
        return updaterid;
    }

    public void setUpdaterid(String updaterid) {
        this.updaterid = updaterid;
    }

    public Date getUpdatetime() {
        return updatetime;
    }

    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }

    public String getHisgoodguid() {
        return hisgoodguid;
    }

    public void setHisgoodguid(String hisgoodguid) {
        this.hisgoodguid = hisgoodguid;
    }

    public String getOrgguid() {
        return orgguid;
    }

    public void setOrgguid(String orgguid) {
        this.orgguid = orgguid;
    }
}