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

37 lines
996 B
C#

1 month ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.Iot.Repository.service
* 4D26DFC3-EE8E-4335-983C-A5E1327C99A3
*
* WenJY
*
* 2025-05-27 14:05:40
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using System.Collections.Generic;
using Sln.Iot.Model.dao;
using Sln.Iot.Repository.service.@base;
namespace Sln.Iot.Repository.service
{
public interface IDeviceRecordService:IBaseService<DeviceRecord>
{
bool UpdateCloseTime(DeviceRecord deviceRecord,out List<long> resIds,out int infoRes);
1 month ago
}
}