修改三方验收bug
This commit is contained in:
@@ -17,4 +17,6 @@ public class ThreeAcceptanceDTO {
|
||||
private String comments;
|
||||
@ApiModelProperty("0通过,1不通过")
|
||||
private Integer resultType;
|
||||
@ApiModelProperty("验收时间")
|
||||
private String acceptanceTime;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
package com.cool.store.entity;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
||||
|
||||
import java.util.Date;
|
||||
import javax.persistence.*;
|
||||
|
||||
@@ -54,15 +56,16 @@ public class AcceptanceInfoDO {
|
||||
/**
|
||||
* 工程部验收签名 {"pic":"","acceptanceTime":"","result":"","remark":"","status":1}
|
||||
*/
|
||||
|
||||
@Column(name = "engineering_acceptance_signatures")
|
||||
private String engineeringAcceptanceSignatures;
|
||||
|
||||
/**
|
||||
* 营运部验收签名 {"pic":"","acceptanceTime":"","result":"","remark":"","status":1}
|
||||
*/
|
||||
|
||||
@Column(name = "operations_acceptance_signatures")
|
||||
private String operationsAcceptanceSignatures;
|
||||
|
||||
/**
|
||||
* 加密商验收签名 {"pic":"","acceptanceTime":"","result":"","remark":"","status":0}
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.cool.store.response;
|
||||
|
||||
import com.cool.store.dto.decoration.ThreeAcceptanceDTO;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Auther: WangShuo
|
||||
* @Date: 2024/05/06/下午5:50
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
@Data
|
||||
public class ThreeSignResponse {
|
||||
@ApiModelProperty("工程部验收")
|
||||
private ThreeAcceptanceDTO engineeringAcceptance;
|
||||
@ApiModelProperty("营运部验收")
|
||||
private ThreeAcceptanceDTO operationsAcceptance;
|
||||
@ApiModelProperty("加盟商验收")
|
||||
private ThreeAcceptanceDTO partnerAcceptance;
|
||||
}
|
||||
Reference in New Issue
Block a user