StockLandMaterialDao.xml 514 B

123456789101112
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="platform.modules.company.dao.StockLandMaterialDao">
  4. <select id="findMaterialTemplateByType" resultType="platform.modules.company.entity.StockLandMaterial">
  5. SELECT
  6. t.id as template_id,
  7. t.name as content
  8. FROM template t WHERE t.item_id = #{type} and t.del_flag = 0 and t.is_active = 1
  9. </select>
  10. </mapper>