|
|
@@ -7,86 +7,104 @@ declare global {
|
|
|
interface PerformanceContractedApplyReq {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- PerformancePlanID?: number; // uint64 履约计划ID
|
|
|
- BreachType?: number; // uint32 违约方类型
|
|
|
- Applicant?: number; // uint64 违约申请人
|
|
|
- ApplyRemark?: string; // string 申请备注
|
|
|
- Attachment?: string;// string 附件
|
|
|
+ /// uint64 履约计划ID
|
|
|
+ PerformancePlanID?: number;
|
|
|
+ /// uint32 违约方类型
|
|
|
+ BreachType?: number;
|
|
|
+ /// uint64 违约申请人
|
|
|
+ Applicant?: number;
|
|
|
+ /// string 申请备注
|
|
|
+ ApplyRemark?: string;
|
|
|
+ /// string 附件
|
|
|
+ Attachment?: string;
|
|
|
}
|
|
|
// 违约申请应答 0 20 10
|
|
|
interface PerformanceContractedApplyRsp {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- // 返回码
|
|
|
+ /// 返回码
|
|
|
RetCode: number;
|
|
|
- // 描述信息
|
|
|
+ /// 描述信息
|
|
|
RetDesc: string;
|
|
|
- // uint64 履约计划ID
|
|
|
+ /// uint64 履约计划ID
|
|
|
PerformancePlanID: number;
|
|
|
}
|
|
|
// 延期申请请求 0 20 5
|
|
|
interface PerformanceDelayApplyReq {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- PerformancePlanStepID?: number; // uint64 履约计划步骤ID
|
|
|
- delaydays?: number; // uint32 申请延期天数
|
|
|
- applicant?: number; // uint64 申请人
|
|
|
- applyremark?: string; // string 申请备注
|
|
|
+ /// uint64 履约计划步骤ID
|
|
|
+ PerformancePlanStepID?: number;
|
|
|
+ /// uint32 申请延期天数
|
|
|
+ delaydays?: number;
|
|
|
+ /// uint64 申请人
|
|
|
+ applicant?: number;
|
|
|
+ /// string 申请备注
|
|
|
+ applyremark?: string;
|
|
|
}
|
|
|
// 延期申请应答 0 20 6
|
|
|
interface PerformanceDelayApplyRsp {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- // 返回码
|
|
|
+ /// 返回码
|
|
|
RetCode: number;
|
|
|
- // 描述信息
|
|
|
+ /// 描述信息
|
|
|
RetDesc: string;
|
|
|
- // uint64 履约计划步骤ID
|
|
|
+ /// uint64 履约计划步骤ID
|
|
|
PerformancePlanStepID: number;
|
|
|
- // uint64 申请人
|
|
|
+ /// uint64 申请人
|
|
|
applicant: number;
|
|
|
}
|
|
|
// 履约手动确认请求 0 20 3
|
|
|
interface PerformanceManualConfirmReq {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- PerformancePlanStepID?: number; // uint64 履约计划步骤ID
|
|
|
- OverShortAmount?: number; // double 溢短金额
|
|
|
- PerformanceExecuteSide?: number; // uint32 履约步骤执行方 1买方 2 卖方
|
|
|
- StepRemark?: string; // string 步骤备注
|
|
|
- OverShortQty?: number; // double 溢短数量
|
|
|
- ExpressFee?: number; // double 运费金额
|
|
|
+ /// uint64 履约计划步骤ID
|
|
|
+ PerformancePlanStepID?: number;
|
|
|
+ /// double 溢短金额
|
|
|
+ OverShortAmount?: number;
|
|
|
+ /// uint32 履约步骤执行方 1买方 2 卖方
|
|
|
+ PerformanceExecuteSide?: number;
|
|
|
+ /// string 步骤备注
|
|
|
+ StepRemark?: string;
|
|
|
+ /// double 溢短数量
|
|
|
+ OverShortQty?: number;
|
|
|
+ /// double 运费金额
|
|
|
+ ExpressFee?: number;
|
|
|
}
|
|
|
// 履约手动确认应答 0 20 4
|
|
|
interface PerformanceManualConfirmRsp {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- // 返回码
|
|
|
+ /// 返回码
|
|
|
RetCode: number;
|
|
|
- // 描述信息
|
|
|
+ /// 描述信息
|
|
|
RetDesc: string;
|
|
|
- // uint64 履约计划步骤ID
|
|
|
+ /// uint64 履约计划步骤ID
|
|
|
PerformancePlanStepID: number;
|
|
|
}
|
|
|
// 履约修改联络信息请求 0 20 15
|
|
|
interface PerformanceModifyContactReq {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- PerformancePlanID?: number; // uint64 履约计划ID
|
|
|
- AccountID?: number; // uint64 账号
|
|
|
- ContactInfo?: string; // string 联络信息
|
|
|
+ /// uint64 履约计划ID
|
|
|
+ PerformancePlanID?: number;
|
|
|
+ /// uint64 账号
|
|
|
+ AccountID?: number;
|
|
|
+ /// string 联络信息
|
|
|
+ ContactInfo?: string;
|
|
|
}
|
|
|
// 履约修改联络信息回应 0 20 16
|
|
|
interface PerformanceModifyContactRsp {
|
|
|
/// MessageHead 消息头
|
|
|
Header?: IMessageHead;
|
|
|
- // 返回码
|
|
|
+ /// 返回码
|
|
|
RetCode: number;
|
|
|
- // 描述信息
|
|
|
+ /// 描述信息
|
|
|
RetDesc: string;
|
|
|
- // uint64 履约计划ID
|
|
|
+ /// uint64 履约计划ID
|
|
|
PerformancePlanID: number;
|
|
|
- // uint64 账号
|
|
|
+ /// uint64 账号
|
|
|
AccountID: number;
|
|
|
}
|
|
|
}
|