Commit bdd86052 authored by Quxl's avatar Quxl

x

parent d0ce8a1f
......@@ -395,6 +395,9 @@ public class AdminReviewController {
List<Fc_review_record_ext> exts = new ArrayList<Fc_review_record_ext>();
if(ext_score != null) {
for(int i = 0; i < ext_score.length; i++) {
XRException.assertNotBlank("奖项评分不能为空", ext_score[i]);
XRException.assertNotBlank("获奖类型不能为空", ext_type[i]);
XRException.assertNotBlank("获奖主体不能为空", ext_name[i]);
Fc_review_record_ext ext = new Fc_review_record_ext();
ext.setRecord_id(ru.getId());
ext.setExt_title(ext_title[i]);
......
......@@ -22,6 +22,7 @@ import com.egolm.film.bean.Fc_review_doubtful;
import com.egolm.film.bean.Fc_review_record;
import com.egolm.film.bean.Fc_review_record_ext;
import com.egolm.film.config.XException;
import com.egolm.film.config.XRException;
import com.egolm.film.model.LoginToken;
import io.swagger.annotations.Api;
......@@ -175,6 +176,9 @@ public class UserReviewController {
if(ext_title != null && ext_score != null) {
if(ext_title.length == ext_score.length) {
for(int i = 0; i < ext_title.length; i++) {
XRException.assertNotBlank("奖项评分不能为空", ext_score[i]);
XRException.assertNotBlank("获奖类型不能为空", ext_type[i]);
XRException.assertNotBlank("获奖主体不能为空", ext_name[i]);
Fc_review_record_ext ext = new Fc_review_record_ext();
ext.setRecord_id(ru.getId());
ext.setExt_title(ext_title[i]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment