Customer.cs 1.1 KB

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace AI.Platform.Core.Dto.MemberManagement
  5. {
  6. public class Customer
  7. {
  8. public long? Id { get; set; }
  9. public string CustomerName { get; set; } = string.Empty;
  10. public string CustomerCode { get; set; } = string.Empty;
  11. public string Site { get; set; } = string.Empty;
  12. public long? SiteID { get; set; }
  13. public string InvoiceTitle { get; set; } = string.Empty;
  14. public string TaxNumber { get; set; } = string.Empty; // 新增:税号
  15. public string CompanyRegisteredAddress { get; set; } = string.Empty; // 新增:公司注册地址
  16. public string CompanyPhone { get; set; } = string.Empty; // 新增:公司注册电话
  17. public string ContactAddress { get; set; } = string.Empty; // 新增:公司联系地址
  18. public string CompanyEmail { get; set; } = string.Empty; // 新增:公司邮箱
  19. public decimal CardBalance { get; set; }
  20. public string Status { get; set; } = "正常";
  21. public DateTime? RegisterTime { get; set; } = DateTime.Now;
  22. }
  23. }