|
@@ -19,7 +19,7 @@ public interface MessageLogMapper {
|
|
|
void insert(MessageLog messageLog);
|
|
void insert(MessageLog messageLog);
|
|
|
|
|
|
|
|
|
|
|
|
|
- @Select("SELECT * FROM BI_MESSAGELOG ORDER BY BML_ID DESC")
|
|
|
|
|
|
|
+ @Select("SELECT * FROM BI_MESSAGELOG ${condition} ORDER BY BML_ID DESC")
|
|
|
@Results(id = "BaseResultMap", value = {
|
|
@Results(id = "BaseResultMap", value = {
|
|
|
@Result(id = true, column = "BML_ID", property = "id", jdbcType = JdbcType.INTEGER),
|
|
@Result(id = true, column = "BML_ID", property = "id", jdbcType = JdbcType.INTEGER),
|
|
|
@Result(column = "BML_DATE", property = "date", jdbcType = JdbcType.TIMESTAMP),
|
|
@Result(column = "BML_DATE", property = "date", jdbcType = JdbcType.TIMESTAMP),
|
|
@@ -30,5 +30,5 @@ public interface MessageLogMapper {
|
|
|
@Result(column = "BML_MODULE", property = "module", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "BML_MODULE", property = "module", jdbcType = JdbcType.VARCHAR),
|
|
|
@Result(column = "BML_ORDER", property = "order", jdbcType = JdbcType.VARCHAR),
|
|
@Result(column = "BML_ORDER", property = "order", jdbcType = JdbcType.VARCHAR),
|
|
|
})
|
|
})
|
|
|
- List<MessageLog> list(TestPage testPage);
|
|
|
|
|
|
|
+ List<MessageLog> list(@Param("condition") String condition, TestPage testPage);
|
|
|
}
|
|
}
|