123456789101112131415161718192021222324252627 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmHoliday
- {
- public int SiteId { get; set; }
- public short HolidayMonth { get; set; }
- public short HolidayDay { get; set; }
- public bool IsLunar { get; set; }
- public string Name { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual CmSite CmSite { get; set; }
- public virtual CmSite CmSite1 { get; set; }
- }
- }
|