Commit 5ad09fd5 authored by Quxl's avatar Quxl

修复BUG

parent 66e14201
......@@ -226,7 +226,7 @@ public class MemberServiceImpl implements MemberService {
Long last_modify_time = System.currentTimeMillis();
String sql = "update fc_member_film set film_country = ?, dialogue_lang = ?, subtitle_lang = ?, co_production_country = ?, film_total_time = ?, completion_date = ?, show_date = ?, film_medium = ?, film_format = ?, film_express_no = ?, film_format_url = ?, film_format_passw = ?, film_format_other = ?, last_modify_time = ? where member_id = ? and id = ?";
String str = StringUtil.join(",", "", "", "", co_production_country);
Object[] args = new Object[]{str, film_country, dialogue_lang, subtitle_lang, str, film_total_time, completion_date, show_date, film_medium, film_format, film_express_no, film_format_url, film_format_passw, film_format_other, last_modify_time, member_id, member_film_id};
Object[] args = new Object[]{film_country, dialogue_lang, subtitle_lang, str, film_total_time, completion_date, show_date, film_medium, film_format, film_express_no, film_format_url, film_format_passw, film_format_other, last_modify_time, member_id, member_film_id};
jdbcTemplate.executeUpdate(sql, args);
}
......
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