12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.System
- {
-
-
-
- [SugarTable("Sys_Calendar")]
- public class Sys_Calendar : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Dt { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "bit")]
- public bool IsWorkDay { get; set; }
-
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "bit)")]
- public bool IsHoliDay { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string HoliName { get; set; }
- }
- }
|