cls_tenancy.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:3k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <%'Copyright (c) 2006 Foosun Inc. Code by Einstein.liu
  2. Class Cls_Tenancy
  3. private tenancy_tid,tenancy_UseFor,tenancy_class,tenancy_Position,tenancy_CityArea,tenancy_Price,tenancy_HouseStyle,tenancy_Area,tenancy_Floor,tenancy_BuildDate,tenancy_equip,tenancy_Decoration,tenancy_LinkMan,tenancy_Contact,tenancy_Period,tenancy_Remark,tenancy_PubDate,tenancy_Audited,tenancy_picNumber
  4. Private tenancy_rs
  5. public Function getTenancyInfo(id)
  6. Set tenancy_rs=Server.CreateObject(G_FS_RS)
  7. tenancy_rs.open "select tid,UseFor,class,Position,CityArea,Price,HouseStyle,Area,Floor,BuildDate,equip,Decoration,LinkMan,Contact,Period,Remark,PubDate,Audited,picNumber from FS_HS_Tenancy where tid="&id,Conn,1,1
  8. tenancy_tid=tenancy_rs("tid")
  9. tenancy_UseFor=tenancy_rs("UseFor")
  10. tenancy_class=tenancy_rs("class")
  11. tenancy_Position=tenancy_rs("Position")
  12. tenancy_CityArea=tenancy_rs("CityArea")
  13. tenancy_Price=tenancy_rs("Price")
  14. tenancy_HouseStyle=tenancy_rs("HouseStyle")
  15. tenancy_Area=tenancy_rs("Area")
  16. tenancy_Floor=tenancy_rs("Floor")
  17. tenancy_BuildDate=tenancy_rs("BuildDate")
  18. tenancy_equip=tenancy_rs("equip")
  19. tenancy_Decoration=tenancy_rs("Decoration")
  20. tenancy_LinkMan=tenancy_rs("LinkMan")
  21. tenancy_Contact=tenancy_rs("Contact")
  22. tenancy_Period=tenancy_rs("Period")
  23. tenancy_Remark=tenancy_rs("Remark")
  24. tenancy_PubDate=tenancy_rs("PubDate")
  25. tenancy_Audited=tenancy_rs("Audited")
  26. tenancy_picNumber=tenancy_rs("picNumber")
  27. End Function
  28. public property get tid()
  29. id=tenancy_tid
  30. end property
  31. public property get UseFor()'1.用途:1住房,2写字间
  32. UseFor=tenancy_UseFor
  33. end property
  34. public property get tclass()'2.类型:1:出租2:求租3:出售4:求购5:合租6:转让
  35. tclass=tenancy_class
  36. end property
  37. public property get Position()'3.房源地址
  38. Position=tenancy_Position
  39. end property
  40. public property get cityArea()'4.区县
  41. cityArea=tenancy_cityArea
  42. end property
  43. public property get Price()'5.租金(单位:元/月)
  44. Price=tenancy_Price
  45. end property
  46. public property get HouseStyle()'6.户型,存储格式:l,m,nl:室m:厅n:卫
  47. HouseStyle=tenancy_HouseStyle
  48. end property
  49. public property get Area()'7.建筑面积
  50. Area=tenancy_Area
  51. end property
  52. public property get Floor()'8.楼层,存储格式:m,nm:总层n:第几层
  53. Floor=tenancy_Floor
  54. end property
  55. public property get BuildDate()'9.建筑年代
  56. BuildDate=tenancy_BuildDate
  57. end property
  58. public property get equip()'10.配套设施,保存格式:l,m,n,x,y,zl:通水m:电n:气x:电话y:光纤z:表示宽带1表示有,0表示无 
  59. equip=tenancy_equip
  60. end property
  61. public property get Decoration()'11.装修情况:1: 简单装修2. 中档装修3. 高档装修
  62. Decoration=tenancy_Decoration
  63. end property
  64. public property get LinkMan()'12.联系人
  65. LinkMan=tenancy_LinkMan
  66. end property
  67. public property get Contact()'13.联系方式
  68. Contact=tenancy_Contact
  69. end property
  70. public property get Period()'14.有效期:一周,两周,三周,一月,两月),所有只保留三月
  71. Period=tenancy_Period
  72. end property
  73. public property get Remark()'15.备注
  74. Remark=tenancy_Remark
  75. end property
  76. public property get PubDate()'16.发布时间
  77. PubDate=tenancy_PubDate
  78. end property
  79. public property get Audited()'17.是否通过审核1:是,0未
  80. Audited=tenancy_Audited
  81. end property
  82. public property get picNumber()'18图片数量
  83. picNumber=tenancy_picNumber
  84. end property
  85. End Class
  86. %>