mobile_code.go 330 Bytes
Newer Older
haoyanbin's avatar
1  
haoyanbin committed
1 2 3 4 5 6 7 8 9
package model

type MobileCode struct {
	Id         int    `gorm:"type:int(255)" json:"id"`
	Mobile     string `gorm:"type:string(255)" json:"mobile"`
	Code       string `gorm:"type:string(255)" json:"code"`
	Status     int    `gorm:"type:int(255)" json:"status"`
	CreateTime string `gorm:"type:string(255)" json:"create_time"`
}