#修复模型模块接口-逻辑删除不生效问题

This commit is contained in:
2026-05-09 14:47:10 +08:00
parent 7d1c41d7d3
commit 038006a212
4 changed files with 109 additions and 18 deletions

View File

@@ -39,4 +39,11 @@ public interface SysDeviceModelService {
* @return
*/
int updateDeviceModel(DeviceModel deviceModel);
/**
* 删除(逻辑删除模型)
* @param id
* @return
*/
int deleteDeviceModelById(Long id);
}