| 12345678910111213141516 |
- /*
- @Time : 2019-11-05 15:41
- @Author : zr
- */
- package short_msg
- import "video_course/model"
- type ShortMsg interface {
- SendVFCode(phone, code string, codeType model.VFCodeCodeTypeEnum)
- }
- func NewShortMsg() (shortMsg ShortMsg) {
- dao := NewShortMsgIyoogo()
- return dao
- }
|