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

import com.tianbo.warehouse.model.LOG;
import com.tianbo.warehouse.model.LOGWithBLOBs;

public interface LOGMapper {
    int deleteByPrimaryKey(Integer logid);

    int insert(LOGWithBLOBs record);

    int insertSelective(LOGWithBLOBs record);

    LOGWithBLOBs selectByPrimaryKey(Integer logid);

    int updateByPrimaryKeySelective(LOGWithBLOBs record);

    int updateByPrimaryKeyWithBLOBs(LOGWithBLOBs record);

    int updateByPrimaryKey(LOG record);
}