18 lines
535 B
C#
18 lines
535 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.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; }
|
|
}
|
|
}
|