|
|
@ -0,0 +1,53 @@ |
|
|
|
|
|
package com.gaotao.modules.warehouse.entity; |
|
|
|
|
|
|
|
|
|
|
|
import jakarta.persistence.*; |
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
|
|
@Data |
|
|
|
|
|
public class HandlingUnit { |
|
|
|
|
|
private String site; |
|
|
|
|
|
private String rollNo; |
|
|
|
|
|
private Double rollQty; |
|
|
|
|
|
private String partNo; |
|
|
|
|
|
private String supplierId; |
|
|
|
|
|
private String orderRef1; |
|
|
|
|
|
private String orderRef2; |
|
|
|
|
|
private String orderRef3; |
|
|
|
|
|
private String orderRef4; |
|
|
|
|
|
private String suppDeliveryNote; |
|
|
|
|
|
private Date rollDate; |
|
|
|
|
|
private Date createdDate; |
|
|
|
|
|
private String createdBy; |
|
|
|
|
|
private String statusDb; |
|
|
|
|
|
private String status; |
|
|
|
|
|
private String suppRollNo; |
|
|
|
|
|
private Integer rollSeqNo; |
|
|
|
|
|
private String suppRollNoFlag; |
|
|
|
|
|
private String sourceType; |
|
|
|
|
|
private String originalRollNo; |
|
|
|
|
|
private String orderRef5; |
|
|
|
|
|
private String rollType; |
|
|
|
|
|
private String rollTypeDb; |
|
|
|
|
|
private String firstLevelRollNo; |
|
|
|
|
|
private String remark; |
|
|
|
|
|
private String partTypeFlag; |
|
|
|
|
|
private String warehouseId; |
|
|
|
|
|
private String synchronizedFlag; |
|
|
|
|
|
private String consumeOrderNo; |
|
|
|
|
|
private Integer consumeSeqNo; |
|
|
|
|
|
private String customerId; |
|
|
|
|
|
private String fgPartNo; |
|
|
|
|
|
private String refSupplierId; |
|
|
|
|
|
private String refPartDesc; |
|
|
|
|
|
private String synchronizeFlag; |
|
|
|
|
|
private String opsLog; |
|
|
|
|
|
private String frozenFlag; |
|
|
|
|
|
private Date frozendate; |
|
|
|
|
|
private String frozenBy; |
|
|
|
|
|
private Date expiredDate; |
|
|
|
|
|
private Date manufactureDate; |
|
|
|
|
|
private String superRollNo; |
|
|
|
|
|
private String scannerStatus; |
|
|
|
|
|
} |