package com.jsowell.pile.service; import java.util.List; import com.jsowell.pile.domain.ClearingWithdrawInfo; public interface ClearingWithdrawInfoService{ int deleteByPrimaryKey(Integer id); int insert(ClearingWithdrawInfo record); int insertOrUpdate(ClearingWithdrawInfo record); int insertOrUpdateSelective(ClearingWithdrawInfo record); int insertSelective(ClearingWithdrawInfo record); ClearingWithdrawInfo selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ClearingWithdrawInfo record); int updateByPrimaryKey(ClearingWithdrawInfo record); int updateBatch(List list); int batchInsert(List list); }