1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class Gy_ClassTimePrjSub
    {
        public long HInterID { get; set; }
        public long HEntryID { get; set; }
       
        public string HName { get; set; }
        public string HNumber { get; set; }
        public string  HYear { get; set; }
        public decimal HPeriod { get; set; }
        public decimal HSumMoney { get; set; }
        public string HSumWorkTimes { get; set; }
        public decimal HOldRate { get; set; }
        public string HDayRate { get; set; }
        public string HRate { get; set; }
        public string HMaker { get; set; }
        public DateTime HMakeDate { get; set; }
 
        public string HChecker { get; set; }
        public DateTime HCheckDate { get; set; }
        public string HUseFlag { get; set; }
 
 
    }
}