2023年4月15日 修复查询
This commit is contained in:
parent
24d28ecef9
commit
88f62038b7
|
@ -211,5 +211,11 @@ public class KcTingke implements Serializable {
|
||||||
*/
|
*/
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String endDate;
|
private String endDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 节次
|
||||||
|
*/
|
||||||
|
@TableField(exist = false)
|
||||||
|
private String hh;
|
||||||
// private java.lang.String tingketime;
|
// private java.lang.String tingketime;
|
||||||
}
|
}
|
||||||
|
|
|
@ -465,6 +465,9 @@
|
||||||
<if test="searchInput != null and searchInput != ''">
|
<if test="searchInput != null and searchInput != ''">
|
||||||
and (kcmc like CONCAT('%',#{searchInput},'%') or skjs like CONCAT('%',#{searchInput},'%'))
|
and (kcmc like CONCAT('%',#{searchInput},'%') or skjs like CONCAT('%',#{searchInput},'%'))
|
||||||
</if>
|
</if>
|
||||||
|
<if test="hh != null and hh != ''">
|
||||||
|
and tk.hh = #{hh}
|
||||||
|
</if>
|
||||||
<if test="pj != null and pj != ''">
|
<if test="pj != null and pj != ''">
|
||||||
<if test="pj == '0'">
|
<if test="pj == '0'">
|
||||||
and score is null
|
and score is null
|
||||||
|
@ -478,10 +481,6 @@
|
||||||
<if test="pageSize != -1 and pageSize != null">
|
<if test="pageSize != -1 and pageSize != null">
|
||||||
LIMIT #{pageSize}
|
LIMIT #{pageSize}
|
||||||
</if>
|
</if>
|
||||||
<if test="pageSize != -1 and pageSize != null">
|
|
||||||
LIMIT #{pageSize}
|
|
||||||
</if>
|
|
||||||
|
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue