-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmd/gf: fix pbentity generate fail in mono-repo (#3547)
- Loading branch information
Showing
3 changed files
with
88 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// ========================================================================== | ||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. | ||
// ========================================================================== | ||
|
||
syntax = "proto3"; | ||
|
||
package pbentity; | ||
|
||
option go_package = "github.com/gogf/gf/cmd/gf/v2/internal/cmd/api/pbentity"; | ||
|
||
import "google/protobuf/timestamp.proto"; | ||
|
||
message TableUser { | ||
uint32 Id = 1; // User ID | ||
string Passport = 2; // User Passport | ||
string Password = 3; // User Password | ||
string Nickname = 4; // User Nickname | ||
string Score = 5; // Total score amount. | ||
google.protobuf.Timestamp CreateAt = 6; // Created Time | ||
google.protobuf.Timestamp UpdateAt = 7; // Updated Time | ||
} |