PaymentCenter/app/models/userinfomodel/user_info.go

48 lines
1.2 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package userinfomodel
import (
"github.com/qit-team/snow-core/db"
"sync"
"time"
)
var (
once sync.Once
m *UserInfoModel
)
// 实体
type UserInfo struct {
Id int `xorm:"'Id' int(11)"`
Clientuniqueidentification string `xorm:"'ClientUniqueIdentification' varchar(255)"`
Mobile string `xorm:"'Mobile' varchar(13)"`
Status int `xorm:"'Status' TINYINT"`
Lastupdatetime time.Time `xorm:"'LastUpdateTime' datetime"`
Createtime time.Time `xorm:"'CreateTime' datetime"`
}
// 表名
func (m *UserInfo) TableName() string {
return "UserInfo"
}
// 私有化防止被外部new
type UserInfoModel struct {
db.Model //组合基础Model集成基础Model的属性和方法
}
// 单例模式
func GetInstance() *UserInfoModel {
once.Do(func() {
m = new(UserInfoModel)
//m.DiName = "" //设置数据库实例连接默认db.SingletonMain
})
return m
}
func (m *UserInfoModel) GetListByMobile(mobile string, limits ...int) (banners []*UserInfo, err error) {
banners = make([]*UserInfo, 0)
err = m.GetList(&banners, "Mobile like ?", []interface{}{"%" + mobile + "%"}, limits)
return
}