Files
aida_back/src/main/resources/mapper/TDesignPythonOutfitDetailMapper.xml
xupei 01cdbf99f9 Merge remote-tracking branch 'origin/dev_shb' into dev-xp
# Conflicts:
#	src/main/java/com/ai/da/model/vo/DesignPythonOutfitVO.java
#	src/main/java/com/ai/da/python/PythonService.java
#	src/main/java/com/ai/da/service/impl/TDesignPythonOutfitDetailServiceImpl.java
2023-09-14 14:19:34 +08:00

29 lines
1.4 KiB
XML

<?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.ai.da.mapper.TDesignPythonOutfitDetailMapper">
<!-- 通用查询映射结果 -->
<resultMap id="tDesignPythonOutfitDetailResultMap" type="com.ai.da.mapper.entity.TDesignPythonOutfitDetail">
<id column="id" property="id"/>
<result column="design_id" property="designId"/>
<result column="design_python_outfit_id" property="designPythonOutfitId"/>
<result column="collection_element_id" property="collectionElementId"/>
<result column="image_category" property="imageCategory"/>
<result column="image_size" property="imageSize"/>
<result column="image_url" property="imageUrl"/>
<result column="mask_url" property="maskUrl"/>
<result column="position" property="position"/>
<result column="imageSize" property="image_size"/>
<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="selectTDesignPythonOutfitDetailPage" resultMap="tDesignPythonOutfitDetailResultMap">
select * from t_design_python_outfit_detail where is_deleted = 0
</select>
</mapper>