liaoxujun@qq.com
2023-07-26 5df5f2c3fe7d185b2e0442296b083370503724f5
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
using DocumentServiceAPI.Enum;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DocumentServiceAPI.Model.User
{
 
    /// <summary>
    /// 单位信息
    /// </summary>
    [SugarTable(TableDescription = "单位信息")]
    public class UnitInfo : BaseModel
    {
 
        [DisplayName("单位ID")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }
        [DisplayName("单位名称")]
        [SugarColumn(Length = 200)]
        public string UnitName { get; set; }
        [DisplayName("单位类型")]
        public string UnitType { get; set; }
        [DisplayName("地址")]
        public string Address { get; set; }
        [DisplayName("邮政编码")]
        public string ZipCode { get; set; }
        [DisplayName("联系人")]
        public string ContactPerson { get; set; }
        [DisplayName("联系电话")]
        public string ContactPhone { get; set; }
        [DisplayName("网址")]
        public string WebUrl { get; set; }
        [DisplayName("组织结构")]
        public string OrgStructure { get; set; }
        [DisplayName("法人代表")]
        public string Corporater { get; set; }
        [DisplayName("法人代表职务")]
        public string CorporaterPost { get; set; }
        [DisplayName("法人代表技术职务")]
        public string CorporaterTechnicalPost { get; set; }
        [DisplayName("法人代表电话")]
        public string CorporatePhone { get; set; }
        [DisplayName("技术负责人")]
        public string TechnicalLeader { get; set; }
        [DisplayName("技术负责人职务")]
        public string TechnicalPost { get; set; }
        [DisplayName("技术负责人电话")]
        public string TechnicalPhone { get; set; }
        [DisplayName("员工数量")]
        public string StaffCount { get; set; }
        [DisplayName("企业资质等级")]
        public string FirmQualificationLevel { get; set; }
        [DisplayName("营业执照")]
        public string BusinessLicense { get; set; }
        [DisplayName("注册资金")]
        public string RegMoney { get; set; }
        [DisplayName("开户行")]
        public string OpenBank { get; set; }
        [DisplayName("银行账号")]
        public string BankNum { get; set; }
        [DisplayName("项目经理")]
        public string ProjectManager { get; set; }
        [DisplayName("高级员工")]
        public string SeniorStaff { get; set; }
        [DisplayName("中级员工")]
        public string MiddleStaff { get; set; }
        [DisplayName("初级员工")]
        public string PrimaryStaff { get; set; }
        [DisplayName("机械工")]
        public string Mechanicer { get; set; }
        [DisplayName("业务内容")]
        public string BusinessContent { get; set; }
        [DisplayName("备注")]
        public string Remark { get; set; }
        [DisplayName("单位Logo")]
        public string UnitLogo { get; set; }
        [DisplayName("单位Logo版本号")]
        public string UnitLogoVersionNo { get; set; }
        [DisplayName("单位Logo大小")]
        public int? UnitLogoSize { get; set; }
        [DisplayName("身份证正面")]
        public string CardPositive { get; set; }
        [DisplayName("身份证正面版本号")]
        public string CardPositiveVersionNo { get; set; }
        [DisplayName("身份证正面大小")]
        public int? CardPositiveSize { get; set; }
        [DisplayName("是否使用")]
        public int? IsUsed { get; set; }
 
        [DisplayName("建议标志")]
 
        public int? AdviseFlag { get; set; }
 
    }
}