2023年4月15日 修复查询

This commit is contained in:
bai 2023-04-15 16:14:47 +08:00
parent 24d28ecef9
commit 88f62038b7
2 changed files with 9 additions and 4 deletions

View File

@ -211,5 +211,11 @@ public class KcTingke implements Serializable {
*/
@TableField(exist = false)
private String endDate;
/**
* 节次
*/
@TableField(exist = false)
private String hh;
// private java.lang.String tingketime;
}

View File

@ -465,6 +465,9 @@
<if test="searchInput != null and searchInput != ''">
and (kcmc like CONCAT('%',#{searchInput},'%') or skjs like CONCAT('%',#{searchInput},'%'))
</if>
<if test="hh != null and hh != ''">
and tk.hh = #{hh}
</if>
<if test="pj != null and pj != ''">
<if test="pj == '0'">
and score is null
@ -478,10 +481,6 @@
<if test="pageSize != -1 and pageSize != null">
LIMIT #{pageSize}
</if>
<if test="pageSize != -1 and pageSize != null">
LIMIT #{pageSize}
</if>
</select>