19 lines
584 B
C#
19 lines
584 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_Data.Models
|
|||
|
{
|
|||
|
public partial class TbDataModiHi
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Type { get; set; } = null!;
|
|||
|
public string? DstTable { get; set; }
|
|||
|
public string? DstObjName { get; set; }
|
|||
|
public string? DstObjId { get; set; }
|
|||
|
public string Editor { get; set; } = null!;
|
|||
|
public DateTime EditTime { get; set; }
|
|||
|
public string? Content { get; set; }
|
|||
|
public string? Upd20200410 { get; set; }
|
|||
|
}
|
|||
|
}
|