42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.PropositoCredito")]
|
|
public partial class PropositoCredito
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public PropositoCredito()
|
|
{
|
|
Solicitud = new HashSet<Solicitud>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdPropositoCredito { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Descripcion { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string IdActividadEconomica { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string IdNaturalezaGasto { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string IdOrigenRecursos { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string IdDestino { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Solicitud> Solicitud { get; set; }
|
|
}
|
|
}
|