customer.proto 432 B

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