select id, question_type, bank_id, status, company_id,answer,title,privatize,content,version, create_by, create_time, update_by, update_time, remark
from ex_course
INSERT INTO
`train_exam`.`ex_question`
( `question_type`, `bank_id`, `company_id`, `status`, `answer`, `title`, `content`, `privatize`, `create_time`,
`create_by`, `update_time`, `update_by`, `remark`, `version`)
VALUES
(#{question.questionType}, #{question.bankId}, #{question.companyId}, #{question.status}, #{question.answer},
#{question.title}, #{question.content}, #{question.privatize}, #{question.createTime}, #{question.createBy},
#{question.updateTime}, #{question.updateBy}, #{question.remark}, #{question.version})