多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## 检查是否完善过房间 ~~~[api] get:/room/read *int:id=1#房源 id <<< success //没有房间返回 { "code": 0, "data": { "data": [] } } <<< success { "code": 0, "data": { "data": [ { "id": 1, "r_name": "房间名",//房间名 "r_area": 20,//房间面积 "h_l_rent": null,//长租租金 "h_s_rent": null,//短租租金(设计没有,暂不使用) "h_l_p_m": null,//长租支付方式 "h_l_p_n": null,//长租支付方式名 "h_s_p_m": [//短租支付方式 { "rent":10,//租金 "deposit":10,//押金 "day":3//天数 } ], "h_facilities": [//配套设施 { } ], "h_toward": "向西",//房间朝向 "h_fitment": "毛坯",//房间装修 "h_sex": 2//性别限制 0 女 1 男 2 不限 } ] } } <<< error ~~~ ## 新增房间 * 请求地址: `/room/save` * 请求方式: post * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `r_name` | string | 2-64 | `是` | 房间名 | | `h_i_id` | int | 18 | `是` | 房源id | | `r_area` | int | 11 | `是` | 房间面积 | | `h_facilities` | json | 0 | `是` | 房间设施 | | `h_toward` | string | 2-16 | `是` | 房间朝向 | | `h_l_p_m` | int | 11 | 是 | 长租支付方式 | | `h_l_p_n` | string | 2-16 | 是 | 长租支付方式名 | | `h_s_p_m` | json | 0 | 是 | 短租支付方式 | | `h_l_rent` | int | 20 | 是 | 长租租金(单位·分) | | `h_s_rent` | int | 20 | 是 | 短租租金(单位·分) | | `h_fitment` | string | 2-16 | 房间装修 | | `h_sex` | int | 0,1,2 | 是 | 0 女 1 男 2 不限 | | `is_all_pay` | int | 11 | 否 | 是否全付 | >[info] 由于出租方式不同 有些字段填的是 请根据不同的情况传不同的参数 > 是否全付 在长租里面自行判断填写 0 全付 1 不全付 * 成功返回: ```json { "code": 0 } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 修改房间信息 * 请求地址: `/room/update` * 请求方式: post * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `id` | int | 11 | `是` | id | | `r_name` | string | 2-64 | `是` | 房间名 | | `r_area` | int | 11 | `是` | 房间面积 | | `h_facilities` | json | 0 | `是` | 房间设施 | | `h_toward` | string | 2-16 | `是` | 房间朝向 | | `h_l_p_m` | int | 11 | 是 | 长租支付方式 | | `h_l_p_n` | string | 2-16 | 是 | 长租支付方式名 | | `h_s_p_m` | json | 0 | 是 | 短租支付方式 | | `h_l_rent` | int | 20 | 是 | 长租租金(单位·分) | | `h_s_rent` | int | 20 | 是 | 短租租金(单位·分) | | `h_fitment` | string | 2-16 | 房间装修 | | `h_sex` | int | 0,1,2 | 是 | 0 女 1 男 2 不限 | | `is_all_pay` | int | 11 | 否 | 是否全付 | >[info] 由于出租方式不同 有些字段填的是 请根据不同的情况传不同的参数 > 是否全付 在长租里面自行判断填写 0 全付 1 不全付 * 成功返回: ```json { "code": 0 } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 房间信息修改查询 ~~~[api] get:/room/edit *int:id=1#列表 id <<< success { "code": 0, "data": { "data": { "id": 1, "r_name": "房间名",//房间名 "r_area": 20,//房间面积 "h_l_rent": null,//长租租金 "h_s_rent": null,//短租租金(设计没有,暂不使用) "h_l_p_m": null,//长租支付方式 "h_l_p_n": null,//长租支付方式名 "h_s_p_m": [//短租支付方式 { "rent":10,//租金 "deposit":10,//押金 "day":3//天数 } ], "h_facilities": [//配套设施 { } ], "h_toward": "向西",//房间朝向 "h_fitment": "毛坯",//房间装修 "h_sex": 2//性别限制 0 女 1 男 2 不限 } } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 删除房间 ~~~[api] post:/room/delete *int:id=1#房间 id <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~