| | |
| | | <if test="batch != null and batch != ''"> |
| | | and a.batch like concat('%',#{batch},'%') |
| | | </if> |
| | | <if test="model != null and model != ''"> |
| | | and a.model like concat('%',#{model},'%') |
| | | </if> |
| | | <if test="matnr != null and matnr != ''"> |
| | | and a.matnr like concat('%',#{matnr},'%') |
| | | </if> |
| | |
| | | <if test="specs != null and specs != ''"> |
| | | and a.specs like concat('%',#{specs},'%') |
| | | </if> |
| | | <if test="unit != null and unit != ''"> |
| | | and a.unit like concat('%',#{unit},'%') |
| | | </if> |
| | | <if test="brand != null and brand != ''"> |
| | | and a.brand like concat('%',#{brand},'%') |
| | | </if> |
| | | </sql> |
| | | |
| | | <select id="selectWrkDetlLogs" resultMap="BaseResultMap"> |