mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-23 02:29:35 +08:00
22 lines
1.1 KiB
XML
22 lines
1.1 KiB
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="com.ics.admin.mapper.CustomerAttachmentsMapper">
|
||
|
|
||
|
<resultMap type="com.ics.admin.domain.CustomerAttachments" id="CustomerAttachmentsResult">
|
||
|
<result property="id" column="id" />
|
||
|
<result property="name" column="name" />
|
||
|
<result property="url" column="url" />
|
||
|
<result property="customerId" column="customer_id" />
|
||
|
<result property="createBy" column="create_by" />
|
||
|
<result property="createTime" column="create_time" />
|
||
|
<result property="updateBy" column="update_by" />
|
||
|
<result property="updateTime" column="update_time" />
|
||
|
<result property="version" column="version" />
|
||
|
<result property="deleteFlag" column="delete_flag" />
|
||
|
<result property="tenantId" column="tenant_id" />
|
||
|
<result property="parkId" column="park_id" />
|
||
|
</resultMap>
|
||
|
|
||
|
</mapper>
|