| <?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.jsh.erp.datasource.mappers.ConfigSecurityMapperEx"> | 
|   <resultMap id="BaseResultMap" type="com.jsh.erp.datasource.entities.ConfigSecurity"> | 
|     <id column="id" jdbcType="BIGINT" property="id" /> | 
|     <result column="keyword" jdbcType="VARCHAR" property="keyword" /> | 
|     <result column="type" jdbcType="VARCHAR" property="type" /> | 
|     <result column="description" jdbcType="VARCHAR" property="description" /> | 
|     <result column="sort_order" jdbcType="INTEGER" property="sortOrder" /> | 
|     <result column="status" jdbcType="BIT" property="status" /> | 
|     <result column="delete_flag" jdbcType="BIT" property="deleteFlag" /> | 
|     <result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> | 
|     <result column="creator" jdbcType="BIGINT" property="creator" /> | 
|     <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" /> | 
|     <result column="updater" jdbcType="BIGINT" property="updater" /> | 
|     <result column="tenant_id" jdbcType="BIGINT" property="tenantId" /> | 
|   </resultMap> | 
|   <select id="getEnabledListAll" resultType="com.jsh.erp.datasource.entities.ConfigSecurity"> | 
|         select * from config_security where delete_flag = 0 and status=1 | 
|   </select> | 
|   | 
|   | 
| </mapper> |