You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.4 KiB
C#
81 lines
2.4 KiB
C#
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>
|
|
/// º£¹ØµÇ¼ÇºÅ
|
|
/// </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>
|
|
///°¢Àﱨ¹Ø¹ØÁªµÄÆóÒµ±¨¹ØÐÐID
|
|
/// </summary>
|
|
public int AliCompanyId { get; set; }
|
|
|
|
}
|
|
|
|
}
|