groupblood_service.go 458 B

12345678910111213
  1. package server
  2. import "xiaoniaokuaiyan.com/xiaoniao/entity"
  3. type GroupBloodService interface {
  4. Enqueue(subjectId, cid int) (interface{}, error)
  5. GetGroupBloodInfo(cid int) (interface{}, error)
  6. GetQueueInfo(subjectId, status int) (interface{}, error)
  7. Next(subjectId, operType int) (interface{}, error)
  8. GetOrderInfo(string) (interface{}, error)
  9. GetCheckProgress(string) (interface{}, error)
  10. ConfirmChecked(param *entity.GPParam) (interface{}, error)
  11. }