19 lines
814 B
XML
Raw Normal View History

2020-11-19 15:15:23 +08:00
<?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" />
2020-11-24 17:56:12 +08:00
<result property="hospitalId" column="hospital_id" />
<result property="syncFlag" column="sync_flag" />
<result property="offFlag" column="off_flag" />
<result property="createAt" column="create_at" />
2020-11-19 15:15:23 +08:00
</resultMap>
</mapper>