1. 实现集中式的附件统一管理,统一上传统一预览(代码生成器,公共组件,公共附件元数据定义)
2. 实现统一的 DB 字段数据库定义(代码生成器,共用规范检查)
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
<?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="cn.iocoder.yudao.module.system.dal.mysql.stdnms.StdNmsMapper">
|
||||
|
||||
<select id="selectPageCustom" resultType="cn.iocoder.yudao.module.system.dal.dataobject.stdnms.StdNmsDO">
|
||||
SELECT * FROM system_std_nms
|
||||
<where>
|
||||
<if test="word != null and word != ''">
|
||||
AND LOWER(word) LIKE CONCAT('%', LOWER(#{word}), '%')
|
||||
</if>
|
||||
<if test="abbr != null and abbr != ''">
|
||||
AND abbr = #{abbr}
|
||||
</if>
|
||||
<if test="info != null and info != ''">
|
||||
AND info = #{info}
|
||||
</if>
|
||||
<if test="createTime != null and createTime[0] != null and createTime[1] != null">
|
||||
AND create_time BETWEEN #{createTime[0]} AND #{createTime[1]}
|
||||
</if>
|
||||
</where>
|
||||
ORDER BY id DESC
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user