POST api/DingDingProgram/GetDailyCheckRecordDetail

查询点检记录详情

Request Information

URI Parameters

None.

Body Parameters

GetDailyCheckRecordDetailInput
NameDescriptionTypeAdditional information
id

数据主键id

integer

None.

userID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "userID": "sample string 2"
}

application/xml, text/xml

Sample:
<GetDailyCheckRecordDetailInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.DingDingModels">
  <userID>sample string 2</userID>
  <id>1</id>
</GetDailyCheckRecordDetailInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GetDailyCheckRecordDetailInput'.

Response Information

Resource Description

GetDailyCheckRecordDetailDto
NameDescriptionTypeAdditional information
result

接口调用结果

boolean

None.

msg

接口返回信息

string

None.

data

查询结果

DailyCheckRecordDetailDto

None.

Response Formats

application/json, text/json

Sample:
{
  "result": true,
  "msg": "sample string 2",
  "data": {
    "id": 1,
    "pcode": "sample string 2",
    "code": "sample string 3",
    "ptitle": "sample string 4",
    "title": "sample string 5",
    "check_type": "sample string 6",
    "start_time": "2024-11-25T17:48:46.8867575+08:00",
    "end_time": "2024-11-25T17:48:46.8867575+08:00",
    "is_check": 9,
    "check_remark": "sample string 10",
    "check_pic": "sample string 11",
    "check_video": "sample string 12",
    "emp_id": 13,
    "emp_code": "sample string 14",
    "item_type": 15,
    "real_emp_code": "sample string 16",
    "check_date": "sample string 17",
    "time_start": "sample string 18",
    "time_end": "sample string 19",
    "d_id": 20,
    "d_name": "sample string 21",
    "emp_name": "sample string 22",
    "to_emp_id": 1,
    "to_emp": "sample string 23",
    "from_emp_id": 1,
    "from_emp": "sample string 24",
    "item_standard": "sample string 25",
    "is_pic": 1,
    "is_pass_check": 1,
    "pass_reason": "sample string 26",
    "pass_man": "sample string 27",
    "pass_date": "2024-11-25T17:48:46.8887106+08:00",
    "pass_check_pic": "sample string 28",
    "pass_check_video": "sample string 29",
    "check_time": "2024-11-25T17:48:46.8887106+08:00",
    "demo_img": "sample string 30"
  }
}

application/xml, text/xml

Sample:
<GetDailyCheckRecordDetailDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.DingDingModels">
  <data>
    <check_date>sample string 17</check_date>
    <check_pic>sample string 11</check_pic>
    <check_remark>sample string 10</check_remark>
    <check_time>2024-11-25T17:48:46.8887106+08:00</check_time>
    <check_type>sample string 6</check_type>
    <check_video>sample string 12</check_video>
    <code>sample string 3</code>
    <d_id>20</d_id>
    <d_name>sample string 21</d_name>
    <demo_img>sample string 30</demo_img>
    <emp_code>sample string 14</emp_code>
    <emp_id>13</emp_id>
    <emp_name>sample string 22</emp_name>
    <end_time>2024-11-25T17:48:46.8867575+08:00</end_time>
    <from_emp>sample string 24</from_emp>
    <from_emp_id>1</from_emp_id>
    <id>1</id>
    <is_check>9</is_check>
    <is_pass_check>1</is_pass_check>
    <is_pic>1</is_pic>
    <item_standard>sample string 25</item_standard>
    <item_type>15</item_type>
    <pass_check_pic>sample string 28</pass_check_pic>
    <pass_check_video>sample string 29</pass_check_video>
    <pass_date>2024-11-25T17:48:46.8887106+08:00</pass_date>
    <pass_man>sample string 27</pass_man>
    <pass_reason>sample string 26</pass_reason>
    <pcode>sample string 2</pcode>
    <ptitle>sample string 4</ptitle>
    <real_emp_code>sample string 16</real_emp_code>
    <start_time>2024-11-25T17:48:46.8867575+08:00</start_time>
    <time_end>sample string 19</time_end>
    <time_start>sample string 18</time_start>
    <title>sample string 5</title>
    <to_emp>sample string 23</to_emp>
    <to_emp_id>1</to_emp_id>
  </data>
  <msg>sample string 2</msg>
  <result>true</result>
</GetDailyCheckRecordDetailDto>