OMS-GW-企业国别
This commit is contained in:
+4
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user