interface.go 271 B

12345678910111213141516
  1. /*
  2. @Time : 2019-11-05 15:41
  3. @Author : zr
  4. */
  5. package short_msg
  6. import "video_course/model"
  7. type ShortMsg interface {
  8. SendVFCode(phone, code string, codeType model.VFCodeCodeTypeEnum)
  9. }
  10. func NewShortMsg() (shortMsg ShortMsg) {
  11. dao := NewShortMsgIyoogo()
  12. return dao
  13. }