|
@@ -0,0 +1,120 @@
|
|
|
+
|
|
|
+ * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
|
|
+ *
|
|
|
+ * Redistribution and use in source and binary forms, with or without
|
|
|
+ * modification, are permitted provided that the following conditions are met:
|
|
|
+ *
|
|
|
+ * Redistributions of source code must retain the above copyright notice,
|
|
|
+ * this list of conditions and the following disclaimer.
|
|
|
+ * Redistributions in binary form must reproduce the above copyright
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * Neither the name of the dreamlu.net developer nor the names of its
|
|
|
+ * contributors may be used to endorse or promote products derived from
|
|
|
+ * this software without specific prior written permission.
|
|
|
+ * Author: Chill 庄骞 (smallchill@163.com)
|
|
|
+ */
|
|
|
+package com.fjhx.tag.entity;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+import com.fjhx.base.BaseStockEntity;
|
|
|
+import com.fjhx.base.BasicEntity;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+
|
|
|
+ * 物料库存明细实体类
|
|
|
+ *
|
|
|
+ * @author BladeX
|
|
|
+ * @since 2022-07-29
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("stock_tag")
|
|
|
+@ApiModel(value = "Tag对象", description = "物料库存明细")
|
|
|
+public class Tag extends BaseStockEntity {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ * 物料ID
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "物料ID")
|
|
|
+ private String materialId;
|
|
|
+
|
|
|
+ * 物料数量
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "物料数量")
|
|
|
+ private BigDecimal quantity;
|
|
|
+
|
|
|
+ * 二维码
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "二维码")
|
|
|
+ private String qrCode;
|
|
|
+
|
|
|
+ * RFID码
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "RFID码")
|
|
|
+ private String rfidCode;
|
|
|
+
|
|
|
+ * 入库编号
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "入库编号")
|
|
|
+ @TableField("stockIn_out_bill_no")
|
|
|
+ private String stockinOutBillNo;
|
|
|
+
|
|
|
+ * 采购合同ID
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "采购合同ID")
|
|
|
+ private String purchaseContractId;
|
|
|
+
|
|
|
+ * 已打印
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "已打印")
|
|
|
+ private Boolean hadPrinter;
|
|
|
+
|
|
|
+ * 已出货
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "已出货")
|
|
|
+ private Boolean hadShipment;
|
|
|
+
|
|
|
+ * 采购进度 (枚举定义:0=供应商打码,1=供应商出货,2=到货贴标,3=本厂入库,4=现场回仓)
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "采购进度 (枚举定义:0=供应商打码,1=供应商出货,2=到货贴标,3=本厂入库,4=现场回仓)")
|
|
|
+ private Integer purchaseProgress;
|
|
|
+
|
|
|
+ * 出货物流Id
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "出货物流Id")
|
|
|
+ private String expressId;
|
|
|
+
|
|
|
+ * 贴标人
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "贴标人")
|
|
|
+ private String labelUserId;
|
|
|
+
|
|
|
+ * 序号
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "序号")
|
|
|
+ private Integer number;
|
|
|
+
|
|
|
+ * 合同批次ID
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "合同批次ID")
|
|
|
+ private String batchId;
|
|
|
+
|
|
|
+ * 质检状态 (枚举定义:0=未质检,1=已质检,2=无需质检)
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "质检状态 (枚举定义:0=未质检,1=已质检,2=无需质检)")
|
|
|
+ private Integer quantityCheckState;
|
|
|
+
|
|
|
+
|
|
|
+}
|