From f65443d8abeaedc9d102324565e8368e7c9d90c8 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:41:54 +0800 Subject: [PATCH] commit --- src/main/java/com/gk/firework/Domain/LicenseStorage.java | 191 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 191 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/LicenseStorage.java b/src/main/java/com/gk/firework/Domain/LicenseStorage.java new file mode 100644 index 0000000..4247a3b --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/LicenseStorage.java @@ -0,0 +1,191 @@ +package com.gk.firework.Domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; + +import java.math.BigDecimal; + +@TableName("licensestorage") +public class LicenseStorage { + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + /** id **/ + @TableId(type = IdType.AUTO) + private Long id; + + /** 许可证编号 licensecode **/ + private String licensecode; + + /** 库区数量 area **/ + private Integer area; + + /** 库房数量 storagenum **/ + private Integer storagenum; + + /** 库房面积 storagearea **/ + private BigDecimal storagearea; + + /** 核定药量 千克(kg) powder **/ + private BigDecimal powder; + + /** 1.1级库房数量 firststoragenum **/ + private Integer firststoragenum; + + /** 1.1级库房面积 firststoragearea **/ + private BigDecimal firststoragearea; + + /** 1.1级库房核定药量 千克(kg) firstpowder **/ + private BigDecimal firstpowder; + + /** 1.3级库房数量 thirdstoragenum **/ + private Integer thirdstoragenum; + + /** 1.3级库房面积 thirdtoragearea **/ + private BigDecimal thirdstoragearea; + + /** 1.3级库房核定药量 千克(kg) thirdpowder **/ + private BigDecimal thirdpowder; + + /** 库房类型(1.危险品中转库;2.药物总库;3.成品总库) type **/ + private Byte type; + + /** 标记(预留) flag **/ + private Byte flag; + + /** id **/ + public Long getId() { + return id; + } + + /** id **/ + public void setId(Long id) { + this.id = id; + } + + public String getLicensecode() { + return licensecode; + } + + public void setLicensecode(String licensecode) { + this.licensecode = licensecode; + } + + public Integer getArea() { + return area; + } + + public void setArea(Integer area) { + this.area = area; + } + + /** 库房数量 storagenum **/ + public Integer getStoragenum() { + return storagenum; + } + + /** 库房数量 storagenum **/ + public void setStoragenum(Integer storagenum) { + this.storagenum = storagenum; + } + + /** 库房面积 storagearea **/ + public BigDecimal getStoragearea() { + return storagearea; + } + + /** 库房面积 storagearea **/ + public void setStoragearea(BigDecimal storagearea) { + this.storagearea = storagearea; + } + + /** 核定药量 千克(kg) powder **/ + public BigDecimal getPowder() { + return powder; + } + + /** 核定药量 千克(kg) powder **/ + public void setPowder(BigDecimal powder) { + this.powder = powder; + } + + /** 1.1级库房数量 firststoragenum **/ + public Integer getFirststoragenum() { + return firststoragenum; + } + + /** 1.1级库房数量 firststoragenum **/ + public void setFirststoragenum(Integer firststoragenum) { + this.firststoragenum = firststoragenum; + } + + /** 1.1级库房面积 firststoragearea **/ + public BigDecimal getFirststoragearea() { + return firststoragearea; + } + + /** 1.1级库房面积 firststoragearea **/ + public void setFirststoragearea(BigDecimal firststoragearea) { + this.firststoragearea = firststoragearea; + } + + /** 1.1级库房核定药量 千克(kg) firstpowder **/ + public BigDecimal getFirstpowder() { + return firstpowder; + } + + /** 1.1级库房核定药量 千克(kg) firstpowder **/ + public void setFirstpowder(BigDecimal firstpowder) { + this.firstpowder = firstpowder; + } + + /** 1.3级库房数量 thirdstoragenum **/ + public Integer getThirdstoragenum() { + return thirdstoragenum; + } + + /** 1.3级库房数量 thirdstoragenum **/ + public void setThirdstoragenum(Integer thirdstoragenum) { + this.thirdstoragenum = thirdstoragenum; + } + + public BigDecimal getThirdstoragearea() { + return thirdstoragearea; + } + + public void setThirdstoragearea(BigDecimal thirdstoragearea) { + this.thirdstoragearea = thirdstoragearea; + } + + /** 1.3级库房核定药量 千克(kg) thirdpowder **/ + public BigDecimal getThirdpowder() { + return thirdpowder; + } + + /** 1.3级库房核定药量 千克(kg) thirdpowder **/ + public void setThirdpowder(BigDecimal thirdpowder) { + this.thirdpowder = thirdpowder; + } + + /** 库房类型(1.危险品中转库;2.药物总库;3.成品总库) type **/ + public Byte getType() { + return type; + } + + /** 库房类型(1.危险品中转库;2.药物总库;3.成品总库) type **/ + public void setType(Byte type) { + this.type = type; + } + + /** 标记(预留) flag **/ + public Byte getFlag() { + return flag; + } + + /** 标记(预留) flag **/ + public void setFlag(Byte flag) { + this.flag = flag; + } +} -- Gitblit v1.9.2