王佳豪
2021-06-26 1192471cf1701e532ceb32dc103f1c8e0fb818ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.slcf.dao;
 
import com.slcf.pojo.SapRequestLogBean;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
import java.util.Date;
import java.util.List;
 
@Repository
public interface SapRequestLogDao {
 
    // 查询sap请求日志
    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);
}