You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
502 B

package com.ruoyi.tc.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.tc.entity.UnitOtherConcat;
import java.util.List;
/**
* 单位其他联系人(unit_other_contact)数据层
* @author ruoyi
*/
public interface UnitOtherConcatMapper extends BaseMapper<UnitOtherConcat>
{
/**
* 根据unitId逻辑删除
*/
void deleteByUnitIds(List<Long> idList);
/**
* 根据assetId逻辑删除
*/
void deleteByAssetIds(List<Long> idList);
}