psl数据调整

This commit is contained in:
fan 2023-10-08 15:48:51 +08:00
parent 8403e90692
commit da65562e42

View File

@ -9,6 +9,7 @@ message PslGraphicStorage {
repeated PslLight pslLights = 2; // psl圆形灯
repeated PslButton pslButtons = 3;
repeated PslKey pslKeys = 4;
repeated PslText pslTexts = 5;
}
@ -41,3 +42,11 @@ message PslKey {
// string topAnnotation = 3;
// string rightAnnotation = 4;
}
/** psl文字 */
message PslText {
graphicData.CommonInfo common = 1;
string code = 2;
string content = 3;
string color = 4;
int32 fontSize = 5;
}