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; }
|
|
}
|
}
|