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.

51 lines
1.4 KiB

2 years ago
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace EasyBL
  5. {
  6. public class ExpInfo
  7. {
  8. public string ExhibitionType { get; set; }
  9. public string Id { get; set; }
  10. public string Bills { get; set; }
  11. public string ReturnBills { get; set; }
  12. public string ActualCost { get; set; }
  13. public string RefNumber { get; set; }
  14. /// <summary>
  15. /// 展覽代碼
  16. /// </summary>
  17. public string ExpNO { get; set; }
  18. /// <summary>
  19. /// 代理
  20. /// </summary>
  21. public string Agent { get; set; }
  22. /// <summary>
  23. /// 參展廠商,OTB_OPM_OtherExhibitionTG、OTB_OPM_ExportExhibition使用
  24. /// </summary>
  25. public string Exhibitors { get; set; }
  26. /// <summary>
  27. /// 參展廠商,OTB_OPM_OtherExhibition、OTB_OPM_ImportExhibition使用
  28. /// </summary>
  29. public string Supplier { get; set; }
  30. /// <summary>
  31. /// 組團單位,僅出口OTB_OPM_ExportExhibition使用
  32. /// </summary>
  33. public string Organizer { get; set; }
  34. /// <summary>
  35. /// 負責人員
  36. /// </summary>
  37. public string ResponsibleMember { get; set; }
  38. /// <summary>
  39. /// 負責人員部門
  40. /// </summary>
  41. public string DeptOfResponsibleMember { get; set; }
  42. public string OrgID { get; set; }
  43. }
  44. }