You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
207 B
9 lines
207 B
4 years ago
|
class BeeMap {
|
||
|
Map<int, String> fixTag = {
|
||
|
0: '公区报修',
|
||
|
1: '家庭报修',
|
||
|
};
|
||
|
|
||
|
Map<int, String> fixState = {0: '待分配', 1: '维修中', 2: '已处理',3:'已完成',4:'已取消'};
|
||
|
}
|