|
|
@@ -1649,4 +1649,68 @@ message WRListingCancelOrderRsp {
|
|
|
optional string OrderTime = 9; // string 接受撤单的时间
|
|
|
optional string ClientSerialNo = 10; // string 客户端流水号
|
|
|
}
|
|
|
+// 违约申请请求 0 20 9
|
|
|
+message PerformanceContractedApplyReq {
|
|
|
+ optional MessageHead Header = 1; // MessageHead
|
|
|
+ optional uint64 PerformancePlanID = 2; // uint64 履约计划ID
|
|
|
+ optional uint32 BreachType = 3; // uint32 违约方类型
|
|
|
+ optional uint64 Applicant = 4; // uint64 违约申请人
|
|
|
+ optional string ApplyRemark = 5; // string 申请备注
|
|
|
+ optional string Attachment = 6; // string 附件
|
|
|
+}
|
|
|
+// 违约申请应答 0 20 10
|
|
|
+message PerformanceContractedApplyRsp {
|
|
|
+ optional MessageHead Header = 1; // MessageHead 消息头
|
|
|
+ optional int32 RetCode = 2; // int32 返回码
|
|
|
+ optional string RetDesc = 3; // string 描述信息
|
|
|
+ optional uint64 PerformancePlanID = 4; // uint64 履约计划ID
|
|
|
+}
|
|
|
+// 延期申请请求 0 20 5
|
|
|
+message PerformanceDelayApplyReq {
|
|
|
+ optional MessageHead Header = 1; // MessageHead
|
|
|
+ optional uint64 PerformancePlanStepID = 2; // uint64 履约计划步骤ID
|
|
|
+ optional uint32 delaydays = 3; // uint32 申请延期天数
|
|
|
+ optional uint64 applicant = 4; // uint64 申请人
|
|
|
+ optional string applyremark = 5; // string 申请备注
|
|
|
+}
|
|
|
+// 延期申请应答 0 20 6
|
|
|
+message PerformanceDelayApplyRsp {
|
|
|
+ optional MessageHead Header = 1; // MessageHead 消息头
|
|
|
+ optional int32 RetCode = 2; // int32 返回码
|
|
|
+ optional string RetDesc = 3; // string 描述信息
|
|
|
+ optional uint64 PerformancePlanStepID = 4; // uint64 履约计划步骤ID
|
|
|
+ optional uint64 applicant = 5; // uint64 申请人
|
|
|
+}
|
|
|
+// 履约手动确认请求 0 20 3
|
|
|
+message PerformanceManualConfirmReq {
|
|
|
+ optional MessageHead Header = 1; // MessageHead
|
|
|
+ optional uint64 PerformancePlanStepID = 2; // uint64 履约计划步骤ID
|
|
|
+ optional double OverShortAmount = 3; // double 溢短金额
|
|
|
+ optional uint32 PerformanceExecuteSide = 4; // uint32 履约步骤执行方 1买方 2 卖方
|
|
|
+ optional string StepRemark = 5; // string 步骤备注
|
|
|
+ optional double OverShortQty = 6; // double 溢短数量
|
|
|
+ optional double ExpressFee = 7; // double 运费金额
|
|
|
+}
|
|
|
+// 履约手动确认应答 0 20 4
|
|
|
+message PerformanceManualConfirmRsp {
|
|
|
+ optional MessageHead Header = 1; // MessageHead 消息头
|
|
|
+ optional int32 RetCode = 2; // int32 返回码
|
|
|
+ optional string RetDesc = 3; // string 描述信息
|
|
|
+ optional uint64 PerformancePlanStepID = 4; // uint64 履约计划步骤ID
|
|
|
+}
|
|
|
|
|
|
+// 履约修改联络信息请求 0 20 15
|
|
|
+message PerformanceModifyContactReq {
|
|
|
+ optional MessageHead Header = 1; // MessageHead
|
|
|
+ optional uint64 PerformancePlanID = 2; // uint64 履约计划ID
|
|
|
+ optional uint64 AccountID = 3; // uint64 账号
|
|
|
+ optional string ContactInfo = 4; // string 联络信息
|
|
|
+}
|
|
|
+// 履约修改联络信息回应 0 20 16
|
|
|
+message PerformanceModifyContactRsp {
|
|
|
+ optional MessageHead Header = 1; // MessageHead 消息头
|
|
|
+ optional int32 RetCode = 2; // int32 返回码
|
|
|
+ optional string RetDesc = 3; // string 描述信息
|
|
|
+ optional uint64 PerformancePlanID = 4; // uint64 履约计划ID
|
|
|
+ optional uint64 AccountID = 5; // uint64 账号
|
|
|
+}
|