23 lines
808 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class TbDaTask
{
public string TaskId { get; set; } = null!;
public string TaskName { get; set; } = null!;
public string StartTime { get; set; } = null!;
public string EndTime { get; set; } = null!;
public string Sql4acquisition { get; set; } = null!;
public string? Sql4record { get; set; }
public string? SrcServer { get; set; }
public string? SrcDatabase { get; set; }
public string? SrcTable { get; set; }
public string State { get; set; } = null!;
public DateTime CreateTime { get; set; }
public string? Memo { get; set; }
public int? SeqNo { get; set; }
}
}