13 lines
227 B
Protocol Buffer
13 lines
227 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./ats/verify/protos/graphicData";
|
|
|
|
enum PictureType {
|
|
/** 平面布置图 */
|
|
StationLayout = 0;
|
|
/** Psl界面 */
|
|
Psl = 1;
|
|
/** 继电器柜界面 */
|
|
RelayCabinetLayout = 2;
|
|
}
|