|
|
@ -5,88 +5,88 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<mapper namespace="com.ruoyi.system.mapper.TdTrainMapper">
|
|
|
|
<mapper namespace="com.ruoyi.system.mapper.TdTrainMapper">
|
|
|
|
|
|
|
|
|
|
|
|
<resultMap type="TdTrain" id="TdTrainResult">
|
|
|
|
<resultMap type="TdTrain" id="TdTrainResult">
|
|
|
|
<result property="ID" column="ID" />
|
|
|
|
<result property="id" column="id" />
|
|
|
|
<result property="USERNAME" column="USERNAME" />
|
|
|
|
<result property="username" column="username" />
|
|
|
|
<result property="deptName" column="DEPT_NAME" />
|
|
|
|
<result property="deptName" column="dept_name" />
|
|
|
|
<result property="trainType" column="TRAIN_TYPE" />
|
|
|
|
<result property="trainType" column="train_type" />
|
|
|
|
<result property="trainSubject" column="TRAIN_SUBJECT" />
|
|
|
|
<result property="trainSubject" column="train_subject" />
|
|
|
|
<result property="trainAddress" column="TRAIN_ADDRESS" />
|
|
|
|
<result property="trainAddress" column="train_address" />
|
|
|
|
<result property="trainDate" column="TRAIN_DATE" />
|
|
|
|
<result property="trainDate" column="train_date" />
|
|
|
|
<result property="createStaffid" column="CREATE_STAFFID" />
|
|
|
|
<result property="createStaffid" column="create_staffid" />
|
|
|
|
<result property="createDepartid" column="CREATE_DEPARTID" />
|
|
|
|
<result property="createDepartid" column="create_departid" />
|
|
|
|
<result property="createDate" column="CREATE_DATE" />
|
|
|
|
<result property="createDate" column="create_date" />
|
|
|
|
<result property="updateDepartid" column="UPDATE_DEPARTID" />
|
|
|
|
<result property="updateDepartid" column="update_departid" />
|
|
|
|
<result property="updateStaffid" column="UPDATE_STAFFID" />
|
|
|
|
<result property="updateStaffid" column="update_staffid" />
|
|
|
|
<result property="updateDate" column="UPDATE_DATE" />
|
|
|
|
<result property="updateDate" column="update_date" />
|
|
|
|
<result property="AREAID" column="AREAID" />
|
|
|
|
<result property="areaid" column="areaid" />
|
|
|
|
<result property="FRAMEWORK" column="FRAMEWORK" />
|
|
|
|
<result property="framework" column="framework" />
|
|
|
|
<result property="trainName" column="TRAIN_NAME" />
|
|
|
|
<result property="trainName" column="train_name" />
|
|
|
|
<result property="trainState" column="TRAIN_STATE" />
|
|
|
|
<result property="trainState" column="train_state" />
|
|
|
|
<result property="trainTimeend" column="TRAIN_TIMEEND" />
|
|
|
|
<result property="trainTimeend" column="train_timeend" />
|
|
|
|
<result property="PART" column="PART" />
|
|
|
|
<result property="part" column="part" />
|
|
|
|
<result property="TRAININFO" column="TRAININFO" />
|
|
|
|
<result property="traininfo" column="traininfo" />
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdTrainVo">
|
|
|
|
<sql id="selectTdTrainVo">
|
|
|
|
select ID, USERNAME, DEPT_NAME, TRAIN_TYPE, TRAIN_SUBJECT, TRAIN_ADDRESS, TRAIN_DATE, CREATE_STAFFID, CREATE_DEPARTID, CREATE_DATE, UPDATE_DEPARTID, UPDATE_STAFFID, UPDATE_DATE, AREAID, FRAMEWORK, TRAIN_NAME, TRAIN_STATE, TRAIN_TIMEEND, PART, TRAININFO from td_train
|
|
|
|
select id, username, dept_name, train_type, train_subject, train_address, train_date, create_staffid, create_departid, create_date, update_departid, update_staffid, update_date, areaid, framework, train_name, train_state, train_timeend, part, traininfo from td_train
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectTdTrainList" parameterType="TdTrain" resultMap="TdTrainResult">
|
|
|
|
<select id="selectTdTrainList" parameterType="TdTrain" resultMap="TdTrainResult">
|
|
|
|
<include refid="selectTdTrainVo"/>
|
|
|
|
<include refid="selectTdTrainVo"/>
|
|
|
|
<where>
|
|
|
|
<where>
|
|
|
|
<if test="USERNAME != null and USERNAME != ''"> and USERNAME like concat('%', #{USERNAME}, '%')</if>
|
|
|
|
<if test="username != null and username != ''"> and username like concat('%', #{username}, '%')</if>
|
|
|
|
<if test="deptName != null and deptName != ''"> and DEPT_NAME like concat('%', #{deptName}, '%')</if>
|
|
|
|
<if test="deptName != null and deptName != ''"> and dept_name like concat('%', #{deptName}, '%')</if>
|
|
|
|
<if test="trainType != null and trainType != ''"> and TRAIN_TYPE = #{trainType}</if>
|
|
|
|
<if test="trainType != null and trainType != ''"> and train_type = #{trainType}</if>
|
|
|
|
<if test="trainSubject != null and trainSubject != ''"> and TRAIN_SUBJECT = #{trainSubject}</if>
|
|
|
|
<if test="trainSubject != null and trainSubject != ''"> and train_subject = #{trainSubject}</if>
|
|
|
|
<if test="trainAddress != null and trainAddress != ''"> and TRAIN_ADDRESS = #{trainAddress}</if>
|
|
|
|
<if test="trainAddress != null and trainAddress != ''"> and train_address = #{trainAddress}</if>
|
|
|
|
<if test="trainDate != null "> and TRAIN_DATE = #{trainDate}</if>
|
|
|
|
<if test="trainDate != null "> and train_date = #{trainDate}</if>
|
|
|
|
<if test="createStaffid != null and createStaffid != ''"> and CREATE_STAFFID = #{createStaffid}</if>
|
|
|
|
<if test="createStaffid != null and createStaffid != ''"> and create_staffid = #{createStaffid}</if>
|
|
|
|
<if test="createDepartid != null and createDepartid != ''"> and CREATE_DEPARTID = #{createDepartid}</if>
|
|
|
|
<if test="createDepartid != null and createDepartid != ''"> and create_departid = #{createDepartid}</if>
|
|
|
|
<if test="createDate != null "> and CREATE_DATE = #{createDate}</if>
|
|
|
|
<if test="createDate != null "> and create_date = #{createDate}</if>
|
|
|
|
<if test="updateDepartid != null and updateDepartid != ''"> and UPDATE_DEPARTID = #{updateDepartid}</if>
|
|
|
|
<if test="updateDepartid != null and updateDepartid != ''"> and update_departid = #{updateDepartid}</if>
|
|
|
|
<if test="updateStaffid != null and updateStaffid != ''"> and UPDATE_STAFFID = #{updateStaffid}</if>
|
|
|
|
<if test="updateStaffid != null and updateStaffid != ''"> and update_staffid = #{updateStaffid}</if>
|
|
|
|
<if test="updateDate != null "> and UPDATE_DATE = #{updateDate}</if>
|
|
|
|
<if test="updateDate != null "> and update_date = #{updateDate}</if>
|
|
|
|
<if test="AREAID != null and AREAID != ''"> and AREAID = #{AREAID}</if>
|
|
|
|
<if test="areaid != null and areaid != ''"> and areaid = #{AREAID}</if>
|
|
|
|
<if test="FRAMEWORK != null and FRAMEWORK != ''"> and FRAMEWORK = #{FRAMEWORK}</if>
|
|
|
|
<if test="framework != null and framework != ''"> and framework = #{framework}</if>
|
|
|
|
<if test="trainName != null and trainName != ''"> and TRAIN_NAME like concat('%', #{trainName}, '%')</if>
|
|
|
|
<if test="trainName != null and trainName != ''"> and train_name like concat('%', #{trainName}, '%')</if>
|
|
|
|
<if test="trainState != null "> and TRAIN_STATE = #{trainState}</if>
|
|
|
|
<if test="trainState != null "> and train_state = #{trainState}</if>
|
|
|
|
<if test="trainTimeend != null "> and TRAIN_TIMEEND = #{trainTimeend}</if>
|
|
|
|
<if test="trainTimeend != null "> and train_timeend = #{trainTimeend}</if>
|
|
|
|
<if test="PART != null and PART != ''"> and PART = #{PART}</if>
|
|
|
|
<if test="part != null and part != ''"> and part = #{PART}</if>
|
|
|
|
<if test="TRAININFO != null and TRAININFO != ''"> and TRAININFO = #{TRAININFO}</if>
|
|
|
|
<if test="traininfo != null and traininfo != ''"> and traininfo = #{traininfo}</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
order by CREATE_DATE desc
|
|
|
|
order by create_date desc
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectTdTrainByID" parameterType="Long" resultMap="TdTrainResult">
|
|
|
|
<select id="selectTdTrainByID" parameterType="Long" resultMap="TdTrainResult">
|
|
|
|
<include refid="selectTdTrainVo"/>
|
|
|
|
<include refid="selectTdTrainVo"/>
|
|
|
|
where ID = #{ID}
|
|
|
|
where id = #{id}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<insert id="insertTdTrain" parameterType="TdTrain" useGeneratedKeys="true" keyProperty="ID">
|
|
|
|
<insert id="insertTdTrain" parameterType="TdTrain" useGeneratedKeys="true" keyProperty="id">
|
|
|
|
insert into td_train
|
|
|
|
insert into td_train
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="USERNAME != null">USERNAME,</if>
|
|
|
|
<if test="username != null">username,</if>
|
|
|
|
<if test="deptName != null">DEPT_NAME,</if>
|
|
|
|
<if test="deptName != null">dept_name,</if>
|
|
|
|
<if test="trainType != null">TRAIN_TYPE,</if>
|
|
|
|
<if test="trainType != null">train_type,</if>
|
|
|
|
<if test="trainSubject != null">TRAIN_SUBJECT,</if>
|
|
|
|
<if test="trainSubject != null">train_subject,</if>
|
|
|
|
<if test="trainAddress != null">TRAIN_ADDRESS,</if>
|
|
|
|
<if test="trainAddress != null">train_address,</if>
|
|
|
|
<if test="trainDate != null">TRAIN_DATE,</if>
|
|
|
|
<if test="trainDate != null">train_date,</if>
|
|
|
|
<if test="createStaffid != null">CREATE_STAFFID,</if>
|
|
|
|
<if test="createStaffid != null">create_staffid,</if>
|
|
|
|
<if test="createDepartid != null">CREATE_DEPARTID,</if>
|
|
|
|
<if test="createDepartid != null">create_departid,</if>
|
|
|
|
<if test="createDate != null">CREATE_DATE,</if>
|
|
|
|
<if test="createDate != null">create_date,</if>
|
|
|
|
<if test="updateDepartid != null">UPDATE_DEPARTID,</if>
|
|
|
|
<if test="updateDepartid != null">update_departid,</if>
|
|
|
|
<if test="updateStaffid != null">UPDATE_STAFFID,</if>
|
|
|
|
<if test="updateStaffid != null">update_staffid,</if>
|
|
|
|
<if test="updateDate != null">UPDATE_DATE,</if>
|
|
|
|
<if test="updateDate != null">update_date,</if>
|
|
|
|
<if test="AREAID != null and AREAID != ''">AREAID,</if>
|
|
|
|
<if test="areaid != null and areaid != ''">areaid,</if>
|
|
|
|
<if test="FRAMEWORK != null">FRAMEWORK,</if>
|
|
|
|
<if test="framework != null">framework,</if>
|
|
|
|
<if test="trainName != null">TRAIN_NAME,</if>
|
|
|
|
<if test="trainName != null">train_name,</if>
|
|
|
|
<if test="trainState != null">TRAIN_STATE,</if>
|
|
|
|
<if test="trainState != null">train_state,</if>
|
|
|
|
<if test="trainTimeend != null">TRAIN_TIMEEND,</if>
|
|
|
|
<if test="trainTimeend != null">train_timeend,</if>
|
|
|
|
<if test="PART != null">PART,</if>
|
|
|
|
<if test="part != null">part,</if>
|
|
|
|
<if test="TRAININFO != null">TRAININFO,</if>
|
|
|
|
<if test="traininfo != null">traininfo,</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="USERNAME != null">#{USERNAME},</if>
|
|
|
|
<if test="username != null">#{username},</if>
|
|
|
|
<if test="deptName != null">#{deptName},</if>
|
|
|
|
<if test="deptName != null">#{deptName},</if>
|
|
|
|
<if test="trainType != null">#{trainType},</if>
|
|
|
|
<if test="trainType != null">#{trainType},</if>
|
|
|
|
<if test="trainSubject != null">#{trainSubject},</if>
|
|
|
|
<if test="trainSubject != null">#{trainSubject},</if>
|
|
|
@ -98,50 +98,50 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="updateDepartid != null">#{updateDepartid},</if>
|
|
|
|
<if test="updateDepartid != null">#{updateDepartid},</if>
|
|
|
|
<if test="updateStaffid != null">#{updateStaffid},</if>
|
|
|
|
<if test="updateStaffid != null">#{updateStaffid},</if>
|
|
|
|
<if test="updateDate != null">#{updateDate},</if>
|
|
|
|
<if test="updateDate != null">#{updateDate},</if>
|
|
|
|
<if test="AREAID != null and AREAID != ''">#{AREAID},</if>
|
|
|
|
<if test="areaid != null and areaid != ''">#{areaid},</if>
|
|
|
|
<if test="FRAMEWORK != null">#{FRAMEWORK},</if>
|
|
|
|
<if test="framework != null">#{framework},</if>
|
|
|
|
<if test="trainName != null">#{trainName},</if>
|
|
|
|
<if test="trainName != null">#{trainName},</if>
|
|
|
|
<if test="trainState != null">#{trainState},</if>
|
|
|
|
<if test="trainState != null">#{trainState},</if>
|
|
|
|
<if test="trainTimeend != null">#{trainTimeend},</if>
|
|
|
|
<if test="trainTimeend != null">#{trainTimeend},</if>
|
|
|
|
<if test="PART != null">#{PART},</if>
|
|
|
|
<if test="part != null">#{part},</if>
|
|
|
|
<if test="TRAININFO != null">#{TRAININFO},</if>
|
|
|
|
<if test="traininfo != null">#{traininfo},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
|
<update id="updateTdTrain" parameterType="TdTrain">
|
|
|
|
<update id="updateTdTrain" parameterType="TdTrain">
|
|
|
|
update td_train
|
|
|
|
update td_train
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
|
|
<if test="USERNAME != null">USERNAME = #{USERNAME},</if>
|
|
|
|
<if test="username != null">username = #{username},</if>
|
|
|
|
<if test="deptName != null">DEPT_NAME = #{deptName},</if>
|
|
|
|
<if test="deptName != null">dept_name = #{deptName},</if>
|
|
|
|
<if test="trainType != null">TRAIN_TYPE = #{trainType},</if>
|
|
|
|
<if test="trainType != null">train_type = #{trainType},</if>
|
|
|
|
<if test="trainSubject != null">TRAIN_SUBJECT = #{trainSubject},</if>
|
|
|
|
<if test="trainSubject != null">train_subject = #{trainSubject},</if>
|
|
|
|
<if test="trainAddress != null">TRAIN_ADDRESS = #{trainAddress},</if>
|
|
|
|
<if test="trainAddress != null">train_address = #{trainAddress},</if>
|
|
|
|
<if test="trainDate != null">TRAIN_DATE = #{trainDate},</if>
|
|
|
|
<if test="trainDate != null">train_date = #{trainDate},</if>
|
|
|
|
<if test="createStaffid != null">CREATE_STAFFID = #{createStaffid},</if>
|
|
|
|
<if test="createStaffid != null">create_staffid = #{createStaffid},</if>
|
|
|
|
<if test="createDepartid != null">CREATE_DEPARTID = #{createDepartid},</if>
|
|
|
|
<if test="createDepartid != null">create_departid = #{createDepartid},</if>
|
|
|
|
<if test="createDate != null">CREATE_DATE = #{createDate},</if>
|
|
|
|
<if test="createDate != null">create_date = #{createDate},</if>
|
|
|
|
<if test="updateDepartid != null">UPDATE_DEPARTID = #{updateDepartid},</if>
|
|
|
|
<if test="updateDepartid != null">update_departid = #{updateDepartid},</if>
|
|
|
|
<if test="updateStaffid != null">UPDATE_STAFFID = #{updateStaffid},</if>
|
|
|
|
<if test="updateStaffid != null">update_staffid = #{updateStaffid},</if>
|
|
|
|
<if test="updateDate != null">UPDATE_DATE = #{updateDate},</if>
|
|
|
|
<if test="updateDate != null">update_date = #{updateDate},</if>
|
|
|
|
<if test="AREAID != null and AREAID != ''">AREAID = #{AREAID},</if>
|
|
|
|
<if test="areaid != null and areaid != ''">areaid = #{areaid},</if>
|
|
|
|
<if test="FRAMEWORK != null">FRAMEWORK = #{FRAMEWORK},</if>
|
|
|
|
<if test="framework != null">framework = #{framework},</if>
|
|
|
|
<if test="trainName != null">TRAIN_NAME = #{trainName},</if>
|
|
|
|
<if test="trainName != null">train_name = #{trainName},</if>
|
|
|
|
<if test="trainState != null">TRAIN_STATE = #{trainState},</if>
|
|
|
|
<if test="trainState != null">train_state = #{trainState},</if>
|
|
|
|
<if test="trainTimeend != null">TRAIN_TIMEEND = #{trainTimeend},</if>
|
|
|
|
<if test="trainTimeend != null">train_timeend = #{trainTimeend},</if>
|
|
|
|
<if test="PART != null">PART = #{PART},</if>
|
|
|
|
<if test="part != null">part = #{part},</if>
|
|
|
|
<if test="TRAININFO != null">TRAININFO = #{TRAININFO},</if>
|
|
|
|
<if test="traininfo != null">traininfo = #{traininfo},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
where ID = #{ID}
|
|
|
|
where id = #{id}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
|
|
<delete id="deleteTdTrainByID" parameterType="Long">
|
|
|
|
<delete id="deleteTdTrainByID" parameterType="Long">
|
|
|
|
delete from td_train where ID = #{ID}
|
|
|
|
delete from td_train where id = #{id}
|
|
|
|
</delete>
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
|
|
<delete id="deleteTdTrainByIDs" parameterType="String">
|
|
|
|
<delete id="deleteTdTrainByIDs" parameterType="String">
|
|
|
|
delete from td_train where ID in
|
|
|
|
delete from td_train where id in
|
|
|
|
<foreach item="ID" collection="array" open="(" separator="," close=")">
|
|
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
|
#{ID}
|
|
|
|
#{id}
|
|
|
|
</foreach>
|
|
|
|
</foreach>
|
|
|
|
</delete>
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
|
|