王佳豪
2021-06-26 718f604deb342b0bee6c588bb44e22ced3371fb8
src/main/java/com/slcf/dao/SapRequestLogDao.java
@@ -12,8 +12,11 @@
public interface SapRequestLogDao {
    // 查询sap请求日志
    public List<SapRequestLogBean> querySapLog();
    public List<SapRequestLogBean> querySapLog(@Param("condition") String condition);
    // 新增sap请求日志
    public Integer addSapLog(@Param("matnr") String matnr, @Param("request") String request, @Param("response") String response, @Param("create_time") Date create_time, @Param("type") Integer type, @Param("remark") String remark);
    // 删除sap的2天前的日志内容
    public Integer clearSapLog();
}