38 lines
993 B
C#
38 lines
993 B
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("Prendario.EPResultadoCIC")]
|
|
public partial class EPResultadoCIC
|
|
{
|
|
[Key]
|
|
public int rc_id { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string rc_llave_registro { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string rc_incidente { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string rc_solicitud { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string rc_proceso { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string rc_identificacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string rc_resultado { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string rc_tabla { get; set; }
|
|
|
|
public int? rc_idcliente { get; set; }
|
|
}
|
|
}
|