1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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.diagbot.mapper.StrTransferOutNoteMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.diagbot.entity.StrTransferOutNote">
- <id column="rec_id" property="recId" />
- <result column="hospital_id" property="hospitalId" />
- <result column="behospital_code" property="behospitalCode" />
- <result column="name" property="name" />
- <result column="sex" property="sex" />
- <result column="age" property="age" />
- <result column="bed_no" property="bedNo" />
- <result column="dept_name" property="deptName" />
- <result column="record_date" property="recordDate" />
- <result column="transfer_in_date" property="transferInDate" />
- <result column="transfer_out_dept" property="transferOutDept" />
- <result column="transfer_in_dept" property="transferInDept" />
- <result column="chief" property="chief" />
- <result column="behospital_situation" property="behospitalSituation" />
- <result column="current_situation" property="currentSituation" />
- <result column="tentative_diagnosis" property="tentativeDiagnosis" />
- <result column="treatment_process" property="treatmentProcess" />
- <result column="current_diagnosis" property="currentDiagnosis" />
- <result column="treat_plan" property="treatPlan" />
- <result column="rec_doctor" property="recDoctor" />
- <result column="rec_date" property="recDate" />
- <result column="audit_doctor" property="auditDoctor" />
- <result column="audit_date" property="auditDate" />
- <result column="whole_data" property="wholeData" />
- <result column="remark" property="remark" />
- <result column="is_deleted" property="isDeleted" />
- <result column="gmt_create" property="gmtCreate" />
- <result column="gmt_modified" property="gmtModified" />
- <result column="creator" property="creator" />
- <result column="modifier" property="modifier" />
- </resultMap>
- <update id="updateBatchByKey">
- <foreach collection="list" item="item" separator=";">
- update str_transfer_out_note
- <set>
- name= #{item.name},
- sex= #{item.sex},
- age= #{item.age},
- bed_no= #{item.bedNo},
- dept_name= #{item.deptName},
- record_date= #{item.recordDate},
- transfer_in_date= #{item.transferInDate},
- transfer_out_dept= #{item.transferOutDept},
- transfer_in_dept= #{item.transferInDept},
- chief= #{item.chief},
- behospital_situation= #{item.behospitalSituation},
- current_situation= #{item.currentSituation},
- tentative_diagnosis= #{item.tentativeDiagnosis},
- treatment_process= #{item.treatmentProcess},
- current_diagnosis= #{item.currentDiagnosis},
- treat_plan= #{item.treatPlan},
- rec_doctor= #{item.recDoctor},
- rec_date= #{item.recDate},
- audit_doctor= #{item.auditDoctor},
- audit_date= #{item.auditDate},
- whole_data= #{item.wholeData},
- remark= #{item.remark},
- <if test="item.gmtModified != null">
- gmt_modified = #{item.gmtModified},
- </if>
- <if test="item.modifier != null">
- modifier = #{item.modifier},
- </if>
- </set>
- where rec_id = #{item.recId} and hospital_id = #{item.hospitalId} and behospital_code = #{item.behospitalCode}
- </foreach>
- </update>
- <select id="getColumnZhAndCh" resultType="com.diagbot.dto.data.ColumnZhAndChDTO">
- select COLUMN_NAME as en,column_comment as ch from INFORMATION_SCHEMA.Columns where table_name='str_transfer_out_note'
- </select>
- </mapper>
|