yangle
2022-11-21 ff1d21b0cff4b0920cefcd4c40da3956793a4a7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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; }
    }
}