|
|
@ -2,6 +2,7 @@ package com.digiwin.athena.app.infra.dto; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
import com.google.gson.annotations.SerializedName; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.NoArgsConstructor; |
|
|
@ -124,6 +125,18 @@ public class PurchaseOrderDetailDTO { |
|
|
|
@JsonProperty(value = "tab_status") |
|
|
|
private String tabStatus; |
|
|
|
|
|
|
|
/** |
|
|
|
* 交期回复任务卡状态 |
|
|
|
*/ |
|
|
|
@JsonProperty(value = "reply_tab_status") |
|
|
|
private String replyTabStatus; |
|
|
|
|
|
|
|
/** |
|
|
|
* 异常排除任务卡状态 |
|
|
|
*/ |
|
|
|
@JsonProperty(value = "abnormal_tab_status") |
|
|
|
private String abnormalTabStatus; |
|
|
|
|
|
|
|
/** |
|
|
|
* 任务卡类型:1是采购任务,2是交期回复任务,3是异常排除任务 |
|
|
|
*/ |
|
|
|