id, file_name, file_path, file_type, file_length, plate, plate_color, last_reco_time,
temp_path, reco_plate, reco_color, reco_correct
and file_name = #{fileName,jdbcType=VARCHAR}
and file_path = #{filePath,jdbcType=VARCHAR}
and file_type = #{fileType,jdbcType=VARCHAR}
and file_length = #{fileLength,jdbcType=INTEGER}
and plate = #{plate,jdbcType=VARCHAR}
and plate_color = #{plateColor,jdbcType=VARCHAR}
and last_reco_time = #{lastRecoTime,jdbcType=VARCHAR}
and temp_path = #{tempPath,jdbcType=VARCHAR}
and reco_plate = #{recoPlate,jdbcType=VARCHAR}
and reco_color = #{recoColor,jdbcType=VARCHAR}
and reco_correct = #{recoCorrect,jdbcType=INTEGER}
select seq from sqlite_sequence WHERE name = 't_plate_file'
insert into t_plate_file (file_name, file_path, file_type,
file_length, plate, plate_color,
last_reco_time, temp_path, reco_plate,
reco_color, reco_correct)
values (#{fileName,jdbcType=VARCHAR}, #{filePath,jdbcType=VARCHAR}, #{fileType,jdbcType=VARCHAR},
#{fileLength,jdbcType=INTEGER}, #{plate,jdbcType=VARCHAR}, #{plateColor,jdbcType=VARCHAR},
#{lastRecoTime,jdbcType=VARCHAR}, #{tempPath,jdbcType=VARCHAR}, #{recoPlate,jdbcType=VARCHAR},
#{recoColor,jdbcType=VARCHAR}, #{recoCorrect,jdbcType=INTEGER})
select seq from sqlite_sequence WHERE name = 't_plate_file'
insert into t_plate_file
file_name,
file_path,
file_type,
file_length,
plate,
plate_color,
last_reco_time,
temp_path,
reco_plate,
reco_color,
reco_correct,
#{fileName,jdbcType=VARCHAR},
#{filePath,jdbcType=VARCHAR},
#{fileType,jdbcType=VARCHAR},
#{fileLength,jdbcType=INTEGER},
#{plate,jdbcType=VARCHAR},
#{plateColor,jdbcType=VARCHAR},
#{lastRecoTime,jdbcType=VARCHAR},
#{tempPath,jdbcType=VARCHAR},
#{recoPlate,jdbcType=VARCHAR},
#{recoColor,jdbcType=VARCHAR},
#{recoCorrect,jdbcType=INTEGER},
update t_plate_file
file_name = #{fileName,jdbcType=VARCHAR},
file_path = #{filePath,jdbcType=VARCHAR},
file_type = #{fileType,jdbcType=VARCHAR},
file_length = #{fileLength,jdbcType=INTEGER},
plate = #{plate,jdbcType=VARCHAR},
plate_color = #{plateColor,jdbcType=VARCHAR},
last_reco_time = #{lastRecoTime,jdbcType=VARCHAR},
temp_path = #{tempPath,jdbcType=VARCHAR},
reco_plate = #{recoPlate,jdbcType=VARCHAR},
reco_color = #{recoColor,jdbcType=VARCHAR},
reco_correct = #{recoCorrect,jdbcType=INTEGER},
where id = #{id,jdbcType=INTEGER}
update t_plate_file
set file_name = #{fileName,jdbcType=VARCHAR},
file_path = #{filePath,jdbcType=VARCHAR},
file_type = #{fileType,jdbcType=VARCHAR},
file_length = #{fileLength,jdbcType=INTEGER},
plate = #{plate,jdbcType=VARCHAR},
plate_color = #{plateColor,jdbcType=VARCHAR},
last_reco_time = #{lastRecoTime,jdbcType=VARCHAR},
temp_path = #{tempPath,jdbcType=VARCHAR},
reco_plate = #{recoPlate,jdbcType=VARCHAR},
reco_color = #{recoColor,jdbcType=VARCHAR},
reco_correct = #{recoCorrect,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
delete from t_plate_file
where id = #{id,jdbcType=INTEGER}