| 123456789101112 |
- <?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="platform.modules.company.dao.StockLandMaterialDao">
- <select id="findMaterialTemplateByType" resultType="platform.modules.company.entity.StockLandMaterial">
- SELECT
- t.id as template_id,
- t.name as content
- FROM template t WHERE t.item_id = #{type} and t.del_flag = 0 and t.is_active = 1
- </select>
-
- </mapper>
|