mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
优化清分账单逻辑
This commit is contained in:
@@ -2,7 +2,6 @@ package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.ClearingBillInfo;
|
||||
import com.jsowell.pile.dto.GetClearingBillDTO;
|
||||
import com.jsowell.pile.vo.web.ClearingBillVO;
|
||||
import com.jsowell.pile.vo.web.MerchantClearingBillVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
@@ -25,6 +24,10 @@ public interface ClearingBillInfoMapper {
|
||||
*/
|
||||
int insert(ClearingBillInfo record);
|
||||
|
||||
int insertOrUpdate(ClearingBillInfo record);
|
||||
|
||||
int insertOrUpdateSelective(ClearingBillInfo record);
|
||||
|
||||
/**
|
||||
* insert record to table selective
|
||||
*
|
||||
@@ -57,12 +60,19 @@ public interface ClearingBillInfoMapper {
|
||||
*/
|
||||
int updateByPrimaryKey(ClearingBillInfo record);
|
||||
|
||||
int updateBatch(List<ClearingBillInfo> list);
|
||||
|
||||
int updateBatchSelective(List<ClearingBillInfo> list);
|
||||
|
||||
int batchInsert(@Param("list") List<ClearingBillInfo> list);
|
||||
|
||||
List<ClearingBillInfo> selectByMerchantId(@Param("merchantId") String merchantId, @Param("billStatus") String billStatus);
|
||||
|
||||
void updateStatus(@Param("clearingBillIds") List<Integer> clearingBillIds, @Param("billStatus") String billStatus);
|
||||
|
||||
/**
|
||||
* 后管用 查询运营商账单列表
|
||||
*
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user