Commit 0ca2b317 by 刘鑫

feat(PEA 对外接口以及工单实体): 工单增加加单失败原因字段

1 parent f48267f1
......@@ -26,4 +26,9 @@ public class OrderConfirmParam extends OrderConfirmBaseParam{
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date appointmentTime;
/**
* 预约加单失败原因, 预约失败时传递
*/
private String reasonForFailure;
}
......@@ -197,4 +197,10 @@ public class OrderInfoEntity {
*/
@Column(name = "appoint_engineer_codes")
private String appointEngineerCodes;
/**
* 加单失败原因
*/
@Column(name = "reason_for_failure")
private String reasonForFailure;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!