TB_ANTIVIRUS_LOGMapper.java
638 字节
package com.tianbo.analysis.dao;
import com.tianbo.analysis.model.TB_ANTIVIRUS_LOG;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
public interface TB_ANTIVIRUS_LOGMapper {
List<TB_ANTIVIRUS_LOG> selectAll(@RequestParam(value = "tbAntivirusLog") TB_ANTIVIRUS_LOG tbAntivirusLog);
int deleteByPrimaryKey(String autoid);
int insert(TB_ANTIVIRUS_LOG record);
int insertSelective(TB_ANTIVIRUS_LOG record);
TB_ANTIVIRUS_LOG selectByPrimaryKey(String autoid);
int updateByPrimaryKeySelective(TB_ANTIVIRUS_LOG record);
int updateByPrimaryKey(TB_ANTIVIRUS_LOG record);
}