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.

64 lines
1.7 KiB

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Entity.Sugar;
  7. namespace Entity.ViewModels
  8. {
  9. public class View_CRM_SatisfactionCase:OTB_CRM_SatisfactionCase
  10. {
  11. private string cstrCustomerName = ""; // 客戶名稱
  12. private string cstrExhibitioname_TW = ""; // 展覽名稱
  13. private string cstrResponsiblePerson = ""; // 展覽負責人
  14. /// <summary>
  15. /// 客戶名稱
  16. /// </summary>
  17. public string CustomerName
  18. {
  19. get { return cstrCustomerName; }
  20. set { cstrCustomerName = value; }
  21. }
  22. /// <summary>
  23. /// 展覽名稱
  24. /// </summary>
  25. public string Exhibitioname_TW
  26. {
  27. get { return cstrExhibitioname_TW; }
  28. set { cstrExhibitioname_TW = value; }
  29. }
  30. /// <summary>
  31. /// 展覽負責人
  32. /// </summary>
  33. public string ResponsiblePerson
  34. {
  35. get { return cstrResponsiblePerson; }
  36. set { cstrResponsiblePerson = value; }
  37. }
  38. /// <summary>
  39. /// Desc:
  40. /// Default:
  41. /// Nullable:True
  42. /// </summary>
  43. public DateTime? ExhibitionDateStart { get; set; }
  44. public const string CN_EXHIBITIONDATESTART = "ExhibitionDateStart";
  45. /// <summary>
  46. /// Desc:
  47. /// Default:
  48. /// Nullable:True
  49. /// </summary>
  50. public DateTime? ExhibitionDateEnd { get; set; }
  51. public const string CN_EXHIBITIONDATEEND = "ExhibitionDateEnd";
  52. public string ExhibitioShotName_TW { get; set; }
  53. public string Feild01 { get; set; }
  54. public string CustomerSN { get; set; }
  55. }
  56. }