using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity { [Table("t_holiday_calendar")] public class HolidayCalendar { [Key] public int Id { get; set; } public bool Holiday { get; set; } public string Date { get; set; } public string Title { get; set; } } }