liuxm
2024-05-16 4d2a6bd70db3fdf4646b23244563252e41a514db
pms-parent/pms-global/src/main/resources/mapper/PltProductionLineMapper.xml
@@ -12,13 +12,14 @@
            <result property="director" column="director" jdbcType="VARCHAR"/>
            <result property="dMobile" column="d_mobile" jdbcType="VARCHAR"/>
            <result property="installTime" column="install_time" jdbcType="VARCHAR"/>
            <result property="deleted" column="deleted" jdbcType="TINYINT"/>
        <result column="disabled" property="disabled" typeHandler="com.dy.common.mybatis.BooleanTypeHandler"/>
        <result property="deleted" column="deleted" typeHandler="com.dy.common.mybatis.BooleanTypeHandler"/>
            <result property="remark" column="remark" jdbcType="VARCHAR"/>
            <result property="dt" column="dt" jdbcType="TIMESTAMP"/>
    </resultMap>
    <sql id="Base_Column_List">
        id,name,type,
        id,name,type,disabled,
        factory,director,d_mobile,
        install_time,deleted,remark,dt
    </sql>
@@ -90,6 +91,9 @@
                </if>
                <if test="installTime != null">
                    install_time = #{installTime,jdbcType=VARCHAR},
            </if>
            <if test="disabled != null">
                disabled = #{disabled},
                </if>
                <if test="deleted != null">
                    deleted = #{deleted,jdbcType=TINYINT},
@@ -164,6 +168,11 @@
            and id != #{id}
        </if>
    </select>
    <select id="selectAll" resultType="com.dy.pmsGlobal.pojoPlt.PltProductionLine">
        select
        <include refid="Base_Column_List" />
        from plt_production_line where deleted != 1 and disabled != 1
    </select>
    <update id="deleteLogicById" parameterType="java.lang.Long">
        update plt_production_line set deleted = 1