Files
Web_CRICS_Server_VS2010_Prod/WebSite/Models/Temp.cs
2025-12-11 09:17:16 +08:00

25 lines
858 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebSite.Models
{
public class Temp
{
//{"ID":"1","RoomNumber":"1001","RoomTypeID":"2",
//"XiaoDuCUID":"f8815d71ff58b0f8b8ab1bbafe57cc61","TianMaoCUID":"",
//"TCLCUID":"","HuaWeiCUID":"","RokidWebhookUrl":"",
//"WStarttime":"14:45","WEndtime":"14:45"}
public int ID { get; set; }
public string RoomNumber { get; set; }
public int RoomTypeID{ get; set; }
public string XiaoDuCUID{ get; set; }
public string TianMaoCUID{ get; set; }
public string TCLCUID{ get; set; }
public string HuaWeiCUID{ get; set; }
public string RokidWebhookUrl{ get; set; }
public string WStarttime{ get; set; }
public string WEndtime{ get; set; }
}
}