package server import "xiaoniaokuaiyan.com/xiaoniao/entity" type GroupBloodService interface { Enqueue(subjectId, cid int) (interface{}, error) GetGroupBloodInfo(cid int) (interface{}, error) GetQueueInfo(subjectId, status int) (interface{}, error) Next(subjectId, operType int) (interface{}, error) GetOrderInfo(string) (interface{}, error) GetCheckProgress(string) (interface{}, error) ConfirmChecked(param *entity.GPParam) (interface{}, error) }