constants_services.dart 433 B

12345678910111213141516171819
  1. class servicesConstants {
  2. static Map<String, Map<String, dynamic>> servicesType = {
  3. "houseCleaning": {
  4. "name": "房屋保洁",
  5. "type": "houseCleaning",
  6. 'code': 0,
  7. },
  8. "airConditioner": {
  9. "name": "空调保洁",
  10. "type": "airConditioner",
  11. 'code': 1,
  12. },
  13. "repaire": {
  14. "name": "维修",
  15. "type": "repaire",
  16. 'code': 2,
  17. }
  18. };
  19. }