2025-09-28 09:54:42 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
|
<!DOCTYPE mapper
|
2025-09-28 14:38:41 +08:00
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
2025-09-28 09:54:42 +08:00
|
|
|
<mapper namespace="com.klp.ems.mapper.EmsLocationMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.ems.domain.EmsLocation" id="EmsLocationResult">
|
|
|
|
|
<result property="locationId" column="location_id"/>
|
|
|
|
|
<result property="name" column="name"/>
|
|
|
|
|
<result property="parentId" column="parent_id"/>
|
|
|
|
|
<result property="description" column="description"/>
|
|
|
|
|
<result property="address" column="address"/>
|
|
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
<result property="delFlag" column="del_flag"/>
|
|
|
|
|
<result property="remark" column="remark"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|