Commit 98f1de7655ff6a2911ad3a001093fb3bf80d1fef

Authored by zhangqijia
1 parent 26931688

fix: Team 数据结构更改

Showing 1 changed file with 2 additions and 4 deletions   Show diff stats
models.proto
... ... @@ -41,10 +41,8 @@ message Equipment {
41 41 message Team {
42 42 string id = 1; // @inject_tag: index:"unique" pri:"1"
43 43 string role_id = 2;
44   - string hero_id1 = 3;
45   - string hero_id2 = 4;
46   - string hero_id3 = 5;
47   - map<string,string> child_ids = 6;
  44 + map<int32,string> hero_ids = 3;
  45 + map<int32,string> child_ids = 4;
48 46 }
49 47  
50 48 message Email {
... ...