19 lines
627 B
C#
Raw Permalink Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImVDzdataMain
{
public string DzdataMainId { get; set; } = null!;
public string DataType { get; set; } = null!;
public string DeviceId { get; set; } = null!;
public int CpuIndex { get; set; }
public int ZoneNo { get; set; }
public DateTime CreateTime { get; set; }
public string UserName { get; set; } = null!;
public string DeviceName { get; set; } = null!;
public string StatName { get; set; } = null!;
}
}