19 lines
584 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
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; }
}
}