Browse Source

dic param ok

NorthLan 7 years ago
parent
commit
02c0e75685

+ 6 - 2
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/mapper/SysParamMapper.kt

@@ -1,8 +1,9 @@
 package com.gxzc.zen.api.sys.mapper
 
-import com.gxzc.zen.api.sys.model.SysDic
+import com.baomidou.mybatisplus.mapper.Wrapper
 import com.gxzc.zen.api.sys.model.SysParam
 import com.gxzc.zen.common.base.BaseMapper
+import org.apache.ibatis.annotations.Param
 import org.springframework.stereotype.Repository
 
 /**
@@ -14,4 +15,7 @@ import org.springframework.stereotype.Repository
  * @since 2018-02-06
  */
 @Repository
-interface SysParamMapper : BaseMapper<SysParam>
+interface SysParamMapper : BaseMapper<SysParam> {
+    fun updateNoLogic(@Param("et") entity: SysParam, @Param("ew") wrapper: Wrapper<SysParam>): Long
+    fun physicalDelete(@Param("ew") wrapper: Wrapper<SysParam>): Long
+}

+ 1 - 1
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/ISysDicService.kt

@@ -37,7 +37,7 @@ interface ISysDicService : BaseService<SysDic> {
      * 更新缓存项
      * TODO 同时通知其他系统
      */
-    fun modifySysDic(data: SysDic): SysDic
+    fun modify(data: SysDic): SysDic
 
     /**
      * 新增字典

+ 21 - 6
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/ISysParamService.kt

@@ -1,8 +1,8 @@
 package com.gxzc.zen.api.sys.service
 
-import com.gxzc.zen.api.sys.model.SysDic
 import com.gxzc.zen.api.sys.model.SysParam
 import com.gxzc.zen.common.base.BaseService
+
 /**
  * <p>
  * 系统参数表 服务类
@@ -11,7 +11,7 @@ import com.gxzc.zen.common.base.BaseService
  * @author NorthLan123
  * @since 2018-02-06
  */
-interface ISysParamService : BaseService<SysParam>{
+interface ISysParamService : BaseService<SysParam> {
     /**
      * 查询所有列表并存入缓存中(忽略enable)
      */
@@ -23,18 +23,33 @@ interface ISysParamService : BaseService<SysParam>{
     fun getList(enable: Boolean?): MutableList<SysParam>
 
     /**
-     * 根据key获取对应的 列表(缓存获取)
+     * 根据key获取对应的SysDic列表(缓存获取)
      */
     fun getListByKey(key: String): MutableList<SysParam>
 
     /**
-     * 获取一个,若查询结果大于1个则取第一个(缓存获取)
+     * 获取一个SysDic,若查询结果大于1个则取第一个(缓存获取)
      */
     fun getOneByKey(key: String, value: String?, sort: Int?): SysParam?
 
     /**
-     * 修改并更新缓存项
+     * 修改SysDic项
+     * 更新缓存项
      * TODO 同时通知其他系统
      */
-    fun modifySysDic(data: SysParam): SysParam
+    fun modify(data: SysParam): SysParam
+
+    /**
+     * 新增字典
+     * 刷新缓存
+     * TODO 通知其他系统
+     */
+    fun insertCacheable(data: SysParam)
+
+    /**
+     * 物理删除字典项
+     * 刷新缓存
+     * TODO 通知其他系统
+     */
+    fun physicalDeleteCacheable(id: Long)
 }

+ 2 - 3
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/impl/SysDicServiceImpl.kt

@@ -1,6 +1,7 @@
 package com.gxzc.zen.api.sys.service.impl
 
 import com.baomidou.mybatisplus.mapper.EntityWrapper
+import com.baomidou.mybatisplus.plugins.Page
 import com.baomidou.mybatisplus.service.impl.ServiceImpl
 import com.gxzc.zen.api.sys.mapper.SysDicMapper
 import com.gxzc.zen.api.sys.model.SysDic
@@ -49,7 +50,6 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService {
         ))
     }
 
-    //    @Cacheable(CACHEKEYS.SYS, key = "'dic_key_' + #key")
     override fun getListByKey(key: String): MutableList<SysDic> {
         val allData = getListCacheable()
         return allData.filter {
@@ -57,10 +57,9 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService {
         }.toMutableList()
     }
 
-    //    @CacheEvict(CACHEKEYS.SYS, key = "'dic_key_' + #sysDic.key")
     @Suppress("UNCHECKED_CAST")
     @MultiTransactional
-    override fun modifySysDic(data: SysDic): SysDic {
+    override fun modify(data: SysDic): SysDic {
         baseMapper.updateNoLogic(data, EntityWrapper<SysDic>().eq("id", data.id))
         // 更新缓存
         val cache = cacheManager.getCache(CACHEKEYS.SYS)

+ 50 - 12
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/impl/SysParamServiceImpl.kt

@@ -1,14 +1,19 @@
 package com.gxzc.zen.api.sys.service.impl
 
+import com.baomidou.mybatisplus.mapper.EntityWrapper
 import com.baomidou.mybatisplus.service.impl.ServiceImpl
 import com.gxzc.zen.api.sys.mapper.SysParamMapper
 import com.gxzc.zen.api.sys.model.SysParam
 import com.gxzc.zen.api.sys.service.ISysParamService
 import com.gxzc.zen.common.contants.CACHEKEYS
+import com.gxzc.zen.common.exception.ZenException
+import com.gxzc.zen.common.exception.ZenExceptionEnum
+import com.gxzc.zen.orm.annotation.MultiTransactional
 import org.springframework.beans.factory.annotation.Autowired
 import org.springframework.cache.CacheManager
 import org.springframework.cache.annotation.Cacheable
 import org.springframework.stereotype.Service
+import javax.annotation.PostConstruct
 
 /**
  * <p>
@@ -21,13 +26,19 @@ import org.springframework.stereotype.Service
 @Service
 class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamService {
     companion object {
-        const val CACHE_KEY_ALL = "'param_all'"
+        const val CACHE_KEY_ALL = "param_all"
     }
 
     @Autowired
     private lateinit var cacheManager: CacheManager
 
-    @Cacheable(CACHEKEYS.SYS, key = CACHE_KEY_ALL)
+    @PostConstruct
+    fun initCache() {
+        val cache = cacheManager.getCache(CACHEKEYS.SYS)
+        cache.put(CACHE_KEY_ALL, getListCacheable())
+    }
+
+    @Cacheable(CACHEKEYS.SYS, key = "'$CACHE_KEY_ALL'")
     override fun getListCacheable(): MutableList<SysParam> {
         return baseMapper.selectByParams(null)
     }
@@ -45,6 +56,22 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
         }.toMutableList()
     }
 
+    @Suppress("UNCHECKED_CAST")
+    @MultiTransactional
+    override fun modify(data: SysParam): SysParam {
+        baseMapper.updateNoLogic(data, EntityWrapper<SysParam>().eq("id", data.id))
+        // 更新缓存
+        val cache = cacheManager.getCache(CACHEKEYS.SYS)
+        val cachedList: MutableList<SysParam>? = cache[CACHE_KEY_ALL].get() as MutableList<SysParam>?
+        cachedList?.let {
+            val idx = it.indexOfFirst { it.id == data.id }
+            if (idx != -1) {
+                it[idx] = data
+            }
+        }
+        return data
+    }
+
     override fun getOneByKey(key: String, value: String?, sort: Int?): SysParam? {
         val result = baseMapper.selectByParams(mutableMapOf(
                 "key" to key,
@@ -62,18 +89,29 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
     }
 
     @Suppress("UNCHECKED_CAST")
-    override fun modifySysDic(data: SysParam): SysParam {
-        baseMapper.updateById(data)
-        // 更新缓存
+    @MultiTransactional
+    override fun insertCacheable(data: SysParam) {
+        if (baseMapper.insert(data) == 0) {
+            throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
+        }
+        val cache = cacheManager.getCache(CACHEKEYS.SYS)
+        val cachedList: MutableList<SysParam>? = cache[CACHE_KEY_ALL].get() as MutableList<SysParam>?
+        cachedList?.add(data)
+    }
+
+    @Suppress("UNCHECKED_CAST")
+    @MultiTransactional
+    override fun physicalDeleteCacheable(id: Long) {
+        if (baseMapper.physicalDelete(EntityWrapper<SysParam>().eq("id", id)) <= 0) {
+            throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
+        }
+        //
         val cache = cacheManager.getCache(CACHEKEYS.SYS)
-        val cachedList: MutableList<SysParam>? = cache[CACHE_KEY_ALL].get() as MutableList<SysParam>
+        val cachedList: MutableList<SysParam>? = cache[CACHE_KEY_ALL].get() as MutableList<SysParam>?
         cachedList?.let {
-            it.removeIf { it.id == data.id }
-            it.add(data)
-            cache.put(CACHE_KEY_ALL, cachedList)
+            it.removeIf {
+                it.id == id
+            }
         }
-
-        return data
     }
-
 }

+ 69 - 3
zen-api/src/main/resources/mapping/sys/SysParamMapper.xml

@@ -29,23 +29,89 @@
                     </otherwise>
                 </choose>
             </if>
-            <if test="key != null and key != ''">
+            <if test="key != null">
                 AND `key` = #{key}
             </if>
-            <if test="value != null and value != ''">
+            <if test="value != null">
                 AND `value` = #{value}
             </if>
-            <if test="sort != null and sort != ''">
+            <if test="sort != null">
                 AND sort = #{sort}
             </if>
+            <if test="id != null">
+                AND id = #{id}
+            </if>
         </where>
     </sql>
 
+    <sql id="dynamicSqlSet">
+        <set>
+            <if test="et.key != null">
+                `key` = #{et.key},
+            </if>
+            <if test="et.value != null">
+                `value` = #{et.value},
+            </if>
+            <if test="et.label != null">
+                `label` = #{et.label},
+            </if>
+            <if test="et.sort != null">
+                sort = #{et.sort},
+            </if>
+            <if test="et.createTime != null">
+                create_time = #{et.createTime},
+            </if>
+            <if test="et.createBy != null">
+                create_by = #{et.createBy},
+            </if>
+            <if test="et.updateTime != null">
+                update_time = #{et.updateTime},
+            </if>
+            <if test="et.updateBy != null">
+                update_by = #{et.updateBy},
+            </if>
+            <if test="et.remark != null">
+                remark = #{et.remark},
+            </if>
+            <if test="et.enable != null">
+                <choose>
+                    <when test="et.enable == true">
+                        `enable` = 1
+                    </when>
+                    <otherwise>
+                        `enable` = 0
+                    </otherwise>
+                </choose>
+            </if>
+        </set>
+    </sql>
+
+    <sql id="sqlOrder">
+        ORDER BY id,sort
+    </sql>
+
     <select id="selectByParams" resultType="com.gxzc.zen.api.sys.model.SysParam">
         SELECT *
         FROM sys_param
         <include refid="dynamicSqlWhere"/>
+        <include refid="sqlOrder"/>
     </select>
 
+    <update id="updateNoLogic" parameterType="com.gxzc.zen.api.sys.model.SysParam">
+        UPDATE sys_param
+        <include refid="dynamicSqlSet"/>
+        <where>
+            ${ew.sqlSegment}
+        </where>
+        <include refid="sqlOrder"/>
+    </update>
+
+    <delete id="physicalDelete">
+        DELETE FROM sys_param
+        <where>
+            ${ew.sqlSegment}
+        </where>
+    </delete>
+
 
 </mapper>

+ 40 - 6
zen-web/src/main/kotlin/com/gxzc/zen/web/sys/controller/SysDicController.kt

@@ -7,6 +7,7 @@ import com.gxzc.zen.api.sys.service.ISysDicService
 import com.gxzc.zen.common.base.BaseController
 import com.gxzc.zen.common.config.response.annotation.ZenResponseFilter
 import com.gxzc.zen.common.dto.ResponseDto
+import com.gxzc.zen.common.util.LogicPagination
 import org.slf4j.LoggerFactory
 import org.springframework.beans.factory.annotation.Autowired
 import org.springframework.http.ResponseEntity
@@ -14,7 +15,7 @@ import org.springframework.web.bind.annotation.*
 import java.net.URI
 
 /**
- * 系统参数 控制器
+ * 系统字典 控制器
  * @author NorthLan
  * @date 2018/3/9
  * @url https://noahlan.com
@@ -32,10 +33,43 @@ class SysDicController : BaseController() {
     @GetMapping("/list")
     @Login(action = Action.Skip)
     @ZenResponseFilter(type = SysDic::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
-    fun getList(): ResponseEntity<*> {
-        return ResponseEntity.ok(ResponseDto().apply {
-            data = sysDicService.getListCacheable()
-        })
+    fun getList(@RequestParam(required = false) keyword: String?,
+                @RequestParam(required = false) searchOption: Int?,
+                @RequestParam(required = false) current: Int?,
+                @RequestParam(required = false) pageSize: Int?): ResponseEntity<*> {
+        var data: MutableList<SysDic> = sysDicService.getListCacheable()
+        if (!keyword.isNullOrEmpty()) {
+            data = data.filter {
+                when (searchOption) {
+                    1 -> run {
+                        if (it.key != null) {
+                            keyword!! in it.key!!
+                        } else {
+                            false
+                        }
+                    }
+                    2 -> run {
+                        if (it.label != null) {
+                            keyword!! in it.label!!
+                        } else {
+                            false
+                        }
+                    }
+                    else -> false
+                }
+            }.toMutableList()
+        }
+
+        return if (current != null && pageSize != null) {
+            // 分页
+            ResponseEntity.ok(ResponseDto().apply {
+                this.data = LogicPagination.pagination(data, current, pageSize)
+            })
+        } else {
+            ResponseEntity.ok(ResponseDto().apply {
+                this.data = data
+            })
+        }
     }
 
     @GetMapping("{id}")
@@ -64,7 +98,7 @@ class SysDicController : BaseController() {
         } else {
             // update
             ResponseEntity.ok(ResponseDto().apply {
-                this.data = sysDicService.modifySysDic(data) // 200
+                this.data = sysDicService.modify(data) // 200
             })
         }
     }

+ 70 - 14
zen-web/src/main/kotlin/com/gxzc/zen/web/sys/controller/SysParamController.kt

@@ -2,16 +2,17 @@ package com.gxzc.zen.web.sys.controller
 
 import com.baomidou.kisso.annotation.Action
 import com.baomidou.kisso.annotation.Login
-import com.gxzc.zen.api.sys.model.SysDic
 import com.gxzc.zen.api.sys.model.SysParam
 import com.gxzc.zen.api.sys.service.ISysParamService
 import com.gxzc.zen.common.base.BaseController
 import com.gxzc.zen.common.config.response.annotation.ZenResponseFilter
 import com.gxzc.zen.common.dto.ResponseDto
+import com.gxzc.zen.common.util.LogicPagination
 import org.slf4j.LoggerFactory
 import org.springframework.beans.factory.annotation.Autowired
 import org.springframework.http.ResponseEntity
 import org.springframework.web.bind.annotation.*
+import java.net.URI
 
 /**
  * 系统参数控制器
@@ -23,7 +24,7 @@ import org.springframework.web.bind.annotation.*
 @RequestMapping("sys/param")
 class SysParamController : BaseController() {
     companion object {
-        private val logger = LoggerFactory.getLogger(SysParamController::class.java)
+        private val logger = LoggerFactory.getLogger(SysDicController::class.java)
     }
 
     @Autowired
@@ -31,26 +32,81 @@ class SysParamController : BaseController() {
 
     @GetMapping("/list")
     @Login(action = Action.Skip)
-    @ZenResponseFilter(type = SysDic::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
-    fun getList(): ResponseEntity<*> {
+    @ZenResponseFilter(type = SysParam::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
+    fun getList(@RequestParam(required = false) keyword: String?,
+                @RequestParam(required = false) searchOption: Int?,
+                @RequestParam(required = false) current: Int?,
+                @RequestParam(required = false) pageSize: Int?): ResponseEntity<*> {
+        var data: MutableList<SysParam> = sysParamService.getListCacheable()
+        if (!keyword.isNullOrEmpty()) {
+            data = data.filter {
+                when (searchOption) {
+                    1 -> run {
+                        if (it.key != null) {
+                            keyword!! in it.key!!
+                        } else {
+                            false
+                        }
+                    }
+                    2 -> run {
+                        if (it.label != null) {
+                            keyword!! in it.label!!
+                        } else {
+                            false
+                        }
+                    }
+                    else -> false
+                }
+            }.toMutableList()
+        }
+
+        return if (current != null && pageSize != null) {
+            // 分页
+            ResponseEntity.ok(ResponseDto().apply {
+                this.data = LogicPagination.pagination(data, current, pageSize)
+            })
+        } else {
+            ResponseEntity.ok(ResponseDto().apply {
+                this.data = data
+            })
+        }
+    }
+
+    @GetMapping("{id}")
+    @ZenResponseFilter(type = SysParam::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
+    fun getById(@PathVariable id: Long): ResponseEntity<*> {
         return ResponseEntity.ok(ResponseDto().apply {
-            data = sysParamService.getListCacheable()
+            data = sysParamService.selectById(id)
         })
     }
 
-    @GetMapping("{key}")
-    @ZenResponseFilter(type = SysDic::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
-    fun get(@PathVariable key: String): ResponseEntity<*> {
+    @GetMapping("keys/{key}")
+    @ZenResponseFilter(type = SysParam::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
+    fun getByKey(@PathVariable key: String): ResponseEntity<*> {
         return ResponseEntity.ok(ResponseDto().apply {
             data = sysParamService.getListByKey(key)
         })
     }
 
-    @PutMapping("{key}")
-    @ZenResponseFilter(type = SysDic::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
-    fun putDic(@PathVariable key: String, @RequestBody data: SysParam): ResponseEntity<*> {
-        return ResponseEntity.ok(ResponseDto().apply {
-            this.data = sysParamService.modifySysDic(data)
-        })
+    @PutMapping
+    @ZenResponseFilter(type = SysParam::class, filter = ["createBy", "updateBy", "createTime", "updateTime"])
+    fun putDic(@RequestBody data: SysParam): ResponseEntity<*> {
+        return if (data.id == null) {
+            // insert
+            sysParamService.insertCacheable(data.apply { id = null })
+            ResponseEntity.created(URI.create("/sys/dic/${data.id}")).body(ResponseDto()) // 201
+        } else {
+            // update
+            ResponseEntity.ok(ResponseDto().apply {
+                this.data = sysParamService.modify(data) // 200
+            })
+        }
+    }
+
+    @DeleteMapping("{id}")
+    fun deleteDic(@PathVariable id: Long): ResponseEntity<*> {
+        // 物理删除数据
+        sysParamService.physicalDeleteCacheable(id)
+        return ResponseEntity.ok(ResponseDto())
     }
 }