初始化

This commit is contained in:
2025-11-20 14:38:48 +08:00
commit f9e0cc8a4a
534 changed files with 247694 additions and 0 deletions

View File

@@ -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; }
}
}
}