Browse Source

update

add_mode
DengBiao 1 year ago
parent
commit
8eb9bf99fc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/admin/svc/enterprise_manage/svc_central_kitchen_for_school.go

+ 1
- 1
app/admin/svc/enterprise_manage/svc_central_kitchen_for_school.go View File

@@ -536,7 +536,7 @@ func CentralKitchenForSchoolStudentAdmission(req md.CentralKitchenForSchoolStude


func CentralKitchenForSchoolStudentAdmissionByClass(req md.CentralKitchenForSchoolStudentAdmissionByClass) (err error) { func CentralKitchenForSchoolStudentAdmissionByClass(req md.CentralKitchenForSchoolStudentAdmissionByClass) (err error) {
// 删除 class_with_user 记录 // 删除 class_with_user 记录
_, err = db.Db.In("class_id = ?", req.ClassIds).Delete(model.ClassWithUser{})
_, err = db.Db.In("class_id", req.ClassIds).Delete(model.ClassWithUser{})
return return
} }




Loading…
Cancel
Save