InterfaceLogDao.java
316 Bytes
package com.phxl.modules.goods.dao.interfaceLog;
import com.phxl.modules.goods.entity.interfaceLog.InterfaceLog;
/**
* 接口日志DAO接口
* @author zhangbing
* @version 2018-08-20
*/
public interface InterfaceLogDao{
void insert(InterfaceLog interfaceLog);
void update(InterfaceLog interfaceLog);
}