12345678910111213141516171819202122232425262728293031323334 |
- const data = {
- equipment: {
- onlyRead: [],
- edit: []
- },
- tenant: {
- onlyRead: [],
- edit: []
- },
- shaft: {
- onlyRead: [],
- edit: []
- },
- parts: {
- onlyRead: [],
- edit: []
- },
- property:{
- onlyRead: [],
- edit: []
- },
- system:{
- onlyRead: [],
- edit: []
- },
- space:{
- onlyRead: [
- "outline"
- ],
- edit: []
- }
- }
- export default data
|