Files
2025-12-11 09:17:16 +08:00

23 lines
696 B
C#
Raw Permalink 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_Detail
{
public virtual int ID { get; set; }
public virtual int HotelID { get; set; }
public virtual int HostID { get; set; }
public virtual string RoomNo { get; set; }
public virtual string TriggerTime { get; set; }
public virtual int ECO_ID { get; set; }
public virtual bool IsTrigger { get; set; }
}
}