LOGMapper.java 674 字节
package com.tianbo.warehouse.dao;

import com.tianbo.warehouse.model.LOG;
import com.tianbo.warehouse.model.LOGWithBLOBs;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface LOGMapper {
    int deleteByPrimaryKey(Integer logid);

    int insert(LOGWithBLOBs record);

    int insertSelective(LOGWithBLOBs record);

    LOGWithBLOBs selectByPrimaryKey(Integer logid);

    List<LOGWithBLOBs> selectAll(@Param("username") String username, @Param("modelnamecn") String modelnamecn);

    int updateByPrimaryKeySelective(LOGWithBLOBs record);

    int updateByPrimaryKeyWithBLOBs(LOGWithBLOBs record);

    int updateByPrimaryKey(LOG record);
}