| | |
| | | <result property="hupQty" column="hup_qty" /> |
| | | <result property="lodQty" column="lod_qty" /> |
| | | <result property="type" column="type" /> |
| | | <result property="plant" column="plant" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectApsWeldSeamStandardVo"> |
| | | select id, item_code, item_figure, item_figure_version, hup_qty, lod_qty, type, del_flag from aps_weld_seam_standard |
| | | select id, item_code, item_figure, item_figure_version, hup_qty, lod_qty, type, plant, del_flag from aps_weld_seam_standard |
| | | </sql> |
| | | |
| | | <select id="selectApsWeldSeamStandardList" parameterType="com.aps.core.domain.ApsWeldSeamStandard" resultMap="ApsWeldSeamStandardResult"> |
| | |
| | | <if test="hupQty != null "> and hup_qty = #{hupQty}</if> |
| | | <if test="lodQty != null "> and lod_qty = #{lodQty}</if> |
| | | <if test="type != null and type != ''"> and type = #{type}</if> |
| | | <if test="plant != null and plant != ''"> and plant = #{plant}</if> |
| | | and del_flag = 0 |
| | | </where> |
| | | </select> |