|
@@ -578,6 +578,9 @@ func GetWxUserListByUserIds(userIds string) (list []*WxUserItem, err error) {
|
|
|
// GetWxUserListByUserIdsArr 根据用户ID集合获取用户
|
|
|
func GetWxUserListByUserIdsArr(userIds []int) (list []*WxUserItem, err error) {
|
|
|
lenArr := len(userIds)
|
|
|
+ if lenArr == 0 {
|
|
|
+ return
|
|
|
+ }
|
|
|
o := orm.NewOrmUsingDB("weekly_report")
|
|
|
sql := ` SELECT u.*, c.company_name FROM wx_user AS u
|
|
|
INNER JOIN company AS c ON c.company_id = u.company_id
|