12345678910111213141516171819 |
- class servicesConstants {
- static Map<String, Map<String, dynamic>> servicesType = {
- "houseCleaning": {
- "name": "房屋保洁",
- "type": "houseCleaning",
- 'code': 0,
- },
- "airConditioner": {
- "name": "空调保洁",
- "type": "airConditioner",
- 'code': 1,
- },
- "repaire": {
- "name": "维修",
- "type": "repaire",
- 'code': 2,
- }
- };
- }
|