46 lines
1.3 KiB
C#
46 lines
1.3 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("Catalogos.MatrizBeneficiarioSBD")]
|
||
|
|
public partial class MatrizBeneficiarioSBD
|
||
|
|
{
|
||
|
|
[Key]
|
||
|
|
[Column(Order = 0)]
|
||
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
|
public int IdLey8262 { get; set; }
|
||
|
|
|
||
|
|
[Key]
|
||
|
|
[Column(Order = 1)]
|
||
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
|
public int IdSector { get; set; }
|
||
|
|
|
||
|
|
[Key]
|
||
|
|
[Column(Order = 2)]
|
||
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
|
public int IdBeneficiarioSBD { get; set; }
|
||
|
|
|
||
|
|
public bool? Estado { get; set; }
|
||
|
|
|
||
|
|
[StringLength(100)]
|
||
|
|
public string UsuarioCreador { get; set; }
|
||
|
|
|
||
|
|
public DateTime? FechaCreacion { get; set; }
|
||
|
|
|
||
|
|
[StringLength(100)]
|
||
|
|
public string UsuarioModificado { get; set; }
|
||
|
|
|
||
|
|
public DateTime? FechaModificacion { get; set; }
|
||
|
|
|
||
|
|
public virtual BeneficiarioSBD BeneficiarioSBD { get; set; }
|
||
|
|
|
||
|
|
public virtual Ley8262 Ley8262 { get; set; }
|
||
|
|
|
||
|
|
public virtual Sector Sector { get; set; }
|
||
|
|
}
|
||
|
|
}
|