...
|
...
|
@@ -210,6 +210,7 @@ func (repository *UserRepository) Find(queryOptions map[string]interface{}) (int |
|
|
if v, ok := queryOptions["inCompanyIds"]; ok && len(v.([]int64)) > 0 {
|
|
|
query.Where(`company_id in (?)`, pg.In(v))
|
|
|
}
|
|
|
query.SetWhereByQueryOption("user_code = ?", "userCode")
|
|
|
query.SetWhereByQueryOption("user_base_id=?", "userBaseId")
|
|
|
query.SetWhereByQueryOption("(user_type & ?)>0", "userType")
|
|
|
query.SetWhereByQueryOption("enable_status=?", "enableStatus")
|
...
|
...
|
|