|
@@ -0,0 +1,117 @@
|
|
|
+package com.yh.saas.plugin.yiliangyiyun.entity;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import com.baomidou.mybatisplus.activerecord.Model;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotations.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotations.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotations.Version;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.enums.IdType;
|
|
|
+import com.yh.saas.common.support.entity.BaseModel;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 记录出入库信息
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author Gongdc
|
|
|
+ * @since 2021-05-21
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("warehouse_in_out_info")
|
|
|
+public class WarehouseInOutInfo extends BaseModel<WarehouseInOutInfo> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 仓库id
|
|
|
+ */
|
|
|
+ private String baseId;
|
|
|
+ /**
|
|
|
+ * 仓库名称
|
|
|
+ */
|
|
|
+ private String warehouseName;
|
|
|
+ /**
|
|
|
+ * 仓位编号id
|
|
|
+ */
|
|
|
+ private String positionId;
|
|
|
+ /**
|
|
|
+ * 仓位编号
|
|
|
+ */
|
|
|
+ private String binNumber;
|
|
|
+ /**
|
|
|
+ * 货名key
|
|
|
+ */
|
|
|
+ private String goodsNameKey;
|
|
|
+ /**
|
|
|
+ * 货名
|
|
|
+ */
|
|
|
+ private String goodsName;
|
|
|
+ /**
|
|
|
+ * 毛重(吨)
|
|
|
+ */
|
|
|
+ private Float grossWeight;
|
|
|
+ /**
|
|
|
+ * 皮重(吨)
|
|
|
+ */
|
|
|
+ private Float tare;
|
|
|
+ /**
|
|
|
+ * 净重(吨)
|
|
|
+ */
|
|
|
+ private Float netWeight;
|
|
|
+ /**
|
|
|
+ * 品级key
|
|
|
+ */
|
|
|
+ private String gradeKey;
|
|
|
+ /**
|
|
|
+ * 品级
|
|
|
+ */
|
|
|
+ private String grade;
|
|
|
+ /**
|
|
|
+ * 经办人
|
|
|
+ */
|
|
|
+ private String agent;
|
|
|
+ /**
|
|
|
+ * 入库日期(出库)
|
|
|
+ */
|
|
|
+ private Date inOutDate;
|
|
|
+ /**
|
|
|
+ * 出入库类型key
|
|
|
+ */
|
|
|
+ private String inOutTypeKey;
|
|
|
+ /**
|
|
|
+ * 出入库类型
|
|
|
+ */
|
|
|
+ private String inOutType;
|
|
|
+ /**
|
|
|
+ * 车牌号
|
|
|
+ */
|
|
|
+ private String carNo;
|
|
|
+ /**
|
|
|
+ * 合同编号
|
|
|
+ */
|
|
|
+ private String contractNo;
|
|
|
+ /**
|
|
|
+ * 附件地址
|
|
|
+ */
|
|
|
+ private String addressUrl;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|