22 lines
406 B
C#
22 lines
406 B
C#
|
|
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; }
|
|||
|
|
}
|