Updata:增加邮箱管理模块
This commit is contained in:
parent
5149ac02cb
commit
cfeacb48fd
23
api/emailAlerts/emailAlerts.proto
Normal file
23
api/emailAlerts/emailAlerts.proto
Normal file
@ -0,0 +1,23 @@
|
||||
syntax = "proto3";
|
||||
package emailAlerts;
|
||||
//import "descriptor.proto";
|
||||
//import "validator.proto";
|
||||
|
||||
option go_package = "./;emailAlerts";
|
||||
|
||||
service EmailAlerts{
|
||||
rpc EmailAlertsSubmit(EmailAlertsSubmitReq) returns (EmailAlertsSubmitResp);
|
||||
}
|
||||
|
||||
message EmailAlertsSubmitReq{
|
||||
string uuid = 2;
|
||||
string firstName = 3;
|
||||
string lastName = 4;
|
||||
string email = 5;
|
||||
string company = 6;
|
||||
string phone = 7;
|
||||
}
|
||||
|
||||
message EmailAlertsSubmitResp{
|
||||
string msg = 1;
|
||||
}
|
Loading…
Reference in New Issue
Block a user