<?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.cj.jiaqingjiayi.mapper.BusinessAuthMapper">

    <resultMap id="BaseResultMap" type="com.cj.jiaqingjiayi.model.domain.BusinessAuth">
            <id property="id" column="id" jdbcType="BIGINT"/>
            <result property="businessId" column="businessId" jdbcType="BIGINT"/>
            <result property="shopkeeper" column="shopkeeper" jdbcType="VARCHAR"/>
            <result property="license" column="license" jdbcType="VARCHAR"/>
            <result property="frontIdCard" column="frontIdCard" jdbcType="VARCHAR"/>
            <result property="backIdCard" column="backIdCard" jdbcType="VARCHAR"/>
            <result property="bankCard" column="bankCard" jdbcType="VARCHAR"/>
            <result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
            <result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
            <result property="isDelete" column="isDelete" jdbcType="TINYINT"/>
    </resultMap>

    <sql id="Base_Column_List">
        id,businessId,shopkeeper,
        license,frontIdCard,backIdCard,
        bankCard,createTime,updateTime,
        isDelete
    </sql>
</mapper>