listInterval.go 1.4 KB
package service

import (
	"gitlab.fjmaimaimai.com/linmadan/mmm-worth/pkg/application/listInterval/command"
	"gitlab.fjmaimaimai.com/linmadan/mmm-worth/pkg/application/listInterval/query"
)

type ListIntervalService struct {

}

// TODO 创建排行榜时间
func (listIntervalService *ListIntervalService) CreateListInterval(createListIntervalComand *command.CreateListIntervalCommand) (interface{}, error) {
	return nil, nil
}

// TODO 返回排行榜时间列表
func (listIntervalService *ListIntervalService) ListListInterval(listListIntervalQuery *query.ListListIntervalQuery) (interface{}, error) {
	return nil, nil
}

// TODO 返回排行榜时间
func (listIntervalService *ListIntervalService) GetListInterval(getListIntervalQuery *query.GetListIntervalQuery) (interface{}, error) {
	return nil, nil
}

// TODO 更新排行榜时间
func (listIntervalService *ListIntervalService) UpdateListInterval(updateListIntervalCommand *command.UpdateListIntervalCommand) (interface{}, error) {
	return nil, nil
}

// TODO 移除排行榜时间
func (listIntervalService *ListIntervalService) RemoveListInterval(removeListIntervalCommand *command.RemoveListIntervalCommand) (interface{}, error) {
	return nil, nil
}

func NewListIntervalService(options map[string] interface{}) *ListIntervalService {
	newListIntervalService := &ListIntervalService{}
	return newListIntervalService
}