|
@@ -23,7 +23,11 @@ public interface SiLogDao extends BaseMapper<SiLog> {
|
|
|
"</if>" +
|
|
|
"<if test=\"ftclg.patNo!=null and ftclg.patNo!=''\">" +
|
|
|
"and pat_no=#{ftclg.patNo} " +
|
|
|
- "</if> order by create_datetime" +
|
|
|
+ "</if> " +
|
|
|
+ "<if test=\"ftclg.times!=null\">" +
|
|
|
+ "and times=#{ftclg.times} " +
|
|
|
+ "</if> " +
|
|
|
+ "order by create_datetime" +
|
|
|
"</script>")
|
|
|
IPage<SiLog> selectSiLogs(IPage<SiLog> iPage,
|
|
|
@Param("ftclg") FetchLog ftclg);
|
|
@@ -40,6 +44,9 @@ public interface SiLogDao extends BaseMapper<SiLog> {
|
|
|
"<if test=\"ftclg.patNo!=null and ftclg.patNo!=''\">" +
|
|
|
"and pat_no=#{ftclg.patNo} " +
|
|
|
"</if>" +
|
|
|
+ "<if test=\"ftclg.times!=null\">" +
|
|
|
+ "and times=#{ftclg.times} " +
|
|
|
+ "</if> " +
|
|
|
"</script>")
|
|
|
Integer selectSuccessSiLogCount(@Param("ftclg") FetchLog ftclg);
|
|
|
}
|