|
@@ -0,0 +1,43 @@
|
|
|
+<?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.zanxiang.mybatis.mapper.PayMerchantMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.zanxiang.mybatis.entity.PayMerchant">
|
|
|
+ <id column="id" jdbcType="BIGINT" property="id"/>
|
|
|
+ <result column="pay_way_id" jdbcType="INTEGER" property="payWayId"/>
|
|
|
+ <result column="merchant_no" jdbcType="VARCHAR" property="merchantNo"/>
|
|
|
+ <result column="merchant_name" jdbcType="VARCHAR" property="merchantName"/>
|
|
|
+ <result column="pay_device" jdbcType="VARCHAR" property="payDevice"/>
|
|
|
+ <result column="login_name" jdbcType="VARCHAR" property="loginName"/>
|
|
|
+ <result column="login_password" jdbcType="VARCHAR" property="loginPassword"/>
|
|
|
+ <result column="manage_person" jdbcType="VARCHAR" property="managePerson"/>
|
|
|
+ <result column="mobile" jdbcType="VARCHAR" property="mobile"/>
|
|
|
+ <result column="email" jdbcType="VARCHAR" property="email"/>
|
|
|
+ <result column="status" jdbcType="TINYINT" property="status"/>
|
|
|
+ <result column="max_pay_lock" jdbcType="TINYINT" property="maxPayLock"/>
|
|
|
+ <result column="max_pay_amount" jdbcType="DECIMAL" property="maxPayAmount"/>
|
|
|
+ <result column="mouth_pay_amount" jdbcType="DECIMAL" property="mouthPayAmount"/>
|
|
|
+ <result column="mouth_update_date" jdbcType="DATE" property="mouthUpdateDate"/>
|
|
|
+ <result column="weaker_pay_amount" jdbcType="DECIMAL" property="weakerPayAmount"/>
|
|
|
+ <result column="weaker_update_date" jdbcType="DATE" property="weakerUpdateDate"/>
|
|
|
+ <result column="day_pay_amount" jdbcType="DECIMAL" property="dayPayAmount"/>
|
|
|
+ <result column="day_update_date" jdbcType="DATE" property="dayUpdateDate"/>
|
|
|
+ <result column="remark" jdbcType="VARCHAR" property="remark"/>
|
|
|
+ <result column="pay_config" jdbcType="LONGVARCHAR" property="payConfig"/>
|
|
|
+ <result column="is_delete" jdbcType="TINYINT" property="isDelete"/>
|
|
|
+ <result column="delete_time" jdbcType="TIMESTAMP" property="deleteTime"/>
|
|
|
+ <result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
|
|
|
+ <result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
|
|
|
+ </resultMap>
|
|
|
+ <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.zanxiang.mybatis.entity.PayMerchant">
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ id
|
|
|
+ , pay_way_id, merchant_no, merchant_name, pay_device, login_name, login_password,
|
|
|
+ manage_person, mobile, email, status, max_pay_lock, max_pay_amount, mouth_pay_amount,
|
|
|
+ mouth_update_date, weaker_pay_amount, weaker_update_date, day_pay_amount, day_update_date, remark, is_delete,
|
|
|
+ delete_time, create_time, update_time
|
|
|
+ </sql>
|
|
|
+ <sql id="Blob_Column_List">
|
|
|
+ pay_config
|
|
|
+ </sql>
|
|
|
+</mapper>
|