| | |
| | | </resultMap> |
| | | |
| | | <sql id="selectApsStandardProcessRouteLineVo"> |
| | | select id, route_id, route_num, route_name, start_date, end_date, create_time, org_code, shop_code, productivity_model, design_capacity, del_flag, create_by, update_by, update_time from aps_standard_process_route_line |
| | | select id, route_id, route_num, route_name, start_date, end_date, create_time, org_code, |
| | | shop_code, productivity_model, design_capacity, del_flag, create_by, update_by, |
| | | update_time |
| | | from aps_standard_process_route_line |
| | | </sql> |
| | | |
| | | <select id="selectApsStandardProcessRouteLineList" parameterType="ApsStandardProcessRouteLine" resultMap="ApsStandardProcessRouteLineResult"> |
| | |
| | | <if test="shopCode != null and shopCode != ''"> and shop_code = #{shopCode}</if> |
| | | <if test="productivityModel != null and productivityModel != ''"> and productivity_model = #{productivityModel}</if> |
| | | <if test="designCapacity != null and designCapacity != ''"> and design_capacity = #{designCapacity}</if> |
| | | and del_flag = '0' |
| | | </where> |
| | | </select> |
| | | |