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.
|
|
|
package com.ruoyi.tc.mapper;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
import com.ruoyi.tc.entity.po.AssetCurrentCpPo;
|
|
|
|
import org.apache.ibatis.annotations.Delete;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 现有资产复制表(AssetCurrentResponse)表数据库访问层
|
|
|
|
*
|
|
|
|
* @author makejava
|
|
|
|
* @since 2024-11-15 10:03:56
|
|
|
|
*/
|
|
|
|
public interface AssetCurrentCpMapper extends BaseMapper<AssetCurrentCpPo> {
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param assetId
|
|
|
|
* @param taskId
|
|
|
|
*/
|
|
|
|
@Delete("delete from asset_current_cp where id=#{assetId} and task_id =#{taskId} ")
|
|
|
|
void deletByAssetIdandTaskId(@Param("assetId") Long assetId, @Param("taskId")int taskId);
|
|
|
|
}
|
|
|
|
|