package org.jeecg.modules.tms.service;
|
|
import org.jeecg.modules.tms.entity.TmsToolStocktakingDetail;
|
import org.jeecg.modules.tms.entity.TmsToolStocktaking;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import java.io.Serializable;
|
import java.util.Collection;
|
import java.util.List;
|
|
/**
|
* @Description: 工装盘点
|
* @Author: jeecg-boot
|
* @Date: 2025-07-28
|
* @Version: V1.0
|
*/
|
public interface ITmsToolStocktakingService extends IService<TmsToolStocktaking> {
|
|
/**
|
* 删除一对多
|
*
|
* @param id
|
*/
|
public void delMain (String id);
|
|
/**
|
* 批量删除一对多
|
*
|
* @param idList
|
*/
|
public void delBatchMain (Collection<? extends Serializable> idList);
|
|
|
}
|