24 lines
718 B
C#
24 lines
718 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace NKC.Data.DbModels
|
|
{
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("PrintJobQueue")]
|
|
public partial class PrintJobQueue
|
|
{
|
|
public int IdxPrintJob { get; set; }
|
|
public string TipoReport { get; set; } = null!;
|
|
public string KeyParam { get; set; } = null!;
|
|
public string PrtName { get; set; } = null!;
|
|
public DateTime DtStart { get; set; }
|
|
public DateTime? DtEnd { get; set; }
|
|
public int Stato { get; set; }
|
|
public DateTime? DtLastTry { get; set; }
|
|
}
|
|
}
|