This commit is contained in:
2022-07-20 15:29:54 +08:00
parent 718ad8a8c2
commit 3bd383a347
87 changed files with 4667 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
<?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.cnbm.basic.mapper.MeasureToolMapper">
<select id="page" resultType="com.cnbm.basic.dto.ProductDTO">
select product.*,product_type.name as productType
from product
left join product_type ON product.product_type_id = product_type.id
</select>
</mapper>