소스 검색

新增科室图标

半月无霜 4 년 전
부모
커밋
19dde7825e
2개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      ymall/src/main/resources/application.yml
  2. 4 1
      ymall/src/main/resources/mapper/HospitalDeptMapper.xml

+ 1 - 1
ymall/src/main/resources/application.yml

@@ -11,7 +11,7 @@ logging:
 
 spring:
     profiles:
-        active: pgprod
+        active: pgdev
     cache:
         type: ehcache
         ehcache:

+ 4 - 1
ymall/src/main/resources/mapper/HospitalDeptMapper.xml

@@ -69,7 +69,10 @@
   </select>
 
 	<select id="get" resultType="map">
-		select xcdepartid AS id, departmentname AS "departmentName" from hospitaldepartments
+		select xcdepartid AS id,
+			departmentname AS "departmentName",
+			icon
+		from hospitaldepartments
 		WHERE parentid is not null AND isdelete = 'f'
 		<if test="id!=null">AND xcdepartid = #{id}</if>
 		<if test="name!=null">AND departmentname = #{name}</if>