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}
id, create_date, modify_date, orders, access_code
delete from t_global_config
where id = #{id,jdbcType=BIGINT}
delete from t_global_config
insert into t_global_config (id, create_date, modify_date,
orders, access_code)
values (#{id,jdbcType=BIGINT}, #{createDate,jdbcType=TIMESTAMP}, #{modifyDate,jdbcType=TIMESTAMP},
#{orders,jdbcType=INTEGER}, #{accessCode,jdbcType=VARCHAR})
insert into t_global_config
id,
create_date,
modify_date,
orders,
access_code,
#{id,jdbcType=BIGINT},
#{createDate,jdbcType=TIMESTAMP},
#{modifyDate,jdbcType=TIMESTAMP},
#{orders,jdbcType=INTEGER},
#{accessCode,jdbcType=VARCHAR},
update t_global_config
id = #{record.id,jdbcType=BIGINT},
create_date = #{record.createDate,jdbcType=TIMESTAMP},
modify_date = #{record.modifyDate,jdbcType=TIMESTAMP},
orders = #{record.orders,jdbcType=INTEGER},
access_code = #{record.accessCode,jdbcType=VARCHAR},
update t_global_config
set id = #{record.id,jdbcType=BIGINT},
create_date = #{record.createDate,jdbcType=TIMESTAMP},
modify_date = #{record.modifyDate,jdbcType=TIMESTAMP},
orders = #{record.orders,jdbcType=INTEGER},
access_code = #{record.accessCode,jdbcType=VARCHAR}
update t_global_config
create_date = #{createDate,jdbcType=TIMESTAMP},
modify_date = #{modifyDate,jdbcType=TIMESTAMP},
orders = #{orders,jdbcType=INTEGER},
access_code = #{accessCode,jdbcType=VARCHAR},
where id = #{id,jdbcType=BIGINT}
update t_global_config
set create_date = #{createDate,jdbcType=TIMESTAMP},
modify_date = #{modifyDate,jdbcType=TIMESTAMP},
orders = #{orders,jdbcType=INTEGER},
access_code = #{accessCode,jdbcType=VARCHAR}
where id = #{id,jdbcType=BIGINT}
insert into t_global_config (id,create_date,modify_date,orders,access_code)
select #{item.id,jdbcType=BIGINT},#{item.createDate,jdbcType=TIMESTAMP},#{item.modifyDate,jdbcType=TIMESTAMP},#{item.orders,jdbcType=INTEGER},#{item.accessCode,jdbcType=VARCHAR} from dual
DELETE FROM t_global_config where id in
#{item}
update t_global_config
id = #{id},
create_date = #{createDate},
modify_date = #{modifyDate},
orders = #{orders},
access_code = #{accessCode},
where id in
#{item}