新增 修改站点运营商时,将订单列表中的运营商id也进行修改

This commit is contained in:
Lemon
2023-09-06 14:55:14 +08:00
parent e1fa596818
commit cae981e390
5 changed files with 41 additions and 0 deletions

View File

@@ -239,4 +239,11 @@ public interface OrderBasicInfoMapper {
* @return
*/
IndexOrderInfoVO getIndexOrderDetail(@Param("list") List<String> orderCodeList);
/**
* 通过站点id修改运营商id
* @param stationId
* @return
*/
int updateMerchantByStationId(@Param("stationId")Long stationId, @Param("newMerchantId")String newMerchantId);
}