ComplianceServer/code/Hg.Core.Entity/HolidayCalendar.cs

22 lines
406 B
C#

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; }
}
}