Commit 0993c6c3b49bb63531f8796485e3dadf397d0cd5

Authored by zhangqijia
1 parent b1df9ce3

feat: EmailNewNty, 新邮件通知

Showing 2 changed files with 7 additions and 2 deletions   Show diff stats
game.proto
... ... @@ -125,9 +125,13 @@ message EmailCheckRar {
125 125 string id = 1;
126 126 }
127 127  
128   -message EmailDelReq{
  128 +message EmailDelReq {
129 129 }
130 130  
131   -message EmailDelRsp{
  131 +message EmailDelRsp {
132 132 repeated string ids = 1;
133 133 }
  134 +
  135 +message EmailNewNty{
  136 + models.Email emails = 1;
  137 +}
... ...
protocode.proto
... ... @@ -25,6 +25,7 @@ enum ProtoCode
25 25 RoleUpdatePropertyNty = 1002;
26 26 RoleUpdateItemsNty = 1003;
27 27 EquipmentAddNty = 1004;
  28 + EmailNewNty = 1005;
28 29  
29 30  
30 31  
... ...