wtt
2026-01-23 a0247dce6c114705cecebcc61d7c1cb1f20ef28f
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Model
{
    public class ClsGy_AssistantDataEntry
    {
        public string HID { get; set; }
        public string HEntryID { get; set; }
        public string HNumber { get; set; }
        public string HName { get; set; }
        public bool HStopflag { get; set; }
        public string HRemark { get; set; }
        public DateTime HMakeTime { get; set; }
        public string HMakeEmp { get; set; }
        public DateTime? HCheckTime { get; set; }
        public string HCheckEmp { get; set; }
        public DateTime? HModifyTime { get; set; }
        public string HModifyEmp { get; set; }
        public int HLOCALEID { get; set; }
        public int HUSEORGID { get; set; }
        public int HCREATEORGID { get; set; }
    }
}