15 lines
556 B
XML
15 lines
556 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="com.ruoyi.system.fantang.mapper.FtPatientDaoMapper">
|
||
|
|
||
|
<resultMap type="FtPatientDao" id="FtPatientDaoResult">
|
||
|
<result property="patientId" column="patient_id" />
|
||
|
<result property="name" column="name" />
|
||
|
<result property="departId" column="depart_id" />
|
||
|
<result property="bedId" column="bed_id" />
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
</mapper>
|