Browse Source

请购单新增两种任务卡状态

master
李壮壮 1 year ago
parent
commit
b2f7f3d715
2 changed files with 27 additions and 0 deletions
  1. +13
    -0
      demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/infra/dto/PurchaseOrderDetailDTO.java
  2. +14
    -0
      demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/infra/entity/PurchaseOrderDetailEntity.java

+ 13
- 0
demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/infra/dto/PurchaseOrderDetailDTO.java View File

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


+ 14
- 0
demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/infra/entity/PurchaseOrderDetailEntity.java View File

@ -139,6 +139,20 @@ public class PurchaseOrderDetailEntity extends BaseMgrEntity<PurchaseOrderDetail
@JsonProperty(value = "tab_status") @JsonProperty(value = "tab_status")
private String tabStatus; private String tabStatus;
/**
* 交期回复任务卡状态
*/
@SerializedName(value = "reply_tab_status")
@JsonProperty(value = "reply_tab_status")
private String replyTabStatus;
/**
* 异常排除任务卡状态
*/
@SerializedName(value = "abnormal_tab_status")
@JsonProperty(value = "abnormal_tab_status")
private String abnormalTabStatus;
/** /**
* 任务卡类型:1是采购任务,2是交期回复任务,3是异常排除任务 * 任务卡类型:1是采购任务,2是交期回复任务,3是异常排除任务
*/ */


Loading…
Cancel
Save