|
|
@@ -31,7 +31,13 @@ import lombok.experimental.Accessors;
|
|
|
@ApiModel(value="consumable_material对象", description="consumable_material")
|
|
|
public class ConsumableMaterial implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
-
|
|
|
+ /**主键ID*/
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ @ApiModelProperty(value = "主键ID")
|
|
|
+ private java.lang.Integer id;
|
|
|
+ @Excel(name = "耗材代码", width = 15,orderNum = "0")
|
|
|
+ @ApiModelProperty(value = "耗材编码")
|
|
|
+ private java.lang.String consumableCode;
|
|
|
@Excel(name = "一级分类 (学科、 品类)", width = 15,orderNum = "1")
|
|
|
@ApiModelProperty(value = "一级分类")
|
|
|
private java.lang.String oneCategory;
|
|
|
@@ -41,26 +47,21 @@ public class ConsumableMaterial implements Serializable {
|
|
|
@Excel(name = "三级分类 (部位、功能、 品种)", width = 15,orderNum = "3")
|
|
|
@ApiModelProperty(value = "三级分类")
|
|
|
private java.lang.String threeCategory;
|
|
|
+ @Excel(name = "医保通用名", width = 15,orderNum = "4")
|
|
|
+ @ApiModelProperty(value = "医保通用名")
|
|
|
+ private java.lang.String consumableName;
|
|
|
+ @Excel(name = "耗材材质", width = 15,orderNum = "5")
|
|
|
+ @ApiModelProperty(value = "耗材材质")
|
|
|
+ private java.lang.String consumableMaterial;
|
|
|
|
|
|
-
|
|
|
- /**规格*/
|
|
|
@Excel(name = "规格 (特征、参数)", width = 15,orderNum = "6")
|
|
|
@ApiModelProperty(value = "规格 (特征、参数)")
|
|
|
private java.lang.String regSpe;
|
|
|
+ @Excel(name = "耗材企业", width = 15,orderNum = "7")
|
|
|
+ @ApiModelProperty(value = "企业名称")
|
|
|
+ private java.lang.String companyName;
|
|
|
|
|
|
|
|
|
- /**主键ID*/
|
|
|
- @TableId(type = IdType.AUTO)
|
|
|
- @ApiModelProperty(value = "主键ID")
|
|
|
- private java.lang.Integer id;
|
|
|
- /**耗材名称*/
|
|
|
- @Excel(name = "医保通用名", width = 15,orderNum = "4")
|
|
|
- @ApiModelProperty(value = "医保通用名")
|
|
|
- private java.lang.String consumableName;
|
|
|
- /**耗材编码*/
|
|
|
- @Excel(name = "耗材编码", width = 15,orderNum = "0")
|
|
|
- @ApiModelProperty(value = "耗材编码")
|
|
|
- private java.lang.String consumableCode;
|
|
|
|
|
|
// @Excel(name = "单价", width = 15)
|
|
|
@ApiModelProperty(value = "单价")
|
|
|
@@ -71,17 +72,13 @@ public class ConsumableMaterial implements Serializable {
|
|
|
@ApiModelProperty(value = "耗材版本")
|
|
|
private java.lang.String consumableVersion;
|
|
|
/**耗材材质*/
|
|
|
- @Excel(name = "耗材材质", width = 15,orderNum = "5")
|
|
|
- @ApiModelProperty(value = "耗材材质")
|
|
|
- private java.lang.String consumableMaterial;
|
|
|
+
|
|
|
/**注册备案产品名称*/
|
|
|
// @Excel(name = "注册备案产品名称", width = 15)
|
|
|
@ApiModelProperty(value = "注册备案产品名称")
|
|
|
private java.lang.String registeredProductName;
|
|
|
/**企业名称*/
|
|
|
- @Excel(name = "企业名称", width = 15,orderNum = "7")
|
|
|
- @ApiModelProperty(value = "企业名称")
|
|
|
- private java.lang.String companyName;
|
|
|
+
|
|
|
/**产品名称*/
|
|
|
// @Excel(name = "产品名称", width = 15)
|
|
|
@ApiModelProperty(value = "产品名称")
|