|
@@ -32,6 +32,11 @@ func AddUsePerson(this *entmanageapplication.AddUsePersonReq) *entmanageapplicat
|
|
|
code = int64(-1)
|
|
|
} else {
|
|
|
for _, v := range UserArr {
|
|
|
+ //过滤空值2023-01-04
|
|
|
+ if v == "" {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ //
|
|
|
entUserId, _ := strconv.Atoi(v)
|
|
|
data := JyMysql.FindOne(EntnichePower, map[string]interface{}{"ent_user_id": entUserId}, "", "")
|
|
|
if data != nil && len(*data) > 0 {
|