增加DNS套餐相关API

This commit is contained in:
刘祥超
2022-09-13 10:50:26 +08:00
parent da02e6df4a
commit cf4b9a49ed
20 changed files with 7944 additions and 4304 deletions

View File

@@ -0,0 +1,19 @@
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;
}