You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
312 lines
8.2 KiB
312 lines
8.2 KiB
1 year ago
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using ChangkeTec.SDMS.Model.Base;
|
||
|
using ChangkeTec.SDMS.Model.Enums;
|
||
|
|
||
|
namespace ChangkeTec.SDMS.Model.ExchangeCenterTables
|
||
|
{
|
||
|
[Description("��Ӧ�̱�")]
|
||
|
public class TES_SUPPLIER : ITaskTable
|
||
|
{
|
||
|
[Description("��Ӧ�̴���")]
|
||
|
[StringLength(50)]
|
||
|
public string SupplierCode { get; set; }
|
||
|
|
||
|
[Description("��Ӧ������")]
|
||
|
[StringLength(50)]
|
||
|
public string SupplierName { get; set; }
|
||
|
|
||
|
[Description("��������")]
|
||
|
[StringLength(50)]
|
||
|
public string SearchName { get; set; }
|
||
|
|
||
|
[Description("�����")]
|
||
|
[StringLength(50)]
|
||
|
public string SecondName { get; set; }
|
||
|
|
||
|
[Description("����������")]
|
||
|
[StringLength(50)]
|
||
|
public string ThirdName { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
[StringLength(50)]
|
||
|
public string GroupName { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
public bool Active { get; set; }
|
||
|
|
||
|
[Description("��Ӧ�̵�ַ")]
|
||
|
[StringLength(50)]
|
||
|
public string Address1 { get; set; }
|
||
|
|
||
|
[Description("��Ӧ�̵�ַ")]
|
||
|
[StringLength(50)]
|
||
|
public string Address2 { get; set; }
|
||
|
|
||
|
[Description("��Ӧ�̵�ַ")]
|
||
|
[StringLength(50)]
|
||
|
public string Address3 { get; set; }
|
||
|
|
||
|
[Description("�ʱ�")]
|
||
|
public int ZipCode { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
[StringLength(50)]
|
||
|
public string City { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
[StringLength(50)]
|
||
|
public string Country { get; set; }
|
||
|
|
||
|
[Description("�绰")]
|
||
|
public int Telephone { get; set; }
|
||
|
|
||
|
[Description("ʡ")]
|
||
|
[StringLength(50)]
|
||
|
public string province { get; set; }
|
||
|
|
||
|
[Description("��")]
|
||
|
[StringLength(50)]
|
||
|
public string County { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
public int Fax { get; set; }
|
||
|
|
||
|
[Description("���Դ���")]
|
||
|
[StringLength(50)]
|
||
|
public string LanguageCode { get; set; }
|
||
|
|
||
|
[Description("�����ʼ�")]
|
||
|
public int Email { get; set; }
|
||
|
|
||
|
[Description("��ַ")]
|
||
|
public int Internet { get; set; }
|
||
|
|
||
|
[Description("��˰��ַ")]
|
||
|
public bool AddressIsTaxable { get; set; }
|
||
|
|
||
|
[Description("��˰")]
|
||
|
public bool AddressIsTaxIncluded { get; set; }
|
||
|
|
||
|
[Description("����˰")]
|
||
|
[StringLength(50)]
|
||
|
public string FederalTax { get; set; }
|
||
|
|
||
|
[Description("��˰")]
|
||
|
[StringLength(50)]
|
||
|
public string StateTax { get; set; }
|
||
|
|
||
|
[Description("����˰1")]
|
||
|
[StringLength(50)]
|
||
|
public string MiscTax1 { get; set; }
|
||
|
|
||
|
[Description("����˰2")]
|
||
|
[StringLength(50)]
|
||
|
public string MiscTax2 { get; set; }
|
||
|
|
||
|
[Description("����˰3")]
|
||
|
[StringLength(50)]
|
||
|
public string MiscTax3 { get; set; }
|
||
|
|
||
|
[Description("����˰")]
|
||
|
public bool TaxInCity { get; set; }
|
||
|
|
||
|
[Description("˰��")]
|
||
|
[StringLength(50)]
|
||
|
public string TaxZone { get; set; }
|
||
|
|
||
|
[Description("˰��")]
|
||
|
public int TaxClass { get; set; }
|
||
|
|
||
|
[Description("˰��;")]
|
||
|
[StringLength(50)]
|
||
|
public string TaxUsage { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
[StringLength(50)]
|
||
|
public string Title { get; set; }
|
||
|
|
||
|
[Description("��ϵ������")]
|
||
|
[StringLength(50)]
|
||
|
public string ContactName { get; set; }
|
||
|
|
||
|
[Description("��д")]
|
||
|
[StringLength(50)]
|
||
|
public string Initials { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
[StringLength(50)]
|
||
|
public string Function { get; set; }
|
||
|
|
||
|
[Description("�Ա�")]
|
||
|
[StringLength(50)]
|
||
|
public string Gender { get; set; }
|
||
|
|
||
|
[Description("��Ҫ��ϵ��")]
|
||
|
public bool ContactIsPrimary { get; set; }
|
||
|
|
||
|
[Description("��Ҫ��ϵ��")]
|
||
|
public bool ContactIsSecondary { get; set; }
|
||
|
|
||
|
[Description("��������")]
|
||
|
public bool Compens { get; set; }
|
||
|
|
||
|
[Description("��Ʊ�����ļ�")]
|
||
|
public int GlProfileInvoice { get; set; }
|
||
|
|
||
|
[Description("����Ʊ�ݿ����ļ�")]
|
||
|
public int GlProfileCreditNote { get; set; }
|
||
|
|
||
|
[Description("Ԥ���������ļ�")]
|
||
|
public int GlProfilePrepayment { get; set; }
|
||
|
|
||
|
[Description("���˿����ļ�")]
|
||
|
public int AccountGLProfile { get; set; }
|
||
|
|
||
|
[Description("���˻������ļ�")]
|
||
|
public int SubAccountProfile { get; set; }
|
||
|
|
||
|
[Description("�Ŵ���������")]
|
||
|
[StringLength(50)]
|
||
|
public string CreditAgencyReference { get; set; }
|
||
|
|
||
|
[Description("�̻���")]
|
||
|
[StringLength(50)]
|
||
|
public string CommerceNumber { get; set; }
|
||
|
|
||
|
[Description("TID֪ͨ")]
|
||
|
[StringLength(50)]
|
||
|
public string TidNotice { get; set; }
|
||
|
|
||
|
[Description("�ⲿ�ͻ���")]
|
||
|
[StringLength(50)]
|
||
|
public string ExternalCustomerNumber { get; set; }
|
||
|
|
||
|
[Description("����")]
|
||
|
[StringLength(50)]
|
||
|
public string Currency { get; set; }
|
||
|
|
||
|
[Description("��Ӧ������")]
|
||
|
[StringLength(50)]
|
||
|
public string SupplierType { get; set; }
|
||
|
|
||
|
[Description("�ɹ�����")]
|
||
|
[StringLength(50)]
|
||
|
public string Purchasetype { get; set; }
|
||
|
|
||
|
[Description("֧����")]
|
||
|
[StringLength(50)]
|
||
|
public string CreditTerms { get; set; }
|
||
|
|
||
|
[Description("��Ʊ״̬����")]
|
||
|
[StringLength(50)]
|
||
|
public string InvoiceStatusCode { get; set; }
|
||
|
|
||
|
[Description("������")]
|
||
|
[StringLength(50)]
|
||
|
public string PaymentGroup { get; set; }
|
||
|
|
||
|
[Description("���ͻ��")]
|
||
|
public bool SendRemittance { get; set; }
|
||
|
|
||
|
[Description("�ָ�����")]
|
||
|
public bool SplitAccount { get; set; }
|
||
|
|
||
|
[Description("������ʽ")]
|
||
|
[StringLength(50)]
|
||
|
public string ShipVia { get; set; }
|
||
|
|
||
|
[Description("��ע")]
|
||
|
[StringLength(50)]
|
||
|
public string Remarks { get; set; }
|
||
|
|
||
|
[Description("������")]
|
||
|
[StringLength(50)]
|
||
|
public string Carrier { get; set; }
|
||
|
|
||
|
[Description("�ɹ���ϵ��")]
|
||
|
[StringLength(50)]
|
||
|
public string Purchasecontact { get; set; }
|
||
|
|
||
|
[Description("�ռ��˼�")]
|
||
|
[StringLength(50)]
|
||
|
public string DayBookSet { get; set; }
|
||
|
|
||
|
[Description("���幩Ӧ��")]
|
||
|
public bool KanBanSupplier { get; set; }
|
||
|
|
||
|
[Description("������")]
|
||
|
[StringLength(50)]
|
||
|
public string PromotionGroup { get; set; }
|
||
|
|
||
|
[Description("�ɹ�Ա")]
|
||
|
[StringLength(50)]
|
||
|
public string Buyer { get; set; }
|
||
|
|
||
|
[Description("�۸���")]
|
||
|
[StringLength(50)]
|
||
|
public string PriceTable { get; set; }
|
||
|
|
||
|
[Description("�ۿ۱�")]
|
||
|
[StringLength(50)]
|
||
|
public string DiscountTable { get; set; }
|
||
|
|
||
|
[Description("�̶��۸�")]
|
||
|
public bool FixedPrice { get; set; }
|
||
|
|
||
|
[Description("�����۵��۸���")]
|
||
|
[StringLength(50)]
|
||
|
public string NonSoPrice { get; set; }
|
||
|
|
||
|
[Description("���и�ʽ")]
|
||
|
[StringLength(50)]
|
||
|
public string BankFormat { get; set; }
|
||
|
|
||
|
[Description("��Ӧ������")]
|
||
|
[StringLength(50)]
|
||
|
public string SupplierBank { get; set; }
|
||
|
|
||
|
[Description("��������")]
|
||
|
[StringLength(50)]
|
||
|
public string OwnBank { get; set; }
|
||
|
|
||
|
|
||
|
[Key]
|
||
|
public Guid GUID { get; set; } = Guid.NewGuid();
|
||
|
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public int UID { get; set; }
|
||
|
|
||
|
[Description("������")]
|
||
|
[StringLength(50)]
|
||
|
public string CreateUser { get; set; }
|
||
|
|
||
|
[Description("����ʱ��")]
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
|
||
|
[Description("��ע")]
|
||
|
public string Remark { get; set; }
|
||
|
|
||
|
[Description("��������")]
|
||
|
public Guid TaskID { get; set; }
|
||
|
|
||
|
[Description("��������")]
|
||
|
[StringLength(50)]
|
||
|
public string CommandType { get; set; }
|
||
|
|
||
|
public Guid DataID { get; set; }
|
||
|
|
||
|
[Description("��")]
|
||
|
[StringLength(50)]
|
||
|
public string Domain { get; set; }
|
||
|
|
||
|
[Description("�ص�")]
|
||
|
[StringLength(50)]
|
||
|
public string Site { get; set; }
|
||
|
[Description("��Ʊ��")]
|
||
|
public decimal? Quota { get; set; }
|
||
|
}
|
||
|
}
|