22 lines
406 B
C#
Raw Normal View History

2024-11-26 13:45:28 +08:00
using System;
using System.Collections.Generic;
namespace YunDa.SOMS.Commdb.Models;
public partial class DeviceSntp
{
public int Id { get; set; }
public string? SntpIp { get; set; }
public int? CycleSpace { get; set; }
public int? ProbeCount { get; set; }
public int? ProbeInterval { get; set; }
public int? HwClock { get; set; }
public int? ErrTimes { get; set; }
}