初始化
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace BLV_API.Models
|
||||
{
|
||||
public class CRICSEntity
|
||||
{
|
||||
public class Request
|
||||
{
|
||||
/// <summary>
|
||||
/// 客控后台酒店编码
|
||||
/// </summary>
|
||||
public string HotelCode { get; set; }
|
||||
/// <summary>
|
||||
/// 房号
|
||||
/// </summary>
|
||||
public string RoomNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 设置房态:2出租,4待租,8退房,16空房
|
||||
/// </summary>
|
||||
public int RoomStatusID { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public class Response
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否成功
|
||||
/// </summary>
|
||||
public bool IsSuccess { get; set; }
|
||||
/// <summary>
|
||||
/// 结果信息
|
||||
/// </summary>
|
||||
public string Result { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user