Commit e32ec26e by 刘鑫

docs(PEA 对外接口以及工单实体): 工单增加加单失败原因字段描述文档更新

1 parent 0ca2b317
......@@ -28,7 +28,11 @@ public class OrderConfirmParam extends OrderConfirmBaseParam{
private Date appointmentTime;
/**
* 预约加单失败原因, 预约失败时传递
* 预约加单沟通结果原因, 预约失败时传递
*
* CONFIRMED 预约成功
* REFUED 客户拒绝
* CANNOT_BE_REACHED 客户联系不上
*/
private String reasonForFailure;
}
......@@ -199,7 +199,9 @@ public class OrderInfoEntity {
private String appointEngineerCodes;
/**
* 加单失败原因
* 申请加单沟通结果原因,CONFIRMED 预约成功
* REFUED 客户拒绝
* CANNOT_BE_REACHED 客户联系不上
*/
@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!