Files
Web_CRICS_Server_VS2010_Prod/Domain/ECO_Setting.cs
2025-12-11 09:17:16 +08:00

26 lines
863 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Domain
{
/// <summary>
/// 它的名字虽然是KongTiao ,但是只要有 定期延时的任务,都可以用它来 延期执行,时间不限
/// 比如 5天50天100天等
/// </summary>
public class ECO_Setting
{
public virtual int ID { get; set; }
public virtual int HostID { get; set; }
public virtual int HotelID { get; set; }
public virtual string RoomNo { get; set; }
public virtual string StartTime { get; set; }
public virtual string EndTime { get; set; }
public virtual string AddOrCutDown { get; set; }
public virtual int ActValue { get; set; }
public virtual string CreateTime { get; set; }
public virtual bool IsEnable { get; set; }
}
}