| | |
| | | maxDeep?: number; |
| | | } |
| | | |
| | | interface APIgetArrangeTaskEnterpriseEmployeeParams { |
| | | /** 灵工Id */ |
| | | id?: string; |
| | | } |
| | | |
| | | interface APIgetCheckReceiveTaskUserSubmitParams { |
| | | /** 提交Id(用于B端客户端) */ |
| | | submitId?: string; |
| | |
| | | roleId?: string; |
| | | } |
| | | |
| | | interface APIgetOpenStandardServiceParams { |
| | | /** Id */ |
| | | id?: string; |
| | | } |
| | | |
| | | interface APIgetPartyAEnterpriseParams { |
| | | /** 合作Id */ |
| | | id?: string; |
| | |
| | | interface APIgetStandardOrderParams { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | /** 限制场景(不传则不限制) */ |
| | | scene?: EnumGetStandardOrdersQueryScene; |
| | | } |
| | | |
| | | interface APIgetStandardOrderSettlementParams { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | } |
| | | |
| | | interface APIgetStandardServiceParams { |
| | |
| | | request?: GetSupplierEnterpriseSelectQuery; |
| | | } |
| | | |
| | | interface APIgetSureStandardOrderParams { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | } |
| | | |
| | | interface APIgetTaskEnterpriseParams { |
| | | /** 企业Id */ |
| | | id?: string; |
| | |
| | | errorMessages?: string; |
| | | } |
| | | |
| | | interface BatchSetTaskUserArrangeCommand { |
| | | /** 任务Id */ |
| | | taskInfoIds?: string[]; |
| | | /** 灵工Id */ |
| | | enterpriseEmployeeId?: string; |
| | | arrangeStatus?: EnumTaskUserArrangeStatus; |
| | | } |
| | | |
| | | interface BindWxmpUserInfoCommand { |
| | | /** 访问令牌 */ |
| | | accessToken: string; |
| | |
| | | operatorToken?: string; |
| | | } |
| | | |
| | | interface CheckPayStandardOrderCommand { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | } |
| | | |
| | | interface CheckPayStandardOrderCommandResult { |
| | | payStatus?: EnumStandardOrderPayStatus; |
| | | /** 支付时间 */ |
| | | payTime?: string; |
| | | /** 支付完成时间 */ |
| | | payCompletedTime?: string; |
| | | } |
| | | |
| | | interface CheckReceiveTaskCommand { |
| | | /** 提交Id */ |
| | | id?: string; |
| | |
| | | checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus; |
| | | } |
| | | |
| | | interface CheckRefundStandardOrderCommand { |
| | | /** 订单Id(二选一) */ |
| | | id?: string; |
| | | /** 退款交易编号(二选一) */ |
| | | refundCode?: string; |
| | | } |
| | | |
| | | interface CheckRefundStandardOrderCommandResult { |
| | | payStatus?: EnumStandardOrderPayStatus; |
| | | /** 支付时间 */ |
| | | payTime?: string; |
| | | /** 支付完成时间 */ |
| | | payCompletedTime?: string; |
| | | refundStatus?: EnumStandardOrderRefundStatus; |
| | | /** 退款时间 */ |
| | | refundTime?: string; |
| | | /** 退款完成时间 */ |
| | | refundCompletedTime?: string; |
| | | } |
| | | |
| | | type ChooseWxmpPhoneNumberCommand = Record<string, any>; |
| | | |
| | | type ClearTaskCollectCommand = Record<string, any>; |
| | |
| | | enum EnumEnterpriseWalletTransactionType { |
| | | /**充值 */ |
| | | Recharge = 10, |
| | | /**收入 */ |
| | | Income = 11, |
| | | /**转账 */ |
| | | Transfer = 20, |
| | | } |
| | |
| | | Pass = 30, |
| | | } |
| | | |
| | | enum EnumGetStandardOrdersQueryPartAEnterpriseOrderStatus { |
| | | /**待支付 */ |
| | | Wait = 10, |
| | | /**已支付 */ |
| | | Pay = 20, |
| | | /**已完成 */ |
| | | Completed = 30, |
| | | } |
| | | |
| | | enum EnumGetStandardOrdersQueryScene { |
| | | /**甲方企业订单管理 */ |
| | | PartAEnterpriseOrder = 10, |
| | | /**人资企业订单管理 */ |
| | | SupplierEnterpriseOrder = 100, |
| | | } |
| | | |
| | | enum EnumGetStandardOrdersQuerySupplierEnterpriseOrderStatus { |
| | | /**待收款 */ |
| | | Wait = 10, |
| | | /**已完成 */ |
| | | Completed = 30, |
| | | } |
| | | |
| | | enum EnumInsuranceSupplierAccess { |
| | | /**人资园 */ |
| | | WaterDropCloud = 10, |
| | |
| | | Cancelled = 30, |
| | | } |
| | | |
| | | enum EnumStandardOrderRefundStatus { |
| | | /**待退款 */ |
| | | Wait = 10, |
| | | /**已退款 */ |
| | | Completed = 20, |
| | | /**退款失败 */ |
| | | Fail = 30, |
| | | } |
| | | |
| | | enum EnumStandardOrderSettlementStatus { |
| | | /**待结算 */ |
| | | Wait = 10, |
| | |
| | | enum EnumUserWalletTransactionType { |
| | | /**支付 */ |
| | | Payment = 1, |
| | | /**退款 */ |
| | | Refund = 2, |
| | | /**收入 */ |
| | | Income = 10, |
| | | /**提现 */ |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultCheckPayStandardOrderCommandResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: CheckPayStandardOrderCommandResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultCheckRefundStandardOrderCommandResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: CheckRefundStandardOrderCommandResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultEnterpriseUserElectronSignCommandResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetArrangeTaskEnterpriseEmployeeQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetArrangeTaskEnterpriseEmployeeQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetArrangeTaskEnterpriseEmployeesQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetArrangeTaskEnterpriseEmployeesQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetArrangeTaskUsersQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetStandardOrderAppointmentsQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetStandardOrderAppointmentsQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetStandardOrderPaysQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetStandardOrderPaysQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetStandardOrderQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetStandardOrderSettlementsQueryResult { |
| | | interface FriendlyResultGetStandardOrderSettlementQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetStandardOrderSettlementsQueryResult; |
| | | data?: GetStandardOrderSettlementQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetSureStandardOrderQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetSureStandardOrderQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetTaskEnterpriseQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetWaitArrangeTasksQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | data?: GetWaitArrangeTasksQueryResult; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultGetWxmpSettingsQueryResult { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultListGetStandardServicesQueryResultItem { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | | /** 状态码 */ |
| | | code?: number; |
| | | /** 错误码 */ |
| | | errorCode?: string; |
| | | /** 数据 */ |
| | | data?: GetStandardServicesQueryResultItem[]; |
| | | /** 执行成功 */ |
| | | success?: boolean; |
| | | /** 错误信息 */ |
| | | msg?: any; |
| | | /** 附加数据 */ |
| | | extras?: any; |
| | | /** 时间戳 */ |
| | | timestamp?: number; |
| | | } |
| | | |
| | | interface FriendlyResultListGetUserInfoRolesQueryResultItem { |
| | | /** 跟踪Id */ |
| | | traceId?: string; |
| | |
| | | quickQuery?: string; |
| | | } |
| | | |
| | | interface GetArrangeTaskEnterpriseEmployeeQueryResult { |
| | | /** 灵工Id */ |
| | | id?: string; |
| | | /** 头像 */ |
| | | avatar?: string; |
| | | /** 姓名 */ |
| | | name?: string; |
| | | /** 身份证号 */ |
| | | identity?: string; |
| | | /** 手机号 */ |
| | | contactPhoneNumber?: string; |
| | | gender?: EnumUserGender; |
| | | /** 年龄 */ |
| | | age?: number; |
| | | /** 是否实名 */ |
| | | isReal?: boolean; |
| | | realMethod?: EnumUserRealMethod; |
| | | /** 电子合同 */ |
| | | contractUrl?: string; |
| | | /** 协议起始时间 */ |
| | | contractBegin?: string; |
| | | /** 协议终止时间 */ |
| | | contractEnd?: string; |
| | | /** 已安排任务 */ |
| | | taskInfos?: GetWaitArrangeTasksQueryResultItem[]; |
| | | } |
| | | |
| | | interface GetArrangeTaskEnterpriseEmployeesQuery { |
| | | /** 关键字(姓名、身份证号、手机号) */ |
| | | keywords?: string; |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | | interface GetArrangeTaskEnterpriseEmployeesQueryResult { |
| | | pageModel?: PagedListQueryResultPageModel; |
| | | /** 数据 */ |
| | | data?: GetArrangeTaskEnterpriseEmployeesQueryResultItem[]; |
| | | } |
| | | |
| | | interface GetArrangeTaskEnterpriseEmployeesQueryResultItem { |
| | | /** Id */ |
| | | id?: string; |
| | | /** 头像 */ |
| | | avatar?: string; |
| | | /** 姓名 */ |
| | | name?: string; |
| | | /** 身份证号 */ |
| | | identity?: string; |
| | | /** 手机号 */ |
| | | contactPhoneNumber?: string; |
| | | gender?: EnumUserGender; |
| | | /** 年龄 */ |
| | | age?: number; |
| | | /** 是否实名 */ |
| | | isReal?: boolean; |
| | | realMethod?: EnumUserRealMethod; |
| | | /** 已安排 */ |
| | | arrangeTaskCount?: number; |
| | | } |
| | | |
| | | interface GetArrangeTaskUsersQuery { |
| | | /** 任务Id */ |
| | | id?: string; |
| | |
| | | name?: string; |
| | | /** 联系电话 */ |
| | | contactPhoneNumber?: string; |
| | | /** 省市区+详细地址+门牌号 */ |
| | | /** 省份编号 */ |
| | | provinceCode?: string; |
| | | /** 省份 */ |
| | | provinceContent?: string; |
| | | /** 城市编号 */ |
| | | cityCode?: string; |
| | | /** 城市 */ |
| | | cityContent?: string; |
| | | /** 区编号 */ |
| | | areaCode?: string; |
| | | /** 区 */ |
| | | areaContent?: string; |
| | | /** 详细地址 */ |
| | | addressName?: string; |
| | | /** 门牌号 */ |
| | | addressDetail?: string; |
| | | /** 经度 */ |
| | | longitude?: number; |
| | | /** 纬度 */ |
| | | latitude?: number; |
| | | /** 是否默认 */ |
| | | isDefault?: boolean; |
| | | } |
| | |
| | | remark?: string; |
| | | } |
| | | |
| | | interface GetOpenStandardServiceListQuery { |
| | | /** 关键字(服务名/Id) */ |
| | | keywords?: string; |
| | | /** 岗位编号 */ |
| | | jobCode?: string; |
| | | /** 创建时间-起始 */ |
| | | createdTimeBegin?: string; |
| | | /** 创建时间-截止 */ |
| | | createdTimeEnd?: string; |
| | | releaseStatus?: EnumStandardServiceReleaseStatus; |
| | | recommendStatus?: EnumStandardServiceRecommendStatus; |
| | | /** 是否收藏 */ |
| | | isCollected?: boolean; |
| | | } |
| | | |
| | | interface GetOpenStandardServicesQuery { |
| | | /** 关键字(服务名/Id) */ |
| | | keywords?: string; |
| | | /** 岗位编号 */ |
| | | jobCode?: string; |
| | | /** 创建时间-起始 */ |
| | | createdTimeBegin?: string; |
| | | /** 创建时间-截止 */ |
| | | createdTimeEnd?: string; |
| | | releaseStatus?: EnumStandardServiceReleaseStatus; |
| | | recommendStatus?: EnumStandardServiceRecommendStatus; |
| | | /** 是否收藏 */ |
| | | isCollected?: boolean; |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | | interface GetOpenTaskInfosQuery { |
| | | /** 关键字(任务名称) */ |
| | | keywords?: string; |
| | |
| | | signName?: string; |
| | | } |
| | | |
| | | interface GetStandardOrderAppointmentsQuery { |
| | | appointmentStatus?: EnumStandardOrderAppointmentStatus; |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | | interface GetStandardOrderAppointmentsQueryResult { |
| | | pageModel?: PagedListQueryResultPageModel; |
| | | /** 数据 */ |
| | | data?: GetStandardOrderAppointmentsQueryResultItem[]; |
| | | } |
| | | |
| | | interface GetStandardOrderAppointmentsQueryResultItem { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | /** 服务名称 */ |
| | | serviceName?: string; |
| | | /** 实付金额 */ |
| | | payAmount?: number; |
| | | /** 服务起始时间 */ |
| | | beginTime?: string; |
| | | /** 服务截止时间 */ |
| | | endTime?: string; |
| | | /** 服务地址(省市区+详细地址+门牌号) */ |
| | | addressDetail?: string; |
| | | /** 服务机构 */ |
| | | supplierEnterpriseName?: string; |
| | | /** 服务人员 */ |
| | | serverNames?: string[]; |
| | | appointmentStatus?: EnumStandardOrderAppointmentStatus; |
| | | } |
| | | |
| | | interface GetStandardOrderPaysQuery { |
| | | payStatus?: EnumStandardOrderPayStatus; |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | | interface GetStandardOrderPaysQueryResult { |
| | | pageModel?: PagedListQueryResultPageModel; |
| | | /** 数据 */ |
| | | data?: GetStandardOrderPaysQueryResultItem[]; |
| | | } |
| | | |
| | | interface GetStandardOrderPaysQueryResultItem { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | /** 服务名称 */ |
| | | serviceName?: string; |
| | | /** 实付金额 */ |
| | | payAmount?: number; |
| | | /** 服务起始时间 */ |
| | | beginTime?: string; |
| | | /** 服务截止时间 */ |
| | | endTime?: string; |
| | | /** 服务地址(省市区+详细地址+门牌号) */ |
| | | addressDetail?: string; |
| | | /** 服务机构 */ |
| | | supplierEnterpriseName?: string; |
| | | /** 服务人员 */ |
| | | serverNames?: string[]; |
| | | payStatus?: EnumStandardOrderPayStatus; |
| | | } |
| | | |
| | | interface GetStandardOrderQueryResult { |
| | | /** 订单Id */ |
| | | id?: string; |
| | |
| | | serviceId?: string; |
| | | /** 服务名 */ |
| | | serviceName?: string; |
| | | /** 服务单号 */ |
| | | serviceCode?: string; |
| | | /** 服务图片 */ |
| | | serviceFile?: string; |
| | | /** 下单用户Id */ |
| | | createdUserId?: string; |
| | | /** 下单用户 */ |
| | | createdUserName?: string; |
| | | /** 联系电话 */ |
| | | createdUserContactPhoneNumber?: string; |
| | | /** 下单时间 */ |
| | | createdTime?: string; |
| | | /** 甲方企业Id */ |
| | | partyAEnterpriseId?: string; |
| | | /** 甲方企业 */ |
| | |
| | | name?: string; |
| | | /** 联系电话 */ |
| | | contactPhoneNumber?: string; |
| | | /** 省份编号 */ |
| | | provinceCode?: string; |
| | | /** 省份 */ |
| | | provinceContent?: string; |
| | | /** 城市编号 */ |
| | | cityCode?: string; |
| | | /** 城市 */ |
| | | cityContent?: string; |
| | | /** 区编号 */ |
| | | areaCode?: string; |
| | | /** 区 */ |
| | | areaContent?: string; |
| | | /** 详细地址 */ |
| | | addressName?: string; |
| | | /** 门牌号 */ |
| | | addressDetail?: string; |
| | | /** 经度 */ |
| | |
| | | supplierEnterpriseId?: string; |
| | | /** 供应商 */ |
| | | supplierEnterpriseName?: string; |
| | | /** 服务人员Id */ |
| | | serverId?: string; |
| | | /** 服务人员姓名 */ |
| | | serverName?: string; |
| | | /** 服务人员 */ |
| | | serverNames?: string; |
| | | /** 服务人员联系电话 */ |
| | | serverContactPhoneNumber?: string; |
| | | serverContactPhoneNumbers?: string; |
| | | /** 服务人员 */ |
| | | servers?: GetStandardOrderQueryResultServer[]; |
| | | /** 备注 */ |
| | | remark?: string; |
| | | payAccess?: EnumUserBankCardAccess; |
| | |
| | | payAmount?: number; |
| | | /** 支付时间 */ |
| | | payTime?: string; |
| | | /** 支付完成时间 */ |
| | | payCompletedTime?: string; |
| | | settlementStatus?: EnumStandardOrderSettlementStatus; |
| | | serviceFeeCollectType?: EnumEnterpriseCooperationServiceFeeCollectType; |
| | | /** 服务费 */ |
| | |
| | | receiveAmount?: number; |
| | | /** 结算金额 */ |
| | | settlementAmount?: number; |
| | | taskCheckReceiveStatus?: EnumTaskCheckReceiveStatus; |
| | | partAEnterpriseOrderStatus?: EnumGetStandardOrdersQueryPartAEnterpriseOrderStatus; |
| | | supplierEnterpriseOrderStatus?: EnumGetStandardOrdersQuerySupplierEnterpriseOrderStatus; |
| | | } |
| | | |
| | | interface GetStandardOrderSettlementsQuery { |
| | | /** 关键字(订单号/服务名/供应商) */ |
| | | keywords?: string; |
| | | settlementStatus?: EnumStandardOrderSettlementStatus; |
| | | pageModel?: PagedListQueryPageModel; |
| | | interface GetStandardOrderQueryResultServer { |
| | | /** Id */ |
| | | id?: string; |
| | | /** 姓名 */ |
| | | name?: string; |
| | | /** 联系电话 */ |
| | | contactPhoneNumber?: string; |
| | | } |
| | | |
| | | interface GetStandardOrderSettlementsQueryResult { |
| | | pageModel?: PagedListQueryResultPageModel; |
| | | /** 数据 */ |
| | | data?: GetStandardOrderSettlementsQueryResultItem[]; |
| | | } |
| | | |
| | | interface GetStandardOrderSettlementsQueryResultItem { |
| | | interface GetStandardOrderSettlementQueryResult { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | /** 订单号 */ |
| | | code?: string; |
| | | /** 服务名称 */ |
| | | serviceName?: string; |
| | | /** 服务单号 */ |
| | | serviceCode?: string; |
| | | /** 甲方企业Id */ |
| | | partyAEnterpriseId?: string; |
| | | /** 甲方企业 */ |
| | | partyAEnterpriseName?: string; |
| | | /** 服务地址(省市区+详细地址+门牌号) */ |
| | | addressDetail?: string; |
| | | /** 服务机构 */ |
| | | supplierEnterpriseName?: string; |
| | | /** 服务人员 */ |
| | | serverNames?: string[]; |
| | | /** 实付金额 */ |
| | | payAmount?: number; |
| | | /** 实收金额 */ |
| | | receiveAmount?: number; |
| | | /** 服务费 */ |
| | | serviceFee?: number; |
| | | /** 结算金额 */ |
| | | settlementAmount?: number; |
| | | /** 结算单号 */ |
| | | settlementCode?: string; |
| | | /** 付款人账户 */ |
| | | payerAccount?: string; |
| | | /** 付款人名称 */ |
| | | payerName?: string; |
| | | /** 付款人开户行 */ |
| | | payerBank?: string; |
| | | /** 付款人支行 */ |
| | | payerBankBranch?: string; |
| | | /** 收款人姓名 */ |
| | | receiveName?: string; |
| | | /** 收款账户 */ |
| | | receiveAccount?: string; |
| | | /** 收款人开户行 */ |
| | | receiveBank?: string; |
| | | /** 收款人支行 */ |
| | | receiveBankBranch?: string; |
| | | /** 币种 */ |
| | | currency?: string; |
| | | /** 币种 */ |
| | | currencyName?: string; |
| | | settlementStatus?: EnumStandardOrderSettlementStatus; |
| | | /** 结算时间 */ |
| | | settlementTime?: string; |
| | | /** 服务起始时间 */ |
| | | beginTime?: string; |
| | | /** 服务截止时间 */ |
| | | endTime?: string; |
| | | /** 结算金额 */ |
| | | settlementAmount?: number; |
| | | /** 电子收据下载链接 */ |
| | | ereceiptDownloadOssUrl?: string; |
| | | } |
| | | |
| | | interface GetStandardOrdersQuery { |
| | | scene?: EnumGetStandardOrdersQueryScene; |
| | | /** 关键字(订单号/服务名) */ |
| | | keywords?: string; |
| | | /** 下单时间-起始 */ |
| | |
| | | payTimeEnd?: string; |
| | | appointmentStatus?: EnumStandardOrderAppointmentStatus; |
| | | payStatus?: EnumStandardOrderPayStatus; |
| | | partAEnterpriseOrderStatus?: EnumGetStandardOrdersQueryPartAEnterpriseOrderStatus; |
| | | supplierEnterpriseOrderStatus?: EnumGetStandardOrdersQuerySupplierEnterpriseOrderStatus; |
| | | settlementStatus?: EnumStandardOrderSettlementStatus; |
| | | taskCheckReceiveStatus?: EnumTaskCheckReceiveStatus; |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | |
| | | serviceName?: string; |
| | | /** 服务单号 */ |
| | | serviceCode?: string; |
| | | /** 服务图片 */ |
| | | serviceFile?: string; |
| | | /** 省市区+详细地址+门牌号 */ |
| | | addressDetail?: string; |
| | | /** 服务起始时间 */ |
| | | beginTime?: string; |
| | | /** 服务截止时间 */ |
| | | endTime?: string; |
| | | /** 下单用户Id */ |
| | | createdUserId?: string; |
| | | /** 下单用户 */ |
| | | createdUserName?: string; |
| | | /** 联系电话 */ |
| | | createdUserContactPhoneNumber?: string; |
| | | /** 下单时间 */ |
| | | createdTime?: string; |
| | | /** 支付时间 */ |
| | | payTime?: string; |
| | | appointmentStatus?: EnumStandardOrderAppointmentStatus; |
| | | payStatus?: EnumStandardOrderPayStatus; |
| | | settlementStatus?: EnumStandardOrderSettlementStatus; |
| | | /** 甲方企业Id */ |
| | | partyAEnterpriseId?: string; |
| | | /** 甲方企业 */ |
| | | partyAEnterpriseName?: string; |
| | | /** 联系电话 */ |
| | | contactPhoneNumber?: string; |
| | | /** 供应商Id */ |
| | | supplierEnterpriseId?: string; |
| | | /** 供应商 */ |
| | | supplierEnterpriseName?: string; |
| | | /** 服务人员 */ |
| | | serverNames?: string; |
| | | /** 服务人员联系电话 */ |
| | | serverContactPhoneNumbers?: string; |
| | | payStatus?: EnumStandardOrderPayStatus; |
| | | /** 支付完成时间 */ |
| | | payCompletedTime?: string; |
| | | /** 实付金额 */ |
| | | payAmount?: number; |
| | | /** 实收金额 */ |
| | | receiveAmount?: number; |
| | | serviceFeeCollectType?: EnumEnterpriseCooperationServiceFeeCollectType; |
| | | /** 服务费 */ |
| | | serviceFee?: number; |
| | | settlementStatus?: EnumStandardOrderSettlementStatus; |
| | | /** 结算单号 */ |
| | | settlementCode?: string; |
| | | /** 结算时间 */ |
| | | settlementTime?: string; |
| | | /** 结算金额 */ |
| | | settlementAmount?: number; |
| | | partAEnterpriseOrderStatus?: EnumGetStandardOrdersQueryPartAEnterpriseOrderStatus; |
| | | supplierEnterpriseOrderStatus?: EnumGetStandardOrdersQuerySupplierEnterpriseOrderStatus; |
| | | } |
| | | |
| | | interface GetStandardServiceCommentsQuery { |
| | |
| | | file?: string; |
| | | /** 行业类别 */ |
| | | industryCategoryContent?: string; |
| | | /** 岗位编号 */ |
| | | jobCode?: string; |
| | | /** 岗位 */ |
| | | jobContent?: string; |
| | | /** 服务名 */ |
| | |
| | | recommendStatus?: EnumStandardServiceRecommendStatus; |
| | | /** 是否收藏 */ |
| | | isCollection?: boolean; |
| | | /** 收藏时间 */ |
| | | collectionTime?: string; |
| | | /** 创建时间 */ |
| | | createdTime?: string; |
| | | /** 供应商数量 */ |
| | |
| | | signStatus?: EnumEnterpriseCooperationSignStatus; |
| | | } |
| | | |
| | | interface GetSureStandardOrderQueryResult { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | /** 验收完成时间 */ |
| | | checkReceiveTime?: string; |
| | | /** 附件 */ |
| | | files?: string[]; |
| | | /** 备注 */ |
| | | remark?: string; |
| | | } |
| | | |
| | | interface GetTaskEnterpriseQueryResult { |
| | | /** 企业全称 */ |
| | | enterpriseName?: string; |
| | |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | | interface GetWaitArrangeTasksQuery { |
| | | /** 灵工Id */ |
| | | enterpriseEmployeeId?: string; |
| | | /** 关键字(任务名、任务单号) */ |
| | | keywords?: string; |
| | | pageModel?: PagedListQueryPageModel; |
| | | } |
| | | |
| | | interface GetWaitArrangeTasksQueryResult { |
| | | pageModel?: PagedListQueryResultPageModel; |
| | | /** 数据 */ |
| | | data?: GetWaitArrangeTasksQueryResultItem[]; |
| | | } |
| | | |
| | | interface GetWaitArrangeTasksQueryResultItem { |
| | | /** Id */ |
| | | id?: string; |
| | | /** 任务名称 */ |
| | | name?: string; |
| | | /** 任务单号 */ |
| | | code?: string; |
| | | /** 发单客户Id */ |
| | | enterpriseId?: string; |
| | | /** 发单客户 */ |
| | | enterpriseName?: string; |
| | | /** 任务开始时间 */ |
| | | beginTime?: string; |
| | | /** 任务结束时间 */ |
| | | endTime?: string; |
| | | } |
| | | |
| | | type GetWxmpSettingsQuery = Record<string, any>; |
| | | |
| | | interface GetWxmpSettingsQueryResult { |
| | | /** 隐藏支付宝 */ |
| | | hiddenAlipay?: boolean; |
| | | /** 微信审核中 */ |
| | | wxmpAuditInProcess?: boolean; |
| | | } |
| | | |
| | | interface HistoryQueryResult { |
| | |
| | | id?: string; |
| | | } |
| | | |
| | | interface SaveOperationUserCommand { |
| | | /** 姓名 */ |
| | | name?: string; |
| | | /** 用户名 */ |
| | | userName: string; |
| | | /** 手机号 */ |
| | | phoneNumber?: string; |
| | | /** 密码 */ |
| | | password?: string; |
| | | status?: EnumUserStatus; |
| | | /** 备注 */ |
| | | remark?: string; |
| | | /** Id */ |
| | | id?: string; |
| | | } |
| | | |
| | | interface SavePartyAEnterpriseCommand { |
| | | /** Id */ |
| | | id?: string; |
| | |
| | | Refunded = 20, |
| | | } |
| | | |
| | | interface SettlementStandardOrderCommand { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | } |
| | | |
| | | interface SetUserInfoRolesCommand { |
| | | /** 用户Id */ |
| | | userInfoId?: string; |
| | |
| | | interface SureStandardOrderCommand { |
| | | /** 订单Id */ |
| | | id?: string; |
| | | /** 评分 */ |
| | | commentStar?: number; |
| | | /** 评价 */ |
| | | commentContent?: string; |
| | | /** 预约订单完成备注 */ |
| | | appointmentCompletedRemark?: string; |
| | | } |
| | | |
| | | interface SureTaskSettlementCommand { |