|
|
@ -11,15 +11,14 @@ import java.util.List;
|
|
|
|
* @author ruoyi
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2023-09-19
|
|
|
|
* @date 2023-09-19
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public interface IBExchangeRecordsService
|
|
|
|
public interface IBExchangeRecordsService {
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 查询兑换记录
|
|
|
|
* 查询兑换记录
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param id 兑换记录主键
|
|
|
|
* @param id 兑换记录主键
|
|
|
|
* @return 兑换记录
|
|
|
|
* @return 兑换记录
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public BExchangeRecords selectBExchangeRecordsById(Long id);
|
|
|
|
BExchangeRecords selectBExchangeRecordsById(Long id);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 查询兑换记录列表
|
|
|
|
* 查询兑换记录列表
|
|
|
@ -27,7 +26,7 @@ public interface IBExchangeRecordsService
|
|
|
|
* @param bExchangeRecords 兑换记录
|
|
|
|
* @param bExchangeRecords 兑换记录
|
|
|
|
* @return 兑换记录集合
|
|
|
|
* @return 兑换记录集合
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public List<BExchangeRecords> selectBExchangeRecordsList(BExchangeRecords bExchangeRecords);
|
|
|
|
List<BExchangeRecords> selectBExchangeRecordsList(BExchangeRecords bExchangeRecords);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 新增兑换记录
|
|
|
|
* 新增兑换记录
|
|
|
@ -35,7 +34,7 @@ public interface IBExchangeRecordsService
|
|
|
|
* @param bExchangeRecords 兑换记录
|
|
|
|
* @param bExchangeRecords 兑换记录
|
|
|
|
* @return 结果
|
|
|
|
* @return 结果
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public int insertBExchangeRecords(BExchangeRecords bExchangeRecords);
|
|
|
|
int insertBExchangeRecords(BExchangeRecords bExchangeRecords);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 修改兑换记录
|
|
|
|
* 修改兑换记录
|
|
|
@ -43,7 +42,7 @@ public interface IBExchangeRecordsService
|
|
|
|
* @param bExchangeRecords 兑换记录
|
|
|
|
* @param bExchangeRecords 兑换记录
|
|
|
|
* @return 结果
|
|
|
|
* @return 结果
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public int updateBExchangeRecords(BExchangeRecords bExchangeRecords);
|
|
|
|
int updateBExchangeRecords(BExchangeRecords bExchangeRecords);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 批量删除兑换记录
|
|
|
|
* 批量删除兑换记录
|
|
|
@ -51,7 +50,7 @@ public interface IBExchangeRecordsService
|
|
|
|
* @param ids 需要删除的兑换记录主键集合
|
|
|
|
* @param ids 需要删除的兑换记录主键集合
|
|
|
|
* @return 结果
|
|
|
|
* @return 结果
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public int deleteBExchangeRecordsByIds(Long[] ids);
|
|
|
|
int deleteBExchangeRecordsByIds(Long[] ids);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 删除兑换记录信息
|
|
|
|
* 删除兑换记录信息
|
|
|
@ -59,5 +58,5 @@ public interface IBExchangeRecordsService
|
|
|
|
* @param id 兑换记录主键
|
|
|
|
* @param id 兑换记录主键
|
|
|
|
* @return 结果
|
|
|
|
* @return 结果
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public int deleteBExchangeRecordsById(Long id);
|
|
|
|
int deleteBExchangeRecordsById(Long id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|