| | |
| | | <result column="maktx" property="maktx"/> |
| | | <result column="batch" property="batch"/> |
| | | <result column="order_no" property="orderNo"/> |
| | | <result column="container_no" property="containerNo"/> |
| | | <result column="teu" property="teu"/> |
| | | <result column="plate_no" property="plateNo"/> |
| | | <result column="train_no" property="trainNo"/> |
| | | <result column="freq_type" property="freqType"/> |
| | | <result column="cube_number" property="cubeNumber"/> |
| | | |
| | | <result column="specs" property="specs"/> |
| | | <result column="model" property="model"/> |
| | |
| | | <result column="box_type1" property="boxType1" /> |
| | | <result column="box_type2" property="boxType2" /> |
| | | <result column="box_type3" property="boxType3" /> |
| | | <result column="owner" property="owner"/> |
| | | <result column="uuid" property="uuid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="batchSeq"> |
| | |
| | | <if test="batch != null and batch != ''"> |
| | | and a.batch like concat('%',#{batch},'%') |
| | | </if> |
| | | <if test="sku != null and sku != ''"> |
| | | and a.sku like concat('%',#{sku},'%') |
| | | </if> |
| | | <if test="memo != null and memo != ''"> |
| | | and a.memo like concat('%',#{memo},'%') |
| | | </if> |
| | | <if test="matnr != null and matnr != ''"> |
| | | and a.matnr like concat('%',#{matnr},'%') |
| | | </if> |