PreparemasterMapper.java 750 字节
package com.tianbo.mapper;

import java.util.List;
import org.apache.ibatis.annotations.Param;

import com.tianbo.model.Preparemaster;
import com.tianbo.model.PreparemasterExample;


public interface PreparemasterMapper {
    int countByExample(PreparemasterExample example);

    int deleteByExample(PreparemasterExample example);

    int insert(Preparemaster record);

    int insertSelective(Preparemaster record);

    List<Preparemaster> selectByExample(PreparemasterExample example);

    int updateByExampleSelective(@Param("record") Preparemaster record, @Param("example") PreparemasterExample example);

    int updateByExample(@Param("record") Preparemaster record, @Param("example") PreparemasterExample example);
}