123456789101112131415 |
- package server
- import (
- "xiaoniaokuaiyan.com/xiaoniao/entity"
- )
- type ActivityService interface {
- AddReporter(params *entity.ActReporter) (interface{}, error)
- AddActInfo(item *entity.ActInfo) (interface{}, error)
- GetActInfo(mobile, source string) (interface{}, error)
- UpdateActInfo(item *entity.ActInfo) (interface{}, error)
- WithdrawActInfo(item *entity.ActInfo) (interface{}, error)
- AddInvoice(item *entity.ActInfo) (interface{}, error)
- GetInvoice(oid string) ([]entity.ActInfo, error)
- }
|