2025-07-21 18:49:49 +08:00
|
|
|
|
|
|
|
|
using DMS.Core.Models;
|
|
|
|
|
|
|
|
|
|
namespace DMS.Core.Interfaces.Repositories
|
|
|
|
|
{
|
|
|
|
|
public interface IVariableTableRepository:IBaseRepository<VariableTable>
|
|
|
|
|
{
|
2025-07-24 18:09:46 +08:00
|
|
|
Task<int> DeleteByDeviceIdAsync(int deviceId);
|
2025-07-21 18:49:49 +08:00
|
|
|
}
|
|
|
|
|
}
|