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("Formalizacion.FormalizacionCondicionesVarias")]
|
|
public partial class FormalizacionCondicionesVarias
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int Incident { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCondicion { get; set; }
|
|
|
|
public bool? Cumplida { get; set; }
|
|
|
|
public DateTime Fecha { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(300)]
|
|
public string UserID { get; set; }
|
|
|
|
public virtual CondicionesVarias CondicionesVarias { get; set; }
|
|
|
|
public virtual Procesos Procesos { get; set; }
|
|
|
|
public virtual DatosGeneralesFormalizacion DatosGeneralesFormalizacion { get; set; }
|
|
}
|
|
}
|