| | |
| | | <if test="receiptAmount != null "> and thisTab.receipt_amount = #{receiptAmount}</if> |
| | | <if test="remainingPendingAmount != null "> and thisTab.remaining_pending_amount = #{remainingPendingAmount}</if> |
| | | <if test="deleted != null "> and thisTab.deleted = #{deleted}</if> |
| | | <if test="claimDetailId != null "> and thisTab.claim_detail_id = #{claimDetailId}</if> |
| | | </sql> |
| | | |
| | | <!--查询--> |
| | |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="deleted != null">deleted,</if> |
| | | <if test="claimDetailId != null">claim_detail_id,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="billId != null">#{billId},</if> |
| | |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="deleted != null">#{deleted},</if> |
| | | <if test="claimDetailId != null">#{claimDetailId},</if> |
| | | </trim> |
| | | </insert> |
| | | |