SysDictDataMapper.xml 463 B

1234567891011
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.zhongzheng.modules.system.mapper.SysDictDataMapper">
  6. <select id="getListByTenant" parameterType="java.lang.Long" resultType="com.zhongzheng.common.core.domain.entity.SysDictData">
  7. SELECT * FROM sys_dict_data WHERE tenant_id = #{tenantId}
  8. </select>
  9. </mapper>