|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <20><><EFBFBD>صǼǺ<C7BC>
|
|
|
|
|
/// </summary>
|
|
|
|
|
[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;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///<2F><><EFBFBD>ﱨ<EFBFBD>ع<EFBFBD><D8B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD><D2B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int AliCompanyId { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|