mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
29 lines
713 B
Java
29 lines
713 B
Java
|
|
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<ClearingWithdrawInfo> list);
|
||
|
|
|
||
|
|
int batchInsert(List<ClearingWithdrawInfo> list);
|
||
|
|
|
||
|
|
}
|