DispatchBusinessMapper.java 924 字节
package com.sunyo.wlpt.dispatch.mapper;

import com.sunyo.wlpt.dispatch.domain.DispatchBusiness;

import java.util.List;

import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

/**
 * @author 子诚
 * Description:
 * 时间:2020/4/21 15:16
 */
@Mapper
public interface DispatchBusinessMapper {
    int deleteByPrimaryKey(String id);

    int insert(DispatchBusiness record);

    int insertOrUpdate(DispatchBusiness record);

    int insertOrUpdateSelective(DispatchBusiness record);

    int insertSelective(DispatchBusiness record);

    DispatchBusiness selectByPrimaryKey(String id);

    int updateByPrimaryKeySelective(DispatchBusiness record);

    int updateByPrimaryKey(DispatchBusiness record);

    int updateBatch(List<DispatchBusiness> list);

    int updateBatchSelective(List<DispatchBusiness> list);

    int batchInsert(@Param("list") List<DispatchBusiness> list);
}