调整
This commit is contained in:
parent
3f139015e3
commit
ffba8e706d
|
@ -32,8 +32,19 @@ message ResourceInfo{
|
|||
}
|
||||
|
||||
message Meta {
|
||||
int64 total_count =1;
|
||||
int64 page_count=2;
|
||||
int64 current_page=3;
|
||||
int64 per_page=4;
|
||||
int64 total_count =1; // 总数
|
||||
int64 page_count=2; // 总页数
|
||||
int64 current_page=3; // 当前页码
|
||||
int64 per_page=4; // 每页数量
|
||||
}
|
||||
|
||||
|
||||
// 用户信息
|
||||
message FsUser {
|
||||
string email = 1; // 邮箱
|
||||
string first_name = 2; // 名
|
||||
string last_name = 3; // 姓
|
||||
string username = 4; // 用户名称
|
||||
string company = 5; // 公司
|
||||
string mobile = 6; // 电话号码
|
||||
}
|
|
@ -92,6 +92,7 @@ message OrderFilter {
|
|||
message OrderInfo {
|
||||
OrderDetailDb order_detail_db = 1; // 原数据
|
||||
bytes order_detail = 2; // 处理后数据
|
||||
basic.FsUser user_info = 3; // 用户数据
|
||||
}
|
||||
|
||||
/* 数据库 */
|
||||
|
|
Loading…
Reference in New Issue
Block a user