admin
2025-02-10 110d303eb11f26382ebaf00aff060a97e5f779c8
billion-system/src/main/resources/mapper/system/SysPostMapper.xml
@@ -63,13 +63,15 @@
   </select>
   
   <select id="checkPostNameUnique" parameterType="String" resultMap="SysPostResult">
      <include refid="selectPostVo"/>
       where post_name=#{postName} limit 1
      select top(1) post_id, post_code, post_name, post_sort, status, create_by, create_time, remark
      from sys_post
      where post_name=#{postName}
   </select>
   
   <select id="checkPostCodeUnique" parameterType="String" resultMap="SysPostResult">
      <include refid="selectPostVo"/>
       where post_code=#{postCode} limit 1
      select top(1) post_id, post_code, post_name, post_sort, status, create_by, create_time, remark
      from sys_post
      where post_code=#{postCode}
   </select>
   
   <update id="updatePost" parameterType="SysPost">
@@ -81,7 +83,7 @@
          <if test="status != null and status != ''">status = #{status},</if>
          <if test="remark != null">remark = #{remark},</if>
          <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
          update_time = sysdate()
         update_time = getdate()
       </set>
       where post_id = #{postId}
   </update>
@@ -104,7 +106,7 @@
          <if test="status != null and status != ''">#{status},</if>
          <if test="remark != null and remark != ''">#{remark},</if>
          <if test="createBy != null and createBy != ''">#{createBy},</if>
          sysdate()
      getdate()
       )
   </insert>