17 lines
495 B
C#
17 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ISMS_Data.Models
|
|
{
|
|
public partial class ImYxdatum
|
|
{
|
|
public int Id { get; set; }
|
|
public string DataId { get; set; } = null!;
|
|
public string OccTime { get; set; } = null!;
|
|
public int SwState { get; set; }
|
|
public string NormalOrNot { get; set; } = null!;
|
|
public DateTime CreateTime { get; set; }
|
|
public string? Comment { get; set; }
|
|
}
|
|
}
|