81 lines
2.3 KiB
C#
81 lines
2.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("Global.ControlVisitas")]
|
||
|
|
public partial class ControlVisitas
|
||
|
|
{
|
||
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
||
|
|
public ControlVisitas()
|
||
|
|
{
|
||
|
|
EmailSolicitud = new HashSet<EmailSolicitud>();
|
||
|
|
}
|
||
|
|
|
||
|
|
[Key]
|
||
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||
|
|
public int IdControlVisitas { get; set; }
|
||
|
|
|
||
|
|
public int? IdSolicitud { get; set; }
|
||
|
|
|
||
|
|
public DateTime? FechaProgramada { get; set; }
|
||
|
|
|
||
|
|
[StringLength(8)]
|
||
|
|
public string HoraProgramada { get; set; }
|
||
|
|
|
||
|
|
[StringLength(8)]
|
||
|
|
public string HoraProgramadaFin { get; set; }
|
||
|
|
|
||
|
|
public int? IdTipoCliente { get; set; }
|
||
|
|
|
||
|
|
[StringLength(50)]
|
||
|
|
public string UserId { get; set; }
|
||
|
|
|
||
|
|
[StringLength(200)]
|
||
|
|
public string UserFullName { get; set; }
|
||
|
|
|
||
|
|
public int? IdDepartamentoNegocios { get; set; }
|
||
|
|
|
||
|
|
[StringLength(2000)]
|
||
|
|
public string ComentariosAdicionales { get; set; }
|
||
|
|
|
||
|
|
[StringLength(200)]
|
||
|
|
public string AsuntoVisita { get; set; }
|
||
|
|
|
||
|
|
public int? IdEstatusVisita { get; set; }
|
||
|
|
|
||
|
|
public DateTime? FechaEjecucion { get; set; }
|
||
|
|
|
||
|
|
[StringLength(8)]
|
||
|
|
public string HoraEjecucion { get; set; }
|
||
|
|
|
||
|
|
[StringLength(500)]
|
||
|
|
public string Direccion { get; set; }
|
||
|
|
|
||
|
|
public int? DistanciaRecorrida { get; set; }
|
||
|
|
|
||
|
|
[StringLength(50)]
|
||
|
|
public string Etapa { get; set; }
|
||
|
|
|
||
|
|
public decimal? ValorKilometro { get; set; }
|
||
|
|
|
||
|
|
public int? IdVehiculo { get; set; }
|
||
|
|
|
||
|
|
public virtual DepartamentoNegocios DepartamentoNegocios { get; set; }
|
||
|
|
|
||
|
|
public virtual StatusVisita StatusVisita { get; set; }
|
||
|
|
|
||
|
|
public virtual TipoCliente TipoCliente { get; set; }
|
||
|
|
|
||
|
|
public virtual Vehiculo Vehiculo { get; set; }
|
||
|
|
|
||
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||
|
|
public virtual ICollection<EmailSolicitud> EmailSolicitud { get; set; }
|
||
|
|
|
||
|
|
public virtual Solicitud Solicitud { get; set; }
|
||
|
|
}
|
||
|
|
}
|