#
18516761980
2021-08-16 f25c800bca726b67ea74e6ed576b038b1b9561a7
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();
}