|
|
|
@ -1,12 +1,15 @@ |
|
|
|
package com.gaotao.modules.inventoryStock.entity; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.gaotao.common.utils.QueryPage; |
|
|
|
import lombok.Data; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
@Data |
|
|
|
public class InventoryStock { |
|
|
|
public class InventoryStock extends QueryPage { |
|
|
|
private String site; |
|
|
|
private String buNo; |
|
|
|
private String rollNo; |
|
|
|
@ -20,9 +23,17 @@ public class InventoryStock { |
|
|
|
private String wdr; |
|
|
|
private String statusTb; |
|
|
|
private String status; |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
private Date firstInDate; |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
private Date latestOutDate; |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
private Date latestInDate; |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
private Date activeDate; |
|
|
|
private BigDecimal inQty; |
|
|
|
private BigDecimal outQty; |
|
|
|
@ -34,10 +45,16 @@ public class InventoryStock { |
|
|
|
private BigDecimal outActualValue; |
|
|
|
private String partnerId; |
|
|
|
private String partnerType; |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
private Date latestCountDate; |
|
|
|
private String freezeFlag; |
|
|
|
private BigDecimal qtyTmp; |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
private Date manufactureDate; |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
private Date expiredDate; |
|
|
|
private BigDecimal qtyToIssue; |
|
|
|
private String orderref0; |
|
|
|
|