新火炬后端单体项目初始化代码
Lius
2025-07-28 9af27ed8da6b5710025fb080f96a7dd9e80467a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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="org.jeecg.modules.cms.mapper.CuttingPropertiesMapper">
 
    <select id="selectListByCuttingId" resultType="org.jeecg.modules.cms.entity.CuttingProperties">
        SELECT
        t.id,
        t.property_code propertyCode,
        t.property_name propertyName,
        t.property_unit propertyUnit,
        t.property_value propertyValue
        FROM cms_cutting_properties t
        WHERE t.cutting_id = #{cuttingId}
 
    </select>
</mapper>