mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-27 06:25:13 +08:00
31 lines
782 B
Java
31 lines
782 B
Java
package com.jsowell.pile.service;
|
|
|
|
import com.jsowell.pile.domain.ClearingWithdrawInfo;
|
|
|
|
import java.util.List;
|
|
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);
|
|
|
|
ClearingWithdrawInfo selectByWithdrawCode(String withdrawCode);
|
|
}
|