OrderParkMapper.java 873 Bytes
package com.zteits.job.mapper;

import com.zteits.job.domain.OrderPark;
import com.zteits.job.domain.OrderParkExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface OrderParkMapper {
    long countByExample(OrderParkExample example);

    int deleteByExample(OrderParkExample example);

    int deleteByPrimaryKey(Long id);

    int insert(OrderPark record);

    int insertSelective(OrderPark record);

    List<OrderPark> selectByExample(OrderParkExample example);

    OrderPark selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") OrderPark record, @Param("example") OrderParkExample example);

    int updateByExample(@Param("record") OrderPark record, @Param("example") OrderParkExample example);

    int updateByPrimaryKeySelective(OrderPark record);

    int updateByPrimaryKey(OrderPark record);
}