cellsysBase/cellsysEnum.js
2024-08-14 16:20:56 +08:00

28 lines
553 B
JavaScript

//发布目标枚举类
export const PublishTarget = {
"noPublish": 0,
"publish": 1,
"cancelPublish": 4,//撤销
"revocation": 0,//撤销
"auditing": 2 // 待审核
}
export const PublishStatus = {
0: "未发布",
1: "已发布",
2: "审核中",
3: "审核不通过",
4: "已被撤销",
5: "已撤回"
}
export const CellsysTypeId = {
"MarkerType": 1,
"PolygonType": 2,
"LineType": 3,
"OfflinePolygonType": 4,
"App": 7,
"EventType":5,
"LayerGroup": 8,
"EquipmentType": 6,
}