VicinitySearch.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #region 描述
  2. //-----------------------------------------------------------------------------
  3. // 文 件 名: VicinitySearch
  4. // 作 者:ChinaYi
  5. // 创建时间:2014/6/12 17:13:22
  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 VicinitySearch
  24. {
  25. private string district; //所在区域
  26. public string District
  27. {
  28. get { return district; }
  29. set { district = value; }
  30. }
  31. private string name; //名称
  32. public string Name
  33. {
  34. get { return name; }
  35. set { name = value; }
  36. }
  37. private string telephone; //电话
  38. public string Telephone
  39. {
  40. get { return telephone; }
  41. set { telephone = value; }
  42. }
  43. private string address; //详细地点
  44. public string Address
  45. {
  46. get { return address; }
  47. set { address = value; }
  48. }
  49. private string price; //平均消费价格
  50. public string Price
  51. {
  52. get { return price; }
  53. set { price = value; }
  54. }
  55. private string tag; //摘要
  56. public string Tag
  57. {
  58. get { return tag; }
  59. set { tag = value; }
  60. }
  61. }
  62. }