2024-09-25 16:05:17 +08:00
|
|
|
package com.jsowell.pile.mapper;
|
|
|
|
|
|
2024-09-25 17:07:17 +08:00
|
|
|
import com.jsowell.pile.domain.StationSplitConfig;
|
2024-09-26 15:40:53 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
2024-09-25 17:07:17 +08:00
|
|
|
|
2024-09-26 17:19:17 +08:00
|
|
|
import java.util.Date;
|
2024-09-25 17:07:17 +08:00
|
|
|
import java.util.List;
|
|
|
|
|
|
2024-09-25 16:05:17 +08:00
|
|
|
public interface StationSplitConfigMapper {
|
|
|
|
|
|
2024-09-25 17:07:17 +08:00
|
|
|
/**
|
|
|
|
|
* 根据站点编号查询
|
|
|
|
|
* @param stationId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<StationSplitConfig> queryByStationId(String stationId);
|
2024-09-26 14:02:44 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量插入站点分账配置
|
|
|
|
|
*/
|
|
|
|
|
int batchInsert(List<StationSplitConfig> splitConfigList);
|
2024-09-26 15:40:53 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据运营商id和站点id逻辑删除
|
|
|
|
|
*/
|
2024-09-26 17:19:17 +08:00
|
|
|
int deleteByMerchantIdAndStationId(@Param("merchantId") String merchantId, @Param("stationId") String stationId, @Param("updateBy") String updateBy, @Param("updateTime") Date updateTime);
|
2025-04-03 14:09:11 +08:00
|
|
|
|
|
|
|
|
int deleteByStationId(@Param("stationId") String stationId, @Param("updateBy") String updateBy, @Param("updateTime") Date updateTime);
|
|
|
|
|
}
|