|
@@ -36,6 +36,12 @@
|
|
|
<if test="dto.isTextbookPlan != null and dto.isTextbookPlan != ''">
|
|
|
and t1.is_textbook_plan = #{dto.isTextbookPlan}
|
|
|
</if>
|
|
|
+ <if test="dto.issn != null and dto.issn != ''">
|
|
|
+ and t1.issn like concat('%', #{dto.issn}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="dto.editorInChief != null and dto.editorInChief != ''">
|
|
|
+ and t1.editor_in_chief like concat('%', #{dto.editorInChief}, '%')
|
|
|
+ </if>
|
|
|
</select>
|
|
|
|
|
|
<select id="subscriptionList" resultType="com.xjrsoft.module.textbook.vo.TextbookSubscriptionRecordVo">
|