19 lines
627 B
C#
19 lines
627 B
C#
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!;
|
|
}
|
|
}
|