users.proto 665 B

1234567891011121314151617181920
  1. // ==========================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // ==========================================================================
  4. syntax = "proto3";
  5. package pbentity;
  6. option go_package = "proxima/app/user/api/pbentity";
  7. import "google/protobuf/timestamp.proto";
  8. message Users {
  9. uint32 Id = 1; //
  10. string Username = 2; //
  11. string Password = 3; //
  12. string Email = 4; //
  13. google.protobuf.Timestamp CreatedAt = 5; //
  14. google.protobuf.Timestamp UpdatedAt = 6; //
  15. }