19 lines
793 B
XML
19 lines
793 B
XML
<?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="net.shapelight.modules.ten.dao.TenChargeDao">
|
|
|
|
<!-- 可根据自己的需求,是否要使用 -->
|
|
<resultMap type="net.shapelight.modules.ten.entity.TenChargeEntity" id="tenChargeMap">
|
|
<result property="chargeId" column="charge_id"/>
|
|
<result property="chargeName" column="charge_name"/>
|
|
<result property="chargeStandart" column="charge_standart"/>
|
|
<result property="mark" column="mark"/>
|
|
<result property="deleteFlag" column="delete_flag"/>
|
|
<result property="cellId" column="cell_id"/>
|
|
<result property="tenantId" column="tenant_id"/>
|
|
</resultMap>
|
|
|
|
|
|
</mapper>
|