select id, symbol, show_symbol,min_sell, coin, base_coin, fee_rate, coin_precision, base_precision, sell_min, buy_max, order_min, order_max, enable, is_show, is_deal, market_buy, market_sell, limited_buy, limited_sell, logo, create_by, create_time, update_by, update_time, search_value, market from t_currency_symbol
insert into t_currency_symbol
symbol,
show_symbol,
coin,
base_coin,
fee_rate,
coin_precision,
base_precision,
sell_min,
buy_max,
order_min,
order_max,
enable,
is_show,
is_deal,
market_buy,
market_sell,
limited_buy,
limited_sell,
logo,
create_by,
create_time,
update_by,
update_time,
search_value,
market,
min_sell,
#{symbol},
#{showSymbol},
#{coin},
#{baseCoin},
#{feeRate},
#{coinPrecision},
#{basePrecision},
#{sellMin},
#{buyMax},
#{orderMin},
#{orderMax},
#{enable},
#{isShow},
#{isDeal},
#{marketBuy},
#{marketSell},
#{limitedBuy},
#{limitedSell},
#{logo},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{searchValue},
#{market},
#{minSell},
update t_currency_symbol
symbol = #{symbol},
show_symbol = #{showSymbol},
coin = #{coin},
base_coin = #{baseCoin},
fee_rate = #{feeRate},
coin_precision = #{coinPrecision},
base_precision = #{basePrecision},
sell_min = #{sellMin},
buy_max = #{buyMax},
order_min = #{orderMin},
order_max = #{orderMax},
enable = #{enable},
is_show = #{isShow},
is_deal = #{isDeal},
market_buy = #{marketBuy},
market_sell = #{marketSell},
limited_buy = #{limitedBuy},
limited_sell = #{limitedSell},
logo = #{logo},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
search_value = #{searchValue},
market = #{market},
min_sell=#{minSell},
where id = #{id}
delete from t_currency_symbol where id = #{id}
delete from t_currency_symbol where id in
#{id}