|
|
@@ -3,6 +3,18 @@
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="cn.tr.module.smart.common.repository.BizQuestionGroupRepository">
|
|
|
+ <update id="updateQuestionGroupById">
|
|
|
+ update biz_question_group
|
|
|
+ set name = #{source.name},
|
|
|
+ version = #{source.version},
|
|
|
+ type = #{source.type},
|
|
|
+ interval = #{source.interval},
|
|
|
+ frequency = #{source.frequency},
|
|
|
+ md5 = #{source.md5}
|
|
|
+ where id = #{source.id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+
|
|
|
<select id="selectQuestionAndDeptList"
|
|
|
resultType="cn.tr.module.smart.app.controller.vo.AppQuestionAndDeptListVO">
|
|
|
SELECT
|