实现修改管理员信息功能

This commit is contained in:
刘祥超
2020-10-14 19:42:28 +08:00
parent 83c9bf396c
commit 2068b6bd89
4 changed files with 937 additions and 97 deletions

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message Admin {
int64 id = 1;
string fullname = 2;
string username = 3;
bool isOn = 4;
}