forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.3 KiB
27 lines
1.3 KiB
5 years ago
|
<?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.epmet.dao.CodeCustomerDao">
|
||
|
|
||
|
<resultMap type="com.epmet.entity.CodeCustomerEntity" id="codeCustomerMap">
|
||
|
<result property="id" column="ID"/>
|
||
|
<result property="customerId" column="CUSTOMER_ID"/>
|
||
|
<result property="customerName" column="CUSTOMER_NAME"/>
|
||
|
<result property="accessTokenId" column="ACCESS_TOKEN_ID"/>
|
||
|
<result property="templateId" column="TEMPLATE_ID"/>
|
||
|
<result property="type" column="TYPE"/>
|
||
|
<result property="appId" column="APP_ID"/>
|
||
|
<result property="extJson" column="EXT_JSON"/>
|
||
|
<result property="userVersion" column="USER_VERSION"/>
|
||
|
<result property="userDesc" column="USER_DESC"/>
|
||
|
<result property="status" column="STATUS"/>
|
||
|
<result property="revision" column="REVISION"/>
|
||
|
<result property="delFlag" column="DEL_FLAG"/>
|
||
|
<result property="createdBy" column="CREATED_BY"/>
|
||
|
<result property="createdTime" column="CREATED_TIME"/>
|
||
|
<result property="updatedBy" column="UPDATED_BY"/>
|
||
|
<result property="updatedTime" column="UPDATED_TIME"/>
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
</mapper>
|