2023-07-21 16:30:31 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
|
|
|
|
import com.jsowell.pile.domain.ClearingWithdrawInfo;
|
2023-08-22 09:42:30 +08:00
|
|
|
import com.jsowell.pile.vo.web.ClearingBillVO;
|
2023-08-08 14:16:05 +08:00
|
|
|
|
|
|
|
|
import java.util.List;
|
2023-07-21 16:30:31 +08:00
|
|
|
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);
|
|
|
|
|
|
2023-08-08 14:16:05 +08:00
|
|
|
ClearingWithdrawInfo selectByWithdrawCode(String withdrawCode);
|
2023-08-22 09:42:30 +08:00
|
|
|
|
|
|
|
|
ClearingBillVO selectWithdrawInfoByOrderCode(String orderCode);
|
2023-08-22 13:44:10 +08:00
|
|
|
|
|
|
|
|
List<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList);
|
2023-07-21 16:30:31 +08:00
|
|
|
}
|