Attractions.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #region 描述
  2. //-----------------------------------------------------------------------------
  3. // 文 件 名: Attractions
  4. // 作 者:ChinaYi
  5. // 创建时间:2014/6/11 14:09:15
  6. // 描 述:封装景点详细信息
  7. // 版 本:4.0.30319.1022
  8. //-----------------------------------------------------------------------------
  9. // 历史更新纪录
  10. //-----------------------------------------------------------------------------
  11. // 版 本: 修改时间: 修改人:
  12. // 修改内容:
  13. //-----------------------------------------------------------------------------
  14. // Copyright (C) 20013-2014 泛美商务
  15. //-----------------------------------------------------------------------------
  16. #endregion
  17. using System;
  18. using System.Collections.Generic;
  19. using System.Linq;
  20. using System.Text;
  21. namespace Models
  22. {
  23. public class Attractions
  24. {
  25. private string name; //景点名称
  26. public string Name
  27. {
  28. get { return name; }
  29. set { name = value; }
  30. }
  31. private string summary; //景点摘要
  32. public string Summary
  33. {
  34. get { return summary; }
  35. set { summary = value; }
  36. }
  37. private string description; //景点详情
  38. public string Description
  39. {
  40. get { return description; }
  41. set { description = value; }
  42. }
  43. private string price; //景点票价
  44. public string Price
  45. {
  46. get { return price; }
  47. set { price = value; }
  48. }
  49. private string open_time; //售票时间
  50. public string Open_time
  51. {
  52. get { return open_time; }
  53. set { open_time = value; }
  54. }
  55. private string ticketsIncentives; //门票优惠政策
  56. public string TicketsIncentives
  57. {
  58. get { return ticketsIncentives; }
  59. set { ticketsIncentives = value; }
  60. }
  61. }
  62. }