41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using SQLite;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Template.Shared.Core.Entity;
|
|
|
|
[Table("vtb_clie_pers_rif")]
|
|
public class VtbCliePersRif
|
|
{
|
|
[PrimaryKey, Column("id_pers_rif"), JsonPropertyName("idPersRif")]
|
|
public int IdPersRif { get; set; }
|
|
|
|
[PrimaryKey, Column("cod_anag"), JsonPropertyName("codAnag")]
|
|
public string CodAnag { get; set; }
|
|
|
|
[Column("persona_rif"), JsonPropertyName("personaRif")]
|
|
public string PersonaRif { get; set; }
|
|
|
|
[Column("mansione"), JsonPropertyName("mansione")]
|
|
public string Mansione { get; set; }
|
|
|
|
[Column("telefono"), JsonPropertyName("telefono")]
|
|
public string Telefono { get; set; }
|
|
|
|
[Column("fax"), JsonPropertyName("fax")]
|
|
public string Fax { get; set; }
|
|
|
|
[Column("e_mail"), JsonPropertyName("eMail")]
|
|
public string EMail { get; set; }
|
|
|
|
[Column("num_cellulare"), JsonPropertyName("numCellulare")]
|
|
public string NumCellulare { get; set; }
|
|
|
|
[Column("tipo_indirizzo"), JsonPropertyName("tipoIndirizzo")]
|
|
public string TipoIndirizzo { get; set; }
|
|
|
|
[Column("cod_vdes"), JsonPropertyName("codVdes")]
|
|
public string CodVdes { get; set; }
|
|
|
|
[Column("data_ult_agg"), JsonPropertyName("dataUltAgg")]
|
|
public DateTime? DataUltAgg { get; set; } = DateTime.Now;
|
|
} |