20200528-zlp-1

1已完善培训管理功能
2新增多级字典管理功能
This commit is contained in:
paidaxing444
2020-05-28 18:10:33 +08:00
parent 08ddca0ca8
commit 131a235d2e
11 changed files with 697 additions and 72 deletions

View File

@ -24,11 +24,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectByTrainVideoList" parameterType="ByTrainVideo" resultMap="ByTrainVideoResult">
<include refid="selectByTrainVideoVo"/>
<where>
<if test="title != null and title != ''"> and title = #{title}</if>
<if test="title != null and title != ''"> and title like concat('%', #{title}, '%')</if>
<if test="information != null and information != ''"> and information = #{information}</if>
<if test="lecturer != null "> and lecturer = #{lecturer}</if>
<if test="videourl != null and videourl != ''"> and videourl = #{videourl}</if>
<if test="type != null and type != ''"> and type = #{type}</if>
<if test="type != null and type != ''"> and type like concat('', #{type}, '%')</if>
<if test="classtype != null and classtype != ''"> and classtype = #{classtype}</if>
<if test="createuserid != null "> and createuserid = #{createuserid}</if>
<if test="createtime != null "> and createtime = #{createtime}</if>

View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.mapper.SysDictMoedataMapper">
<resultMap type="SysDictMoedata" id="SysDictMoedataResult">
<result property="id" column="id" />
<result property="pid" column="pid" />
<result property="ancestors" column="ancestors" />
<result property="name" column="name" />
<result property="ordersum" column="ordersum" />
<result property="keyword" column="keyword" />
<result property="status" column="status" />
<result property="isdel" column="isdel" />
<result property="createTime" column="create_time" />
</resultMap>
<sql id="selectSysDictMoedataVo">
select id, pid, ancestors, name, ordersum, keyword, status, isdel, create_time from sys_dict_moedata
</sql>
<select id="selectSysDictMoedataList" parameterType="SysDictMoedata" resultMap="SysDictMoedataResult">
<include refid="selectSysDictMoedataVo"/>
where isdel = '0'
<if test="pid != null "> and pid = #{pid}</if>
<if test="ancestors != null and ancestors != ''"> and ancestors = #{ancestors}</if>
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="ordersum != null "> and ordersum = #{ordersum}</if>
<if test="keyword != null and keyword != ''"> and keyword = #{keyword}</if>
<if test="status != null and status != ''"> and status = #{status}</if>
</select>
<select id="selectSysDictMoedataById" parameterType="Long" resultMap="SysDictMoedataResult">
<include refid="selectSysDictMoedataVo"/>
where id = #{id}
</select>
<insert id="insertSysDictMoedata" parameterType="SysDictMoedata">
insert into sys_dict_moedata
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null ">id,</if>
<if test="pid != null ">pid,</if>
<if test="ancestors != null and ancestors != ''">ancestors,</if>
<if test="name != null and name != ''">name,</if>
<if test="ordersum != null ">ordersum,</if>
<if test="keyword != null and keyword != ''">keyword,</if>
<if test="status != null and status != ''">status,</if>
<if test="isdel != null and isdel != ''">isdel,</if>
<if test="createTime != null ">create_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null ">#{id},</if>
<if test="pid != null ">#{pid},</if>
<if test="ancestors != null and ancestors != ''">#{ancestors},</if>
<if test="name != null and name != ''">#{name},</if>
<if test="ordersum != null ">#{ordersum},</if>
<if test="keyword != null and keyword != ''">#{keyword},</if>
<if test="status != null and status != ''">#{status},</if>
<if test="isdel != null and isdel != ''">#{isdel},</if>
<if test="createTime != null ">#{createTime},</if>
</trim>
</insert>
<update id="updateSysDictMoedata" parameterType="SysDictMoedata">
update sys_dict_moedata
<trim prefix="SET" suffixOverrides=",">
<if test="pid != null ">pid = #{pid},</if>
<if test="ancestors != null and ancestors != ''">ancestors = #{ancestors},</if>
<if test="name != null and name != ''">name = #{name},</if>
<if test="ordersum != null ">ordersum = #{ordersum},</if>
<if test="keyword != null and keyword != ''">keyword = #{keyword},</if>
<if test="status != null and status != ''">status = #{status},</if>
<if test="isdel != null and isdel != ''">isdel = #{isdel},</if>
<if test="createTime != null ">create_time = #{createTime},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteSysDictMoedataById" parameterType="Long">
update from sys_dict_moedata set isdel='1' where id = #{id}
</delete>
<delete id="deleteSysDictMoedataByIds" parameterType="String">
update from sys_dict_moedata set isdel='1' where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>