| | |
| | | o.state |
| | | from mom_ocean.orders o,mom_ocean.material m |
| | | <where> |
| | | <if test="orderCode != null"> |
| | | and order_code = #{orderCode} |
| | | <if test="orderCode != null and orderCode!=''"> |
| | | and order_code LIKE CONCAT('%',#{orderCode},'%') |
| | | </if> |
| | | <if test="time != null"> |
| | | <if test="time != null and time!=''"> |
| | | and o.create_time = #{time} |
| | | </if> |
| | | <if test="name != null"> |
| | | and m.name = #{name} |
| | | <if test="name != null and name!=''"> |
| | | and m.name LIKE CONCAT('%',#{name},'%') |
| | | </if> |
| | | <if test="state != null"> |
| | | <if test="state != null and state!=''"> |
| | | and o.state = #{state} |
| | | </if> |
| | | and o.code=m.code |