ifcode_dal.go 148 B

123456789
  1. package dal
  2. import (
  3. "xiaoniaokuaiyan.com/xiaoniao/entity"
  4. )
  5. type IFcode interface {
  6. Exchange(codeStr string) (*entity.DiscountTicket, error)
  7. }