mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
19 lines
313 B
Protocol Buffer
19 lines
313 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_ns_plan.proto";
|
|
import "models/model_user.proto";
|
|
|
|
message NSUserPlan {
|
|
int64 id = 1;
|
|
int64 nsPlanId = 2;
|
|
int64 userId = 3;
|
|
string dayFrom = 4;
|
|
string dayTo = 5;
|
|
string periodUnit = 6;
|
|
|
|
NSPlan nsPlan = 30;
|
|
User user = 31;
|
|
} |