智慧食堂
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.

25 lines
331 B

  1. package md
  2. var SelfSupportForMealTimeMapping = []map[string]string{
  3. {
  4. "from": "02:00",
  5. "to": "10:30",
  6. "name": "早餐",
  7. },
  8. {
  9. "from": "10:30",
  10. "to": "15:00",
  11. "name": "午餐",
  12. },
  13. {
  14. "from": "15:00",
  15. "to": "23:00",
  16. "name": "晚餐",
  17. },
  18. {
  19. "from": "23:00",
  20. "to": "02:00",
  21. "name": "夜宵",
  22. },
  23. }