2023-09-06 14:28:20 +08:00
|
|
|
<?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">
|
2024-01-19 16:36:34 +08:00
|
|
|
<mapper namespace="com.ai.da.mapper.primary.TDesignPythonOutfitMapper">
|
2023-09-06 14:28:20 +08:00
|
|
|
|
|
|
|
|
<!-- 通用查询映射结果 -->
|
2024-01-19 16:36:34 +08:00
|
|
|
<resultMap id="tDesignPythonOutfitResultMap" type="com.ai.da.mapper.primary.entity.TDesignPythonOutfit">
|
2023-09-06 14:28:20 +08:00
|
|
|
<id column="id" property="id"/>
|
2023-09-12 09:51:12 +08:00
|
|
|
<result column="design_item_id" property="designItemId"/>
|
2023-09-06 14:28:20 +08:00
|
|
|
<result column="design_id" property="designId"/>
|
|
|
|
|
<result column="collection_id" property="collectionId"/>
|
|
|
|
|
<result column="design_url" property="designUrl"/>
|
|
|
|
|
<result column="user_id" property="userId"/>
|
|
|
|
|
<result column="create_date" property="createDate"/>
|
|
|
|
|
<result column="update_date" property="updateDate"/>
|
|
|
|
|
<result column="is_deleted" property="isDeleted"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectTDesignPythonOutfitPage" resultMap="tDesignPythonOutfitResultMap">
|
|
|
|
|
select * from t_design_python_outfit where is_deleted = 0
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
</mapper>
|