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.

25 lines
911 B

2 years ago
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace EasyBL
  5. {
  6. public class ExistingCustomerInfo
  7. {
  8. public string GUID { set; get; }
  9. //客戶中文名稱 客戶英文名稱 統一編號 交易型態 國家 參展次數 聯絡人 職稱 電話 EMAIL 地址 網址
  10. public string ChName { set; get; }
  11. public string EnName { set; get; }
  12. public string TaxNumber { set; get; }
  13. public string TransType { set; get; }
  14. public string State { set; get; }
  15. public int AttendeeTimes { set; get; }
  16. public string FullName { set; get; }
  17. public string JobtitleName { set; get; }
  18. public string TEL { set; get; }
  19. public string Email { set; get; }
  20. public string Address { set; get; }
  21. public string Website { set; get; }
  22. public List<string> AttendeeExhibitions { set; get; }
  23. }
  24. }