GET api/v1/SelfCheckin/GetUnlicenCheckInConfig?hotelId={hotelId}

获取无证入住配置项

请求信息(Request)

URI 参数

名称描述类型备注
hotelId

酒店id

integer

Required

Body 参数

None.

响应信息(Response)

资源描述

RequestResultOfUnlicenCheckInConfigDTO
名称描述类型备注
Data

UnlicenCheckInConfigDTO

None.

Status

状态(0:成功,1:失败)

integer

None.

Message

导致失败的相关消息

string

None.

Total

集合总数,用于分页时使用

integer

None.

响应格式

application/json, text/json

Sample:
{
  "Data": {
    "ID": 1,
    "AppId": "sample string 2",
    "AppName": "sample string 3",
    "QrCodeUrl": "sample string 4",
    "HotelId": 5,
    "Created": "2025-05-04T17:58:31.9184591+08:00",
    "Updated": "2025-05-04T17:58:31.9184591+08:00",
    "Name": "sample string 8",
    "IsCancel": true
  },
  "Status": 1,
  "Message": "sample string 2",
  "Total": 3
}

application/xml, text/xml

Sample:
<RequestResultOfUnlicenCheckInConfigDTO6NgmDdgv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application">
  <Message>sample string 2</Message>
  <Status>1</Status>
  <Total>3</Total>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/WLife.Application.DTOs">
    <d2p1:AppId>sample string 2</d2p1:AppId>
    <d2p1:AppName>sample string 3</d2p1:AppName>
    <d2p1:Created>2025-05-04T17:58:31.9184591+08:00</d2p1:Created>
    <d2p1:HotelId>5</d2p1:HotelId>
    <d2p1:ID>1</d2p1:ID>
    <d2p1:IsCancel>true</d2p1:IsCancel>
    <d2p1:Name>sample string 8</d2p1:Name>
    <d2p1:QrCodeUrl>sample string 4</d2p1:QrCodeUrl>
    <d2p1:Updated>2025-05-04T17:58:31.9184591+08:00</d2p1:Updated>
  </Data>
</RequestResultOfUnlicenCheckInConfigDTO6NgmDdgv>