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

27 lines
917 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 KongTiaoTimer
{
public virtual int ID { get; set; }
public virtual int HotelID { get; set; }
public virtual string HotelCode { get; set; }
public virtual int HostID { get; set; }
public virtual string RoomNo { get; set; }
public virtual string MissonKey { get; set; }
public virtual int IsCancel { get; set; }
public virtual string StartTime { get; set; }
public virtual string EndTime { get; set; }
public virtual string CreateTime { get; set; }
public virtual string CreateDate { get; set; }
}
}