46 lines
1.5 KiB
C#
46 lines
1.5 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.FiltroCondicionesMaestro")]
|
|
public partial class FiltroCondicionesMaestro
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public FiltroCondicionesMaestro()
|
|
{
|
|
ReglasCondiciones = new HashSet<ReglasCondiciones>();
|
|
}
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodMaestro { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodCondicion { get; set; }
|
|
|
|
public bool? Habilitado { get; set; }
|
|
|
|
public DateTime? FechaInicio { get; set; }
|
|
|
|
public DateTime? FechaVencimiento { get; set; }
|
|
|
|
public virtual MaestroCondicionesProceso MaestroCondicionesProceso { get; set; }
|
|
|
|
public virtual TipoCondiciones TipoCondiciones { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<ReglasCondiciones> ReglasCondiciones { get; set; }
|
|
}
|
|
}
|