| | |
| | | <result property="id" column="id" /> |
| | | <result property="routeCode" column="route_code" /> |
| | | <result property="routeName" column="route_name" /> |
| | | <result property="lineCode" column="line_code" /> |
| | | <result property="lineName" column="line_name" /> |
| | | <result property="productCode" column="product_code" /> |
| | | <result property="productName" column="product_name" /> |
| | | <result property="version" column="version" /> |
| | |
| | | </resultMap> |
| | | |
| | | <sql id="selectBsTechnologyRouteInfoVo"> |
| | | select id, route_code, route_name, product_code, product_name, version, status, data_source, remark, create_user, create_time, update_user, update_time, spare_field_1, spare_field_2, spare_field_3, spare_field_4 from bs_technology_route_info |
| | | select id, route_code, route_name, line_code, line_name , product_code, product_name, version, status, data_source, remark, create_user, create_time, update_user, update_time, spare_field_1, spare_field_2, spare_field_3, spare_field_4 from bs_technology_route_info |
| | | </sql> |
| | | |
| | | <select id="selectBsTechnologyRouteInfoList" parameterType="BsTechnologyRouteInfo" resultMap="BsTechnologyRouteInfoResult"> |
| | |
| | | <if test="productCode != null and productCode != ''"> and product_code like concat('%', #{productCode}, '%')</if> |
| | | <if test="productName != null and productName != ''"> and product_name like concat('%', #{productName}, '%')</if> |
| | | <if test="status != null and status != ''"> and status = #{status}</if> |
| | | <if test="lineCode != null and lineCode != ''"> and line_code like concat('%', #{lineCode}, '%')</if> |
| | | <if test="lineName != null and lineName != ''"> and line_name like concat('%', #{lineName}, '%')</if> |
| | | <if test="dataSource != null and dataSource != ''"> and data_source like concat('%', #{dataSource}, '%')</if> |
| | | </where> |
| | | </select> |
| | |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">id,</if> |
| | | <if test="routeCode != null and routeCode != ''">route_code,</if> |
| | | <if test="lineCode != null and lineCode != ''">line_code,</if> |
| | | <if test="lineName != null and lineName != ''">line_name,</if> |
| | | <if test="routeName != null">route_name,</if> |
| | | <if test="productCode != null and productCode != ''">product_code,</if> |
| | | <if test="productName != null">product_name,</if> |
| | |
| | | <if test="id != null">#{id},</if> |
| | | <if test="routeCode != null and routeCode != ''">#{routeCode},</if> |
| | | <if test="routeName != null">#{routeName},</if> |
| | | <if test="lineCode != null and lineCode != ''">#{lineCode},</if> |
| | | <if test="lineName != null and lineName != ''">#{lineName},</if> |
| | | <if test="productCode != null and productCode != ''">#{productCode},</if> |
| | | <if test="productName != null">#{productName},</if> |
| | | <if test="version != null">#{version},</if> |
| | |
| | | update bs_technology_route_info |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="routeCode != null and routeCode != ''">route_code = #{routeCode},</if> |
| | | <if test="lineCode != null and lineCode != ''">line_code = #{lineCode},</if> |
| | | <if test="lineName != null and lineName != ''">line_name = #{lineName},</if> |
| | | <if test="routeName != null">route_name = #{routeName},</if> |
| | | <if test="productCode != null and productCode != ''">product_code = #{productCode},</if> |
| | | <if test="productName != null">product_name = #{productName},</if> |