123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- syntax = "proto3";
- // package声明符,用来防止不同的消息类型有命名冲突
- package pb_v1;
- // 用于生成指定语言go的包名称
- option go_package = "property-household-gateway/pb/v1";
- message HouseRentManagerListRequest {
- int64 garden_id = 1;
- int64 rent_id = 4;
- }
- message HouseRentManagerItem {
- int64 id = 1;
- int64 manager_uid = 2;
- // 姓名
- string name = 3;
- string phone = 4;
- // 账号
- string user_name = 5;
- string openim_id = 6;
- }
- message HouseRentManagerListReply {
- repeated HouseRentManagerItem list = 1;
- }
- message GardenHouseRentInfoRequest {
- int64 garden_id = 1;
- }
- message GardenHouseRentInfoReply {
- int64 avg_price = 1;
- int64 rent_count = 2;
- int64 sell_count = 3;
- // 1塔楼 2 板楼 3 塔板结合 4 其他
- int32 building_type = 31;
- // 建成年份开始时间戳
- int64 building_start = 32;
- // 建成年份结束时间戳
- int64 building_end = 33;
- // 绿化率
- double green_percent = 34;
- // 容积率
- double area_percent = 35;
- // 车位配比
- string space_info = 36;
- // 占地面积
- double covered_area = 37;
- // 建筑面积
- double building_area = 38;
- // 小区图片
- repeated string garden_pics = 39;
- // 开发企业
- string building_company = 40;
- // 总户数
- int64 house_total = 41;
- // 固定车位数
- int64 space_total = 42;
- // 物业费开始,单位分
- int64 property_fee_start = 43;
- // 物业费结束, 单位分
- int64 property_fee_end = 44;
- // 水费类型多选 1 民用 2 商用
- repeated int32 water_type = 45;
- // 电费类型多选 1 民用 2 商用
- repeated int32 electric_type = 46;
- // 燃气费开始,单位分
- int64 gas_fee_start = 47;
- // 燃气费开始,单位分
- int64 gas_fee_end = 48;
- }
|