45 lines
1.7 KiB
C#
45 lines
1.7 KiB
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("FRCondiciones.MaestroCondicionesProceso")]
|
|
public partial class MaestroCondicionesProceso
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public MaestroCondicionesProceso()
|
|
{
|
|
FiltroCondicionesMaestro = new HashSet<FiltroCondicionesMaestro>();
|
|
FiltroParametrosGlobalesMaestro = new HashSet<FiltroParametrosGlobalesMaestro>();
|
|
}
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodMaestro { get; set; }
|
|
|
|
public bool? MaestroPorDefecto { get; set; }
|
|
|
|
public bool Habilitado { get; set; }
|
|
|
|
public DateTime? FechaInicio { get; set; }
|
|
|
|
public DateTime? FechaVencimiento { get; set; }
|
|
|
|
public virtual Procesos Procesos { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<FiltroCondicionesMaestro> FiltroCondicionesMaestro { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<FiltroParametrosGlobalesMaestro> FiltroParametrosGlobalesMaestro { get; set; }
|
|
}
|
|
}
|