审查视图

src/main/java/com/tianbo/warehouse/dao/LOGMapper.java 674 字节
朱兆平 authored
1 2 3 4
package com.tianbo.warehouse.dao;

import com.tianbo.warehouse.model.LOG;
import com.tianbo.warehouse.model.LOGWithBLOBs;
shenhailong authored
5
import org.apache.ibatis.annotations.Param;
朱兆平 authored
6
朱兆平 authored
7 8
import java.util.List;
朱兆平 authored
9 10 11 12 13 14 15 16 17
public interface LOGMapper {
    int deleteByPrimaryKey(Integer logid);

    int insert(LOGWithBLOBs record);

    int insertSelective(LOGWithBLOBs record);

    LOGWithBLOBs selectByPrimaryKey(Integer logid);
shenhailong authored
18
    List<LOGWithBLOBs> selectAll(@Param("username") String username, @Param("modelnamecn") String modelnamecn);
朱兆平 authored
19
朱兆平 authored
20 21 22 23 24 25
    int updateByPrimaryKeySelective(LOGWithBLOBs record);

    int updateByPrimaryKeyWithBLOBs(LOGWithBLOBs record);

    int updateByPrimaryKey(LOG record);
}