OMS-GW-企业国别

This commit is contained in:
zhaoqing
2026-05-07 17:44:07 +08:00
parent afdea9dbf1
commit 0c2dff7faf
4 changed files with 75 additions and 5 deletions
@@ -1,6 +1,7 @@
package com.mhd.oms.domain.erpCountry.repository.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mhd.oms.domain.erpCountry.entity.ErpCountry;
import com.mhd.oms.domain.erpCountry.repository.po.ErpCountryPO;
import com.mhd.oms.interfaces.dto.erpCountry.ErpCountryDTO;
@@ -10,7 +11,7 @@ import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface ErpCountryMapper {
public interface ErpCountryMapper extends BaseMapper<ErpCountry> {
/**
*
@@ -18,4 +19,6 @@ public interface ErpCountryMapper {
* @return
*/
List<ErpCountryPO> queryList(@Param("erpCountryDTO") ErpCountryDTO erpCountryDTO);
int deleteByIds(@Param("idList") List<Long> idList);
}