and ${criterion.condition}
and ${criterion.condition} #{criterion.value}
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
and ${criterion.condition}
#{listItem}
and ${criterion.condition}
and ${criterion.condition} #{criterion.value}
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
and ${criterion.condition}
#{listItem}
config_id, config_name, config_key, config_value, config_type, create_by, create_time,
update_by, update_time, remark
delete from sys_config
insert into sys_config (config_id, config_name, config_key,
config_value, config_type, create_by,
create_time, update_by, update_time,
remark)
values (#{configId,jdbcType=INTEGER}, #{configName,jdbcType=VARCHAR}, #{configKey,jdbcType=VARCHAR},
#{configValue,jdbcType=VARCHAR}, #{configType,jdbcType=CHAR}, #{createBy,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR}, #{updateTime,jdbcType=TIMESTAMP},
#{remark,jdbcType=VARCHAR})
insert into sys_config
config_id,
config_name,
config_key,
config_value,
config_type,
create_by,
create_time,
update_by,
update_time,
remark,
#{configId,jdbcType=INTEGER},
#{configName,jdbcType=VARCHAR},
#{configKey,jdbcType=VARCHAR},
#{configValue,jdbcType=VARCHAR},
#{configType,jdbcType=CHAR},
#{createBy,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP},
#{updateBy,jdbcType=VARCHAR},
#{updateTime,jdbcType=TIMESTAMP},
#{remark,jdbcType=VARCHAR},
update sys_config
config_id = #{record.configId,jdbcType=INTEGER},
config_name = #{record.configName,jdbcType=VARCHAR},
config_key = #{record.configKey,jdbcType=VARCHAR},
config_value = #{record.configValue,jdbcType=VARCHAR},
config_type = #{record.configType,jdbcType=CHAR},
create_by = #{record.createBy,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_by = #{record.updateBy,jdbcType=VARCHAR},
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
remark = #{record.remark,jdbcType=VARCHAR},
update sys_config
set config_id = #{record.configId,jdbcType=INTEGER},
config_name = #{record.configName,jdbcType=VARCHAR},
config_key = #{record.configKey,jdbcType=VARCHAR},
config_value = #{record.configValue,jdbcType=VARCHAR},
config_type = #{record.configType,jdbcType=CHAR},
create_by = #{record.createBy,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_by = #{record.updateBy,jdbcType=VARCHAR},
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
remark = #{record.remark,jdbcType=VARCHAR}