|
|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.gaotao.modules.outsourcing.entity.vo; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.gaotao.common.utils.PartAttributeAware; |
|
|
|
import lombok.Data; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
@ -8,7 +9,7 @@ import java.math.BigDecimal; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
@Data |
|
|
|
public class OutsourcingAndMaterialVo { |
|
|
|
public class OutsourcingAndMaterialVo implements PartAttributeAware { |
|
|
|
/**--------------------------------------详情Materical---------------------------------------------*/ |
|
|
|
// 订单编号(关联的父订单编号) |
|
|
|
private String orderNo; |
|
|
|
@ -164,4 +165,16 @@ public class OutsourcingAndMaterialVo { |
|
|
|
private String objstate; |
|
|
|
|
|
|
|
private String authorizationRequired; |
|
|
|
|
|
|
|
private String partQuery; |
|
|
|
|
|
|
|
private String isInWh; |
|
|
|
|
|
|
|
private BigDecimal availableQty; |
|
|
|
|
|
|
|
@Override |
|
|
|
public String getPartQuery() { |
|
|
|
return partQuery != null ? partQuery : partNo; |
|
|
|
} |
|
|
|
|
|
|
|
} |