From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:44:19 +0800 Subject: [PATCH] 删除 --- src/main/java/com/gk/firework/Domain/ProductCodeInfo.java | 177 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 177 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/ProductCodeInfo.java b/src/main/java/com/gk/firework/Domain/ProductCodeInfo.java new file mode 100644 index 0000000..918bc02 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/ProductCodeInfo.java @@ -0,0 +1,177 @@ +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.io.Serializable; +import java.math.BigDecimal; +import java.util.Date; + +@TableName(value = "productcode") +public class ProductCodeInfo implements Serializable { + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + /** id **/ + @TableId(type = IdType.AUTO) + private Long id; + + /** 合同单号 ordercode **/ + private String ordercode; + + /** 外包装箱码 originalcode **/ + private String originalcode; + + /** 产品名称 itemname **/ + private String itemname; + + /** 生产厂家 manufacturer **/ + private String manufacturer; + + /** 含药量(一般为数字,部分含有单位) explosivecontent **/ + private String explosivecontent; + + /** 箱数(正整数) boxnumber **/ + private Integer boxnumber; + + /** (烟花爆竹)类型(爆竹类,单个爆竹类,喷花类,日景烟花,吐珠类,造型玩具类,玩具烟花类,线香类,组合类,组合烟花,组合烟花类,组合盆花类,鞭炮类,火箭类,旋转类,升空类,旋转升空类,冷光类,烟雾类,摩擦类,小礼花类,礼花弹类,架子烟类,引火线,黑火药,烟火药,氯酸钾,精品礼品箱类,彩箱烟花类,单个爆竹类,玩具类,同类组合烟花) type **/ + private String type; + + /** 产品等级(ABCD级) level **/ + private String level; + + /** 创建人 createdby **/ + private String createdby; + + /** 创建时间 createddate **/ + private Date createddate; + + //单箱进价 + private BigDecimal price; + + private Byte isdel; + + /** id id **/ + public Long getId() { + return id; + } + + /** id id **/ + public void setId(Long id) { + this.id = id; + } + + /** 合同单号 ordercode **/ + public String getOrdercode() { + return ordercode; + } + + /** 合同单号 ordercode **/ + public void setOrdercode(String ordercode) { + this.ordercode = ordercode == null ? null : ordercode.trim(); + } + + /** 外包装箱码 originalcode **/ + public String getOriginalcode() { + return originalcode; + } + + /** 外包装箱码 originalcode **/ + public void setOriginalcode(String originalcode) { + this.originalcode = originalcode == null ? null : originalcode.trim(); + } + + /** 产品名称 itemname **/ + public String getItemname() { + return itemname; + } + + /** 产品名称 itemname **/ + public void setItemname(String itemname) { + this.itemname = itemname == null ? null : itemname.trim(); + } + + /** 生产厂家 manufacturer **/ + public String getManufacturer() { + return manufacturer; + } + + /** 生产厂家 manufacturer **/ + public void setManufacturer(String manufacturer) { + this.manufacturer = manufacturer == null ? null : manufacturer.trim(); + } + + /** 含药量(一般为数字,部分含有单位) explosivecontent **/ + public String getExplosivecontent() { + return explosivecontent; + } + + /** 含药量(一般为数字,部分含有单位) explosivecontent **/ + public void setExplosivecontent(String explosivecontent) { + this.explosivecontent = explosivecontent == null ? null : explosivecontent.trim(); + } + + /** 箱数(正整数) boxnumber **/ + public Integer getBoxnumber() { + return boxnumber; + } + + /** 箱数(正整数) boxnumber **/ + public void setBoxnumber(Integer boxnumber) { + this.boxnumber = boxnumber; + } + + /** 创建人 createdby **/ + public String getCreatedby() { + return createdby; + } + + /** 创建人 createdby **/ + public void setCreatedby(String createdby) { + this.createdby = createdby == null ? null : createdby.trim(); + } + + /** 创建时间 createddate **/ + public Date getCreateddate() { + return createddate; + } + + /** 创建时间 createddate **/ + public void setCreateddate(Date createddate) { + this.createddate = createddate; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getLevel() { + return level; + } + + public void setLevel(String level) { + this.level = level; + } + + public BigDecimal getPrice() { + return price; + } + + public void setPrice(BigDecimal price) { + this.price = price; + } + + public Byte getIsdel() { + return isdel; + } + + public void setIsdel(Byte isdel) { + this.isdel = isdel; + } +} -- Gitblit v1.9.2