2026-06-18 18:19:43 +06:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Objects.Integrations;
|
2026-06-16 17:22:46 +06:00
|
|
|
|
|
|
|
|
|
|
public class CustomerIntegration
|
|
|
|
|
|
{
|
2026-06-18 18:19:43 +06:00
|
|
|
|
public string CustomerNumber { get; set; }
|
|
|
|
|
|
public string CustomerName { get; set; }
|
|
|
|
|
|
public string AccountGroup { get; set; }
|
|
|
|
|
|
public string AccountGroupDescription { get; set; }
|
|
|
|
|
|
public string CompanyCode { get; set; }
|
|
|
|
|
|
public string CompanyCodeDescription { get; set; }
|
|
|
|
|
|
public string SalesOrganization { get; set; }
|
|
|
|
|
|
public string SalesOrganizationDescription { get; set; }
|
|
|
|
|
|
public string DistributionChannel { get; set; }
|
|
|
|
|
|
public string DistributionChannelDescription { get; set; }
|
|
|
|
|
|
public string Division { get; set; }
|
|
|
|
|
|
public string DivisionDescription { get; set; }
|
|
|
|
|
|
public string MobileNumber { get; set; }
|
|
|
|
|
|
public string EmailAddress { get; set; }
|
|
|
|
|
|
public string BusinessTaxNumber { get; set; }
|
|
|
|
|
|
public decimal CreditLimit { get; set; }
|
|
|
|
|
|
public string SalesGroup { get; set; }
|
|
|
|
|
|
public string SalesGroupDescription { get; set; }
|
|
|
|
|
|
public string CustomerGroup { get; set; }
|
|
|
|
|
|
public string CustomerGroupDescription { get; set; }
|
|
|
|
|
|
public string CustomerPriceGroup { get; set; }
|
|
|
|
|
|
public string CustomerPriceGroupDescription { get; set; }
|
|
|
|
|
|
public string StatusCode { get; set; }
|
|
|
|
|
|
public string StatusDescription { get; set; }
|
|
|
|
|
|
public string PaymentTerms { get; set; }
|
|
|
|
|
|
public string PaymentTermsDescription { get; set; }
|
|
|
|
|
|
public string SearchTerm { get; set; }
|
|
|
|
|
|
public string AreaRegion { get; set; }
|
|
|
|
|
|
public string AreaRegionDescription { get; set; }
|
|
|
|
|
|
public string SalesUnitAreaAV { get; set; }
|
|
|
|
|
|
public string SalesUnitAreaAVDescription { get; set; }
|
|
|
|
|
|
public string Territory { get; set; }
|
|
|
|
|
|
public string TerritoryName { get; set; }
|
2026-06-16 17:22:46 +06:00
|
|
|
|
public string Plant { get; set; }
|
|
|
|
|
|
public string PlantName { get; set; }
|
|
|
|
|
|
}
|