| | |
| | | <result column="safe_qty" property="safeQty"/> |
| | | <result column="weight" property="weight"/> |
| | | <result column="length" property="length"/> |
| | | <result column="man_length" property="manLength"/> |
| | | <result column="volume" property="volume"/> |
| | | <result column="three_code" property="threeCode"/> |
| | | <result column="supp" property="supp"/> |
| | |
| | | and a.maktx like concat('%',#{maktx},'%') |
| | | </if> |
| | | <if test="model != null and model != ''"> |
| | | and a.model like concat('%',#{model},'%') |
| | | and a.model = #{model} |
| | | </if> |
| | | <if test="volume != null and volume != ''"> |
| | | and a.volume like concat('%',#{volume},'%') |
| | | and a.volume = #{volume} |
| | | </if> |
| | | <if test="zpallet != null and zpallet != ''"> |
| | | and a.zpallet like concat('%',#{zpallet},'%') |
| | | </if> |
| | | <if test="ioType != null"> |
| | | and b.io_type = #{ioType} |
| | | </if> |
| | | <if test="wrkSts != null"> |
| | | and b.wrk_sts = #{wrkSts} |
| | | </if> |
| | | </sql> |
| | | |
| | | <select id="selectWrkDetlLogs" resultMap="BaseResultMap"> |