| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Domain
- {
- /// <summary>
- /// 节假日记录表
- /// </summary>
- [Comment("节假日记录表")]
- public class HolidayMaster
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 日期
- /// </summary>
- [Comment("日期")]
- public DateTime? Dated { get; set; }
- /// <summary>
- /// 节假日描述
- /// </summary>
- [Comment("节假日描述")]
- public string Holiday { get; set; }
- /// <summary>
- /// 节假日类型:休假(不计算产能);调班(计算产能)
- /// </summary>
- [Comment("节假日类型")]
- public string Ufld1 { get; set; }
- /// <summary>
- /// 是否有效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- }
- }
|