mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-18 09:35:29 +08:00
19 lines
814 B
XML
19 lines
814 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" />
|
|
<result property="hospitalId" column="hospital_id" />
|
|
<result property="syncFlag" column="sync_flag" />
|
|
<result property="offFlag" column="off_flag" />
|
|
<result property="createAt" column="create_at" />
|
|
</resultMap>
|
|
|
|
|
|
</mapper> |