|  |  |  | 
|---|
|  |  |  | <mapper namespace="com.xcong.excoin.modules.platform.dao.PlatformFeeSettingDao"> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <select id="getFeeSettingByTypeAndSymbolLable" resultType="com.xcong.excoin.modules.platform.entity.PlatformFeeSettingEntity"> | 
|---|
|  |  |  | select * from fee_setting | 
|---|
|  |  |  | select * from platform_fee_setting | 
|---|
|  |  |  | <where> | 
|---|
|  |  |  | <if test="type != null  and  type  != ''"> | 
|---|
|  |  |  | type = #{type} | 
|---|
|  |  |  | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <select id="getFeeSettingByTypeAndSymbol" resultType="com.xcong.excoin.modules.platform.entity.PlatformFeeSettingEntity"> | 
|---|
|  |  |  | select * from fee_setting where  type = #{type} and symbol = #{symbol} | 
|---|
|  |  |  | select * from platform_fee_setting where  type = #{type} and symbol = #{symbol} | 
|---|
|  |  |  | </select> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | </mapper> | 
|---|