using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { public class WorkDay { public long HItemID { get; set; } //主键 public DateTime HDate { get; set; } public DateTime HWorkBegin { get; set; } public DateTime HWorkEnd { get; set; } public DateTime HNoonbreakBegin { get; set; } public DateTime HNoonbreakEnd { get; set; } public DateTime HNightbreakBegin { get; set; } public DateTime HNightbreakEnd { get; set; } public DateTime HNoonbreakBegin2 { get; set; } public DateTime HNoonbreakEnd2 { get; set; } public DateTime HNightbreakBegin2 { get; set; } public DateTime HNightbreakEnd2 { get; set; } } }