123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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.zhentao.common.orders.mapper.MarketingCouponMapper">
- <resultMap id="BaseResultMap" type="com.zhentao.common.orders.domain.MarketingCoupon">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="getType" column="get_type" jdbcType="INTEGER"/>
- <result property="activeId" column="active_id" jdbcType="INTEGER"/>
- <result property="tacticsType" column="tactics_type" jdbcType="INTEGER"/>
- <result property="name" column="name" jdbcType="VARCHAR"/>
- <result property="faceValue" column="face_value" jdbcType="DECIMAL"/>
- <result property="imgUrl" column="img_url" jdbcType="VARCHAR"/>
- <result property="getWay" column="get_way" jdbcType="INTEGER"/>
- <result property="productType" column="product_type" jdbcType="INTEGER"/>
- <result property="productValue" column="product_value" jdbcType="VARCHAR"/>
- <result property="limitMinFlag" column="limit_min_flag" jdbcType="INTEGER"/>
- <result property="limitMin" column="limit_min" jdbcType="DECIMAL"/>
- <result property="validFlag" column="valid_flag" jdbcType="INTEGER"/>
- <result property="validDays" column="valid_days" jdbcType="INTEGER"/>
- <result property="startTime" column="start_time" jdbcType="TIMESTAMP"/>
- <result property="endTime" column="end_time" jdbcType="TIMESTAMP"/>
- <result property="getTimeLimit" column="get_time_limit" jdbcType="INTEGER"/>
- <result property="getStartTime" column="get_start_time" jdbcType="TIMESTAMP"/>
- <result property="getEndTime" column="get_end_time" jdbcType="TIMESTAMP"/>
- <result property="totalLimit" column="total_limit" jdbcType="INTEGER"/>
- <result property="totalNum" column="total_num" jdbcType="INTEGER"/>
- <result property="status" column="status" jdbcType="INTEGER"/>
- <result property="sort" column="sort" jdbcType="INTEGER"/>
- <result property="navHref" column="nav_href" jdbcType="VARCHAR"/>
- <result property="reversion" column="reversion" jdbcType="INTEGER"/>
- <result property="createddTime" column="createdd_time" jdbcType="TIMESTAMP"/>
- <result property="createBy" column="create_by" jdbcType="VARCHAR"/>
- <result property="updatedTime" column="updated_time" jdbcType="TIMESTAMP"/>
- <result property="updatedBy" column="updated_by" jdbcType="VARCHAR"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,get_type,active_id,
- tactics_type,name,face_value,
- img_url,get_way,product_type,
- product_value,limit_min_flag,limit_min,
- valid_flag,valid_days,start_time,
- end_time,get_time_limit,get_start_time,
- get_end_time,total_limit,total_num,
- status,sort,nav_href,
- reversion,createdd_time,create_by,
- updated_time,updated_by
- </sql>
- </mapper>
|