SyAreaEquipmentMapper.java 972 Bytes
package com.objecteye.mapper;

import com.objecteye.entity.SyAreaEquipment;
import com.objecteye.entity.SyAreaEquipmentExample;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface SyAreaEquipmentMapper {
    int countByExample(SyAreaEquipmentExample example);

    int deleteByExample(SyAreaEquipmentExample example);

    int deleteByPrimaryKey(Integer id);

    int insert(SyAreaEquipment record);

    int insertSelective(SyAreaEquipment record);

    List<SyAreaEquipment> selectByExample(SyAreaEquipmentExample example);

    SyAreaEquipment selectByPrimaryKey(Integer id);

    int updateByExampleSelective(@Param("record") SyAreaEquipment record, @Param("example") SyAreaEquipmentExample example);

    int updateByExample(@Param("record") SyAreaEquipment record, @Param("example") SyAreaEquipmentExample example);

    int updateByPrimaryKeySelective(SyAreaEquipment record);

    int updateByPrimaryKey(SyAreaEquipment record);
}