1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- syntax = "proto3";
- // package声明符,用来防止不同的消息类型有命名冲突
- package pb_v1;
- // 用于生成指定语言go的包名称
- option go_package = "property-garden/pb/v1";
- message CompanyInfoRequest {
- int64 id = 1;
- }
- message CompanyInfoReply {
- // 审核状态
- int32 approve_status = 1;
- // 申请人
- string applicant = 2;
- // 申请人电话
- string applicant_phone = 3;
- // 公司名称
- string company_name = 4;
- // 公司电话
- string company_phone = 5;
- // 申请人职位
- string applicant_duty = 6;
- // 法人
- string legal_person = 7;
- // 公司地址
- string company_addr = 8;
- // 社会信用码
- string social_code = 9;
- // 营业执照
- string business_license = 10;
- // 申请人身份
- string applicant_identification = 11;
- // 营业执照类型 1 多证合一营业执照 2 普通营业执照
- int32 license_type = 12;
- // 免费小区个数
- int32 free_garden_count = 13;
- // 已有小区个数
- int32 garden_count = 14;
- // 账户名
- string username = 15;
- // 密码
- string password = 16;
- // 申请时间
- string created_at = 17;
- // 审批时间
- string approved_at = 18;
- // 小区有效天数
- int32 expire = 19;
- // 公司logo
- string logo = 20;
- // 简介
- string desc = 21;
- // 网址
- string site = 22;
- //int32 pay_mode = 23;
- //string mch_id = 24;
- }
- message CompanyObjStatisticSetRequest {
- int64 garden_id = 1;
- int32 obj_type = 2;
- // 为负数表示减少
- int64 total_increase = 3;
- int64 cid = 4;
- }
- message CompanyObjStatisticSetReply {
- }
- message CompanyDealStatisticSetRequest {
- int64 garden_id = 1;
- int64 amount = 2;
- int64 date_timestamp = 3;
- }
- message CompanyDealStatisticSetReply {
- }
|