heyujie
2022-07-19 32964001f3befa0a88c48bc11ae1daee1d935e51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
    string procName = 18;
    string activateCode = 19;
}