syntax = "proto3"; message customer{ string csr_id = 1; // 用户id; string csr_name = 2; // 用户姓名或昵称; bool csr_gender = 3; // 用户性别; string csr_phone = 4; // 用户手机; string csr_old_phone = 5; // 用户旧手机; string csr_vcode = 6; // 用户注册或忘记密码时的手机验证码; string vcode_expiry_time = 7; // 验证码到期时间; }