mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
|
|
package com.jsowell.pile.mapper;
|
||
|
|
|
||
|
|
import com.jsowell.pile.domain.ClearingBillInfo;
|
||
|
|
|
||
|
|
public interface ClearingBillInfoMapper {
|
||
|
|
/**
|
||
|
|
* delete by primary key
|
||
|
|
* @param id primaryKey
|
||
|
|
* @return deleteCount
|
||
|
|
*/
|
||
|
|
int deleteByPrimaryKey(Integer id);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* insert record to table
|
||
|
|
* @param record the record
|
||
|
|
* @return insert count
|
||
|
|
*/
|
||
|
|
int insert(ClearingBillInfo record);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* insert record to table selective
|
||
|
|
* @param record the record
|
||
|
|
* @return insert count
|
||
|
|
*/
|
||
|
|
int insertSelective(ClearingBillInfo record);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* select by primary key
|
||
|
|
* @param id primary key
|
||
|
|
* @return object by primary key
|
||
|
|
*/
|
||
|
|
ClearingBillInfo selectByPrimaryKey(Integer id);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* update record selective
|
||
|
|
* @param record the updated record
|
||
|
|
* @return update count
|
||
|
|
*/
|
||
|
|
int updateByPrimaryKeySelective(ClearingBillInfo record);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* update record
|
||
|
|
* @param record the updated record
|
||
|
|
* @return update count
|
||
|
|
*/
|
||
|
|
int updateByPrimaryKey(ClearingBillInfo record);
|
||
|
|
}
|