初始化CRICS

This commit is contained in:
2025-12-11 09:17:16 +08:00
commit 83247ec0a2
2735 changed files with 787765 additions and 0 deletions

26
Domain/LieECO.cs Normal file
View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Domain
{
/// <summary>
/// </summary>
public class LieECO
{
public virtual int ID { get; set; }
public virtual string StartTime { get; set; }
public virtual string EndTime { get; set; }
public virtual bool AbsEnable { get; set; }
public virtual int AbsValue { get; set; }
public virtual bool RelativeEnable { get; set; }
public virtual int RelativeValue { get; set; }
public virtual bool IsEnable { get; set; }
public virtual int DelayTime{get;set;}
public virtual string HotelCode { get; set; }
public virtual int HotelID { get; set; }
public virtual DateTime CreateTime { get; set; }
}
}