go-common/app/interface/main/activity/dao/bnj/cache.go

22 lines
450 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package bnj
import "context"
func timeFinishKey() string {
return "time_finish"
}
func timeLessKey() string {
return "time_less"
}
//go:generate $GOPATH/src/go-common/app/tool/cache/mc
type _mc interface {
// mc: -key=timeFinishKey
CacheTimeFinish(c context.Context) (int64, error)
// mc: -key=timeFinishKey
DelCacheTimeFinish(c context.Context) (int64, error)
// mc: -key=timeLessKey
DelCacheTimeLess(c context.Context) (int64, error)
}