GET dz_api/BossH5/GetIcServiceDetails?serviceId={serviceId}

获得工商服务详情

Request Information

URI Parameters

NameDescriptionTypeAdditional information
serviceId

integer

Required

Body Parameters

None.

Response Information

Resource Description

获得工商服务详情

GetIcServiceDetailsResult
NameDescriptionTypeAdditional information
ServiceId

服务ID

integer

None.

CustId

客户ID

integer

None.

FinishedDate

服务完成时间

date

None.

SignedDate

签订日期

date

None.

EndDate

服务截至日期

date

None.

ElapsedDays

已花费时间

integer

None.

Progress

服务进度

ServiceProgressEnums

None.

IcManager

客户经理(工商)

string

None.

Executor

执行人

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ServiceId": 1,
  "CustId": 2,
  "FinishedDate": "2024-04-29T01:23:26.9305436+08:00",
  "SignedDate": "2024-04-29T01:23:26.9305436+08:00",
  "EndDate": "2024-04-29T01:23:26.9305436+08:00",
  "ElapsedDays": 0,
  "Progress": 1020,
  "IcManager": "sample string 6",
  "Executor": "sample string 7"
}

application/xml, text/xml

Sample:
<GetIcServiceDetailsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.BossH5.Models">
  <CustId>2</CustId>
  <EndDate>2024-04-29T01:23:26.9305436+08:00</EndDate>
  <Executor>sample string 7</Executor>
  <FinishedDate>2024-04-29T01:23:26.9305436+08:00</FinishedDate>
  <IcManager>sample string 6</IcManager>
  <ServiceId>1</ServiceId>
  <SignedDate>2024-04-29T01:23:26.9305436+08:00</SignedDate>
</GetIcServiceDetailsResult>