heyujie
2021-11-15 8b026699e720c272f58b664b94bc2edebde13a03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
syntax = "proto3";
package protomsg;
 
message App {
    string id = 1;
    string name = 2;
    string package = 3;
    string type = 4;
    string url = 5;
    string title = 6;
    int32 width = 7;
    int32 height = 8;
    string iconBlob = 9;
    string icon = 10;
    string version = 11;
 
    string create_time = 12;
    string create_by = 13;
    string update_time = 14;
    string update_by = 15;
    bool isDefault = 16;
    string iconBlob2 = 17;
}