using FreeSql.DatabaseModel;using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace djy.Model {
[JsonObject(MemberSerialization.OptIn), Table(Name = "company_new", DisableSyncStructure = true)]
public partial class CompanyNew {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true)]
public string CompId { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(500)")]
public string Address { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(60)")]
public string AdminShowName { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(36)")]
public string AdminUser { get; set; } = string.Empty;
[JsonProperty]
public int AlertMinValue { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string AuditStatus { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(200)")]
public string AuditText { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(40)")]
public string BankAccount { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(200)")]
public string BankName { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(100)")]
public string CompName { get; set; } = string.Empty;
///
/// 海关登记号
///
[JsonProperty, Column(DbType = "nvarchar(50)")]
public string CustomsCode { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(100)")]
public string EmailShowName { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(20)")]
public string InvoiceApi { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(20)")]
public string InvoiceSystem { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(100)")]
public string LicenceImage { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(100)")]
public string SourceName { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(100)")]
public string TaxCode { get; set; } = string.Empty;
[JsonProperty, Column(DbType = "varchar(50)")]
public string Tel { get; set; } = string.Empty;
///
///阿里报关关联的企业报关行ID
///
public int AliCompanyId { get; set; }
}
}