| | |
| | | preDegrees, |
| | | mw.pre_reading_time preReadingTime,mw.cur_reading_time curReadingTime,pfa1.`value` deadlineTime,pfa1.`value` maxEndTime,mw.price |
| | | mwPrice, |
| | | pfa2.`value` ownerName,t.batch_id,t.batch_id batchId |
| | | pfa2.`value` ownerName,t.batch_id,t.batch_id batchId, |
| | | pfc.pay_online payOnline,pfc.scale,pfc.decimal_place decimalPlace,pfc.units |
| | | from pay_fee t |
| | | INNER join pay_fee_config pfc on t.config_id = pfc.config_id and |
| | | pfc.status_cd = '0' |
| | |
| | | <if test="payerObjId !=null and payerObjId != ''"> |
| | | and t.payer_obj_id= #{payerObjId} |
| | | </if> |
| | | <if test="payerObjIds != null "> |
| | | <if test="payerObjIds != null and payerObjIds.length > 0"> |
| | | and t.payer_obj_id in |
| | | <foreach collection="payerObjIds" item="item" open="(" close=")" separator=","> |
| | | #{item} |
| | |
| | | <if test="deductFrom !=null and deductFrom != ''"> |
| | | and pfc.deduct_from = #{deductFrom} |
| | | </if> |
| | | |
| | | order by t.create_time desc |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | | |
| | | </select> |
| | | |
| | | |