|
@@ -0,0 +1,313 @@
|
|
|
+/*
|
|
|
+ * Copyright [2022] [https://www.xiaonuo.vip]
|
|
|
+ *
|
|
|
+ * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
|
|
|
+ *
|
|
|
+ * 1.请不要删除和修改根目录下的LICENSE文件。
|
|
|
+ * 2.请不要删除和修改Snowy源码头部的版权声明。
|
|
|
+ * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
|
|
|
+ * 4.分发源码时候,请注明软件出处 https://www.xiaonuo.vip
|
|
|
+ * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
|
|
|
+ * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
|
|
|
+ */
|
|
|
+package vip.xiaonuo.biz.modular.qyinwarehouse.entity;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
|
+import com.baomidou.mybatisplus.annotation.*;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 入库单实体
|
|
|
+ *
|
|
|
+ * @author wenjinbiao
|
|
|
+ * @date 2024/07/05 15:18
|
|
|
+ **/
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("qy_in_warehouse")
|
|
|
+public class QyInWarehouse {
|
|
|
+
|
|
|
+ /** 入库单号 */
|
|
|
+ @Schema(description = "入库单号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 0,value = "入库单号")
|
|
|
+ private String warehouseNumber;
|
|
|
+
|
|
|
+ /** 入库单预录入编号 */
|
|
|
+ @Schema(description = "入库单预录入编号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 1,value = "入库单预录入编号")
|
|
|
+ private String reWarehouseNumber;
|
|
|
+
|
|
|
+ /** 径予声明编号 */
|
|
|
+ @Schema(description = "径予声明编号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 2,value = "径予声明编号")
|
|
|
+ private String statementCode;
|
|
|
+
|
|
|
+ /** 核注清单号 */
|
|
|
+ @Schema(description = "核注清单号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 3,value = "核注清单号")
|
|
|
+ private String hzCode;
|
|
|
+
|
|
|
+ /** 企业编号 */
|
|
|
+ @Schema(description = "企业编号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 4,value = "企业编号")
|
|
|
+ private String companyCode;
|
|
|
+
|
|
|
+ /** 企业名称 */
|
|
|
+ @Schema(description = "企业名称")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 5,value = "企业名称")
|
|
|
+ private String companyName;
|
|
|
+
|
|
|
+ /** 采购类型 */
|
|
|
+ @Schema(description = "采购类型")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 6,value = "采购类型")
|
|
|
+ private String purchaseType;
|
|
|
+
|
|
|
+ /** 监管方式 */
|
|
|
+ @Schema(description = "监管方式")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 7,value = "监管方式")
|
|
|
+ private String regulaMethod;
|
|
|
+
|
|
|
+ /** 币制 */
|
|
|
+ @Schema(description = "币制")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 8,value = "币制")
|
|
|
+ private String bz;
|
|
|
+
|
|
|
+ /** 启抵国(地区) */
|
|
|
+ @Schema(description = "启抵国(地区)")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 9,value = "启抵国(地区)")
|
|
|
+ private String qdgDq;
|
|
|
+
|
|
|
+ /** 入库时间 */
|
|
|
+ @Schema(description = "入库时间")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 10,value = "入库时间")
|
|
|
+ private Date warehouseTime;
|
|
|
+
|
|
|
+ /** 进/出口岸 */
|
|
|
+ @Schema(description = "进/出口岸")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 11,value = "进/出口岸")
|
|
|
+ private String inport;
|
|
|
+
|
|
|
+ /** 进/出境关别 */
|
|
|
+ @Schema(description = "进/出境关别")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 12,value = "进/出境关别")
|
|
|
+ private String jjgb;
|
|
|
+
|
|
|
+ /** 主管关区代码 */
|
|
|
+ @Schema(description = "主管关区代码")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 13,value = "主管关区代码")
|
|
|
+ private String zggqdm;
|
|
|
+
|
|
|
+ /** 报关标志 */
|
|
|
+ @Schema(description = "报关标志")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 14,value = "报关标志")
|
|
|
+ private String bgbz;
|
|
|
+
|
|
|
+ /** 运输方式 */
|
|
|
+ @Schema(description = "运输方式")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 15,value = "运输方式")
|
|
|
+ private String ysfs;
|
|
|
+
|
|
|
+ /** 区港联动标记 */
|
|
|
+ @Schema(description = "区港联动标记")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 16,value = "区港联动标记")
|
|
|
+ private String qgldbj;
|
|
|
+
|
|
|
+ /** 是否为保税商品 */
|
|
|
+ @Schema(description = "是否为保税商品")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 17,value = "是否为保税商品")
|
|
|
+ private String bssp;
|
|
|
+
|
|
|
+ /** 一线报关单号 */
|
|
|
+ @Schema(description = "一线报关单号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 18,value = "一线报关单号")
|
|
|
+ private String yxbgdh;
|
|
|
+
|
|
|
+ /** 发货企业编号 */
|
|
|
+ @Schema(description = "发货企业编号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 19,value = "发货企业编号")
|
|
|
+ private String fhqybh;
|
|
|
+
|
|
|
+ /** 发货企业名称 */
|
|
|
+ @Schema(description = "发货企业名称")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 20,value = "发货企业名称")
|
|
|
+ private String fhqymc;
|
|
|
+
|
|
|
+ /** 备注 */
|
|
|
+ @Schema(description = "备注")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 21,value = "备注")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ /** 物料编号 */
|
|
|
+ @Schema(description = "物料编号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 22,value = "物料编号")
|
|
|
+ private String wlbh;
|
|
|
+
|
|
|
+ /** 物料名称 */
|
|
|
+ @Schema(description = "物料名称")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 23,value = "物料名称")
|
|
|
+ private String wlmc;
|
|
|
+
|
|
|
+ /** 版本号 */
|
|
|
+ @Schema(description = "版本号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 24,value = "版本号")
|
|
|
+ private String version;
|
|
|
+
|
|
|
+ /** 核注清单项次号 */
|
|
|
+ @Schema(description = "核注清单项次号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 25,value = "核注清单项次号")
|
|
|
+ private String hzqdxch;
|
|
|
+
|
|
|
+ /** 金二账册号 */
|
|
|
+ @Schema(description = "金二账册号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 26,value = "金二账册号")
|
|
|
+ private String jezce;
|
|
|
+
|
|
|
+ /** 备案序号 */
|
|
|
+ @Schema(description = "备案序号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 27,value = "备案序号")
|
|
|
+ private String recordNum;
|
|
|
+
|
|
|
+ /** 备案名称 */
|
|
|
+ @Schema(description = "备案名称")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 28,value = "备案名称")
|
|
|
+ private String recordName;
|
|
|
+
|
|
|
+ /** 料件成品标志 */
|
|
|
+ @Schema(description = "料件成品标志")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 29,value = "料件成品标志")
|
|
|
+ private String fjcpbz;
|
|
|
+
|
|
|
+ /** 规格型号 */
|
|
|
+ @Schema(description = "规格型号")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 30,value = "规格型号")
|
|
|
+ private String ggxh;
|
|
|
+
|
|
|
+ /** 品牌类型 */
|
|
|
+ @Schema(description = "品牌类型")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 31,value = "品牌类型")
|
|
|
+ private String brandType;
|
|
|
+
|
|
|
+ /** 原产国(地区) */
|
|
|
+ @Schema(description = "原产国(地区)")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 32,value = "原产国(地区)")
|
|
|
+ private String ycgdq;
|
|
|
+
|
|
|
+ /** 最终目的国(地区) */
|
|
|
+ @Schema(description = "最终目的国(地区)")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 33,value = "最终目的国(地区)")
|
|
|
+ private String zzmdg;
|
|
|
+
|
|
|
+ /** 入库数量 */
|
|
|
+ @Schema(description = "入库数量")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 34,value = "入库数量")
|
|
|
+ private String rkNum;
|
|
|
+
|
|
|
+ /** 计量单位 */
|
|
|
+ @Schema(description = "计量单位")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 35,value = "计量单位")
|
|
|
+ private String measurementUnit;
|
|
|
+
|
|
|
+ /** 单价 */
|
|
|
+ @Schema(description = "单价")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 36,value = "单价")
|
|
|
+ private String unitPrice;
|
|
|
+
|
|
|
+ /** 第一法定数量 */
|
|
|
+ @Schema(description = "第一法定数量")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 37,value = "第一法定数量")
|
|
|
+ private String fyfdNum;
|
|
|
+
|
|
|
+ /** 第二法定数量 */
|
|
|
+ @Schema(description = "第二法定数量")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 38,value = "第二法定数量")
|
|
|
+ private String defdNum;
|
|
|
+
|
|
|
+ /** 征免方式 */
|
|
|
+ @Schema(description = "征免方式")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 39,value = "征免方式")
|
|
|
+ private String zmfs;
|
|
|
+
|
|
|
+ /** 货仓代码 */
|
|
|
+ @Schema(description = "货仓代码")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 40,value = "货仓代码")
|
|
|
+ private String hcdm;
|
|
|
+
|
|
|
+ /** 仓位代码 */
|
|
|
+ @Schema(description = "仓位代码")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 41,value = "仓位代码")
|
|
|
+ private String cwdm;
|
|
|
+
|
|
|
+ /** 创建时间 */
|
|
|
+ @Schema(description = "创建时间")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 42,value = "创建时间")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /** 创建人 */
|
|
|
+ @Schema(description = "创建人")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 43,value = "创建人")
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ private String createUser;
|
|
|
+
|
|
|
+ /** 更新时间 */
|
|
|
+ @Schema(description = "更新时间")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 44,value = "更新时间")
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
+ /** 更新人 */
|
|
|
+ @Schema(description = "更新人")
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(index = 45,value = "更新人")
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ private Date updateUser;
|
|
|
+}
|