using System; using System.Linq; using System.Text; using SqlSugar; namespace DocumentServiceAPI.Model.cyDocumentModel { /// /// /// [SugarTable("Document_TenderUnit")] public partial class Document_TenderUnit { public Document_TenderUnit(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int UnitId {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public string UnitName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string UnitType {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Address {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ZipCode {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ContactPerson {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ContactPhone {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Fax {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string WebUrl {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string OrgStructure {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Corporater {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CorporaterPost {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CorporaterTechnicalPost {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CorporatePhone {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string TechnicalLeader {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string TechnicalPost {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string TechnicalPhone {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CreatTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string StaffCount {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string FirmQualificationLevel {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BusinessLicense {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string RegMoney {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string OpenBank {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BankNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ProjectManager {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string SeniorStaff {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string MiddleStaff {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PrimaryStaff {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Mechanicer {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BusinessContent {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string UnitLogo {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string UnitLogoVersionNo {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? UnitLogoSize {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CardPositive {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CardPositiveVersionNo {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? CardPositiveSize {get;set;} /// /// Desc: /// Default:1 /// Nullable:True /// public int? IsUsed {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LastUpdateName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? AdviseFlag {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? UserId {get;set;} } }