72.系统管理--》基础数据-》科室管理
This commit is contained in:
@@ -77,4 +77,16 @@ public class Organization extends HisBaseEntity {
|
||||
|
||||
/** 默认挂号医生 */
|
||||
private Long defDoctorId;
|
||||
|
||||
/** 挂号科室标记 */
|
||||
private Integer registerFlag;
|
||||
|
||||
/** 科室位置 */
|
||||
private String location;
|
||||
|
||||
/** 科室简介 */
|
||||
private String intro;
|
||||
|
||||
/** 备注 */
|
||||
private String remark;
|
||||
}
|
||||
|
||||
@@ -3,5 +3,15 @@
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.openhis.administration.mapper.OrganizationMapper">
|
||||
|
||||
|
||||
<!-- 自定义selectById方法,确保包含所有字段,包括新增字段 -->
|
||||
<select id="selectById" parameterType="java.lang.Long" resultType="com.openhis.administration.domain.Organization">
|
||||
SELECT id, bus_no, name, active_flag, type_enum, class_enum, py_str, wb_str,
|
||||
yb_no, yb_name, caty, display_order, medins_id, medins_admdvs,
|
||||
medins_type, medins_lv, def_doctor_id, create_by, create_time,
|
||||
update_by, update_time, tenant_id, delete_flag,
|
||||
register_flag, location, intro, remark
|
||||
FROM adm_organization
|
||||
WHERE id = #{id} AND delete_flag = '0'
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user