Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/mapper/ClearingWithdrawInfoMapper.java

66 lines
1.5 KiB
Java
Raw Normal View History

2023-07-21 16:30:31 +08:00
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.ClearingWithdrawInfo;
import org.apache.ibatis.annotations.Param;
2023-08-08 14:16:05 +08:00
import java.util.List;
2023-07-21 16:30:31 +08:00
public interface ClearingWithdrawInfoMapper {
/**
* delete by primary key
2023-08-08 14:35:18 +08:00
*
2023-07-21 16:30:31 +08:00
* @param id primaryKey
* @return deleteCount
*/
int deleteByPrimaryKey(Integer id);
/**
* insert record to table
2023-08-08 14:35:18 +08:00
*
2023-07-21 16:30:31 +08:00
* @param record the record
* @return insert count
*/
int insert(ClearingWithdrawInfo record);
int insertOrUpdate(ClearingWithdrawInfo record);
int insertOrUpdateSelective(ClearingWithdrawInfo record);
/**
* insert record to table selective
2023-08-08 14:35:18 +08:00
*
2023-07-21 16:30:31 +08:00
* @param record the record
* @return insert count
*/
int insertSelective(ClearingWithdrawInfo record);
/**
* select by primary key
2023-08-08 14:35:18 +08:00
*
2023-07-21 16:30:31 +08:00
* @param id primary key
* @return object by primary key
*/
ClearingWithdrawInfo selectByPrimaryKey(Integer id);
/**
* update record selective
2023-08-08 14:35:18 +08:00
*
2023-07-21 16:30:31 +08:00
* @param record the updated record
* @return update count
*/
int updateByPrimaryKeySelective(ClearingWithdrawInfo record);
/**
* update record
2023-08-08 14:35:18 +08:00
*
2023-07-21 16:30:31 +08:00
* @param record the updated record
* @return update count
*/
int updateByPrimaryKey(ClearingWithdrawInfo record);
int updateBatch(List<ClearingWithdrawInfo> list);
int batchInsert(@Param("list") List<ClearingWithdrawInfo> list);
2023-08-08 14:16:05 +08:00
ClearingWithdrawInfo selectByWithdrawCode(String withdrawCode);
2023-07-21 16:30:31 +08:00
}