yshop1.5版本新增秒杀功能,手机端新增H5支付,修复其他bug,导出最新sql
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
<?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="co.yixiang.modules.activity.mapper.YxStoreSeckillMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
id, product_id, image, images, title, info, price, cost, ot_price, give_integral, sort, stock, sales, unit_name, postage, description, start_time, stop_time, add_time, status, is_postage, is_hot, is_del, num, is_show, end_time_date, start_time_date
|
||||
</sql>
|
||||
|
||||
<select id="getYxStoreSeckillById" resultType="co.yixiang.modules.activity.web.vo.YxStoreSeckillQueryVo">
|
||||
select <include refid="Base_Column_List"/> from yx_store_seckill where id = #{id}
|
||||
</select>
|
||||
|
||||
<select id="getYxStoreSeckillPageList" resultType="co.yixiang.modules.activity.web.vo.YxStoreSeckillQueryVo">
|
||||
select <include refid="Base_Column_List"/> from yx_store_seckill
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user