using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImAutoReport { public ImAutoReport() { ImAutoReportItems = new HashSet(); } public string RptId { get; set; } = null!; public string RptName { get; set; } = null!; public string RptType { get; set; } = null!; public string? TempFileObjId { get; set; } public string? SavePath { get; set; } public string State { get; set; } = null!; public DateTime CreateTime { get; set; } public virtual ICollection ImAutoReportItems { get; set; } } }