songjun
2024-09-05 a3302fda10ff21ed3700be462ad560163ca13f14
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//------------------------------------------------------------------------------
// <auto-generated>
//     此代码已从模板生成。
//
//     手动更改此文件可能导致应用程序出现意外的行为。
//     如果重新生成代码,将覆盖对此文件的手动更改。
// </auto-generated>
//------------------------------------------------------------------------------
 
namespace sbcLabSystem.Import
{
    using System;
    using System.Collections.Generic;
    
    public partial class UserRequestInfoes
    {
        public UserRequestInfoes()
        {
            this.QCDistributionRegisterInfoes = new HashSet<QCDistributionRegisterInfoes>();
        }
    
        public int Id { get; set; }
        public string CompanyName { get; set; }
        public string LabName { get; set; }
        public string Address { get; set; }
        public string Province { get; set; }
        public string City { get; set; }
        public string District { get; set; }
        public string PostCode { get; set; }
        public string ManagerName { get; set; }
        public string ManagerPhone { get; set; }
        public string ManagerFax { get; set; }
        public string ManagerMobile { get; set; }
        public string ManagerEmail { get; set; }
        public string OperatorName { get; set; }
        public string OperatorPhone { get; set; }
        public string OperatorFax { get; set; }
        public string OperatorMobile { get; set; }
        public string OperatorEmail { get; set; }
        public int ProjectId { get; set; }
        public System.DateTime RequestTime { get; set; }
        public System.DateTime UpdateTime { get; set; }
        public int State { get; set; }
        public string LabCode { get; set; }
        public string LabLoginName { get; set; }
        public string LabPassword { get; set; }
        public string Remarks { get; set; }
    
        public virtual ICollection<QCDistributionRegisterInfoes> QCDistributionRegisterInfoes { get; set; }
    }
}