| | |
| | | <where> |
| | | <if test="params.beginYear != null and params.beginYear != '' and params.endYear != null and params.endYear != ''"> and year between #{params.beginYear} and #{params.endYear}</if> |
| | | <if test="params.beginMonth != null and params.beginMonth != '' and params.endMonth != null and params.endMonth != ''"> and month between #{params.beginMonth} and #{params.endMonth}</if> |
| | | <if test="productionBase != null and productionBase != ''"> and production_base like concat('%', #{productionBase}, '%')</if> |
| | | <if test="pipingOrderRequirement != null "> and piping_order_requirement = #{pipingOrderRequirement}</if> |
| | | <if test="gasOrderRequirement != null "> and gas_order_requirement = #{gasOrderRequirement}</if> |
| | | <if test="pipingPredictionRequirement != null "> and piping_prediction_requirement = #{pipingPredictionRequirement}</if> |
| | | <if test="gasPredictionRequirement != null "> and gas_prediction_requirement = #{gasPredictionRequirement}</if> |
| | | <if test="reserveEmergencyOrderOutput != null "> and reserve_emergency_order_output = #{reserveEmergencyOrderOutput}</if> |
| | | <if test="total != null "> and total = #{total}</if> |
| | | <if test="days != null "> and days = #{days}</if> |
| | | <if test="requirementDayWeldSeam != null "> and requirement_day_weld_seam = #{requirementDayWeldSeam}</if> |
| | | <if test="productionDayWeldSeam != null "> and production_day_weld_seam = #{productionDayWeldSeam}</if> |
| | | <if test="isSatisfy != null and isSatisfy != ''"> and is_satisfy = #{isSatisfy}</if> |
| | | <if test="productionBase != null and productionBase != ''"> and production_base like '%'|| #{productionBase}|| '%'</if> |
| | | </where> |
| | | </select> |
| | | |