old mode 100644
new mode 100755
| | |
| | | <insert id="saveFeeConfigInfoInstance" parameterType="Map"> |
| | | insert into pay_fee_config( |
| | | fee_type_cd,computing_formula,additional_amount,status_cd,square_price,is_default,config_id,fee_flag,fee_name, |
| | | start_time,end_time,community_id,b_id,bill_type,payment_cd,payment_cycle,t.computing_formula_text |
| | | start_time,end_time,community_id,b_id,bill_type,payment_cd,payment_cycle,computing_formula_text |
| | | ) select |
| | | t.fee_type_cd,t.computing_formula,t.additional_amount,'0',t.square_price,t.is_default,t.config_id,t.fee_flag,t.fee_name, |
| | | t.start_time,t.end_time,t.community_id, |
| | |
| | | <if test="feeName !=null and feeName != ''"> |
| | | and t.fee_name like '%${feeName}%' |
| | | </if> |
| | | <if test="feeNameEq !=null and feeNameEq != ''"> |
| | | and t.fee_name = #{feeNameEq} |
| | | </if> |
| | | <if test="startTime !=null "> |
| | | and t.start_time= #{startTime} |
| | | </if> |