13 lines
631 B
XML
13 lines
631 B
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.suisung.mall.shop.order.mapper.ShopOrderCommentMapper">
|
|
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
order_id, store_id, store_name, user_id, user_name, comment_points, comment_scores, comment_content,
|
|
comment_image, comment_helpful, comment_nohelpful, comment_time, comment_is_anonymous, comment_enable,
|
|
comment_store_desc_credit, comment_store_service_credit, comment_store_delivery_credit
|
|
</sql>
|
|
|
|
</mapper>
|