站点管理部分接口逻辑添加

This commit is contained in:
mi9688
2024-09-30 17:42:15 +08:00
parent 20e7998c13
commit 762eab8fd1
9 changed files with 66 additions and 117 deletions

View File

@ -42,6 +42,7 @@
<include refid="selectGGroupsVo"/>
<where>
<if test="projectId != null "> and project_id = #{projectId}</if>
<if test="tag != null "> and tag = #{tag}</if>
</where>
</select>

View File

@ -20,21 +20,6 @@
select id, site_id, parent_id, create_by, create_time, update_time, update_by, project_id, order_num from g_site_groups
</sql>
<select id="selectGSiteGroupsList" parameterType="GSiteGroups" resultMap="GSiteGroupsResult">
<include refid="selectGSiteGroupsVo"/>
<where>
<if test="siteId != null "> and site_id = #{siteId}</if>
<if test="parentId != null "> and parent_id = #{parentId}</if>
<if test="projectId != null "> and project_id = #{projectId}</if>
<if test="orderNum != null "> and order_num = #{orderNum}</if>
</where>
</select>
<select id="selectGSiteGroupsById" parameterType="Long" resultMap="GSiteGroupsResult">
<include refid="selectGSiteGroupsVo"/>
where id = #{id}
</select>
<insert id="insertGSiteGroups" parameterType="GSiteGroups" useGeneratedKeys="true" keyProperty="id">
insert into g_site_groups
<trim prefix="(" suffix=")" suffixOverrides=",">
@ -59,29 +44,8 @@
</trim>
</insert>
<update id="updateGSiteGroups" parameterType="GSiteGroups">
update g_site_groups
<trim prefix="SET" suffixOverrides=",">
<if test="siteId != null">site_id = #{siteId},</if>
<if test="parentId != null">parent_id = #{parentId},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="projectId != null">project_id = #{projectId},</if>
<if test="orderNum != null">order_num = #{orderNum},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteGSiteGroupsById" parameterType="Long">
delete from g_site_groups where id = #{id}
</delete>
<delete id="deleteGSiteGroupsByIds" parameterType="String">
delete from g_site_groups where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

View File

@ -20,46 +20,16 @@
select id, name, icon, type, create_by, create_time, update_time, update_by, space from g_sites
</sql>
<select id="selectGSitesList" parameterType="GSites" resultMap="GSitesResult">
<include refid="selectGSitesVo"/>
<where>
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="icon != null and icon != ''"> and icon = #{icon}</if>
<if test="type != null and type != ''"> and type = #{type}</if>
<if test="space != null and space != ''"> and space = #{space}</if>
</where>
</select>
<select id="selectGSitesById" parameterType="Long" resultMap="GSitesResult">
<include refid="selectGSitesVo"/>
where id = #{id}
</select>
<!-- <insert id="insertGSites" parameterType="GSites" useGeneratedKeys="true" keyProperty="id">-->
<!-- insert into g_sites-->
<!-- <trim prefix="(" suffix=")" suffixOverrides=",">-->
<!-- <if test="name != null and name != ''">name,</if>-->
<!-- <if test="icon != null">icon,</if>-->
<!-- <if test="type != null">type,</if>-->
<!-- <if test="createBy != null">create_by,</if>-->
<!-- <if test="createTime != null">create_time,</if>-->
<!-- <if test="updateTime != null">update_time,</if>-->
<!-- <if test="updateBy != null">update_by,</if>-->
<!-- <if test="space != null">space,</if>-->
<!-- </trim>-->
<!-- <trim prefix="values (" suffix=")" suffixOverrides=",">-->
<!-- <if test="name != null and name != ''">#{name},</if>-->
<!-- <if test="icon != null">#{icon},</if>-->
<!-- <if test="type != null">#{type},</if>-->
<!-- <if test="createBy != null">#{createBy},</if>-->
<!-- <if test="createTime != null">#{createTime},</if>-->
<!-- <if test="updateTime != null">#{updateTime},</if>-->
<!-- <if test="updateBy != null">#{updateBy},</if>-->
<!-- <if test="space != null">#{space},</if>-->
<!-- </trim>-->
<!-- </insert>-->
<update id="updateGSites" parameterType="GSites">
<update id="updateGSites" parameterType="GSitesEditDto">
update g_sites
<trim prefix="SET" suffixOverrides=",">
<if test="name != null and name != ''">name = #{name},</if>