| 12345678910111213141516171819202122232425262728293031 |
- <?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.zsElectric.boot.business.mapper.CouponMapper">
- <!-- 获取优惠劵分页列表 -->
- <select id="getCouponPage" resultType="com.zsElectric.boot.business.model.vo.CouponVO">
- SELECT
- id,
- template_id,
- name,
- status,
- user_id,
- take_type,
- use_price,
- valid_end_time,
- discount_price,
- use_order_id,
- use_time,
- description,
- create_by,
- create_time,
- update_by,
- update_time,
- is_deleted
- FROM
- c_coupon
- <where>
- </where>
- </select>
- </mapper>
|