123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package models
- import "rdluck_tools/orm"
- type HongzeUsers struct {
- RealName string
- CompanyName string
- Mobile string
- IsRegister string
- UserType string
- }
- func GetHongzeUsers() (items []*HongzeUsers, err error) {
- sql := `select wu.real_name,c.company_name,left(wu.mobile, 11) as mobile ,if(wu.open_id is null,'否','是') as is_register,if(c.type in (1),'是','否') as user_type
- from wx_user wu
- inner join company c on c.company_id = wu.company_id
- where c.company_id <> 1 and c.company_id <> 16
- and c.type in (1)
- order by company_name desc `
- _, err = orm.NewOrm().Raw(sql).QueryRows(&items)
- return
- }
- type WxUser struct {
- UserId int64
- Mobile string
- Email string
- CompanyId int
- ExpiredIn int64
- OpenId string
- }
- func GetWxUserByUserId(userId int) (item *WxUser, err error) {
- sql := `SELECT * FROM wx_user WHERE user_id=? `
- err = orm.NewOrm().Raw(sql, userId).QueryRow(&item)
- return
- }
- func GetWxUserByMobile(mobile string) (item *WxUser, err error) {
- sql := `SELECT * FROM wx_user WHERE mobile=? `
- err = orm.NewOrm().Raw(sql, mobile).QueryRow(&item)
- return
- }
- func AddWxUser(companyId int64,mobile,realName string) (err error) {
- sql:=`INSERT INTO wx_user(company_id,real_name,mobile,first_login,enabled,is_note,from_type,apply_method) VALUES (?,?,?,1,1,1,'report',0);`
- orm.NewOrm().Raw(sql,companyId,realName,mobile).Exec()
- return
- }
|