system_service.go 221 B

12345678
  1. package server
  2. type SystemService interface {
  3. GetFirstPagePicList() (interface{}, error)
  4. GetWorkdays(int) (interface{}, error)
  5. GetQuestion(int) (interface{}, error)
  6. GetDictList(string, string) (interface{}, error)
  7. }