Browse Source

fix: 修复没有销售姓名

zqbao 10 months ago
parent
commit
9a72f60a8c
2 changed files with 25 additions and 3 deletions
  1. 1 1
      models/response/user.go
  2. 24 2
      models/user.go

+ 1 - 1
models/response/user.go

@@ -7,7 +7,7 @@ import (
 )
 
 type UserListResp struct {
-	List   []*models.User
+	List   []*models.UserView
 	Paging *paging.PagingItem `description:"分页数据"`
 }
 

+ 24 - 2
models/user.go

@@ -25,6 +25,25 @@ type User struct {
 	IsRegistered   bool      `description:"是否注册: 0表示没有注册,1表示注册"`
 }
 
+type UserView struct {
+	UserId         int       `orm:"pk" description:"用户id"`
+	RealName       string    `description:"姓名"`
+	Phone          string    `description:"手机号"`
+	AreaCode       string    `description:"区号"`
+	Email          string    `description:"邮箱"`
+	SellerId       int       `description:"销售id(SysUserId)"`
+	SellerName     string    `description:"销售姓名"`
+	Company        string    `description:"所属公司"`
+	ValidStartTime time.Time `description:"有效期开始时间"`
+	ValidEndTime   time.Time `description:"有效期结束时间"`
+	Status         int       `description:"用户类型: 0表示禁用,1表示潜在客户,2表示正式客户"`
+	CreateTime     time.Time `description:"系统中首次新增用户的时间"`
+	ModifyTime     time.Time `description:"系统中用户信息变更的时间"`
+	RegisterTime   time.Time `description:"用户首次登录小程序的时间"`
+	IsSubscribed   bool      `description:"是否关注公众号: 0表示没有关注,1表示关注"`
+	IsRegistered   bool      `description:"是否注册: 0表示没有注册,1表示注册"`
+}
+
 func (u *User) Save() (err error) {
 	o := orm.NewOrmUsingDB("master")
 	_, err = o.InsertOrUpdate(u)
@@ -99,8 +118,11 @@ func GetUserById(userId int) (item *User, err error) {
 	return
 }
 
-func GetUserList(condition string, pars []interface{}, startSize, pageSize int) (items []*User, err error) {
-	sql := `SELECT * FROM user WHERE 1=1 `
+func GetUserList(condition string, pars []interface{}, startSize, pageSize int) (items []*UserView, err error) {
+	sql := `SELECT u.*, su.sys_real_name AS seller_name FROM user AS u
+	LEFT JOIN sys_user AS su
+	ON u.seller_id = su.sys_user_id
+	WHERE 1=1 `
 	if condition != "" {
 		sql += condition
 	}