102 lines
3.7 KiB
C#
102 lines
3.7 KiB
C#
namespace line_gestao_api.Dtos
|
|
{
|
|
public class MobileLineListDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public int Item { get; set; }
|
|
public string? Conta { get; set; }
|
|
public string? Linha { get; set; }
|
|
public string? Chip { get; set; }
|
|
public string? Cliente { get; set; }
|
|
public string? Usuario { get; set; }
|
|
public string? PlanoContrato { get; set; }
|
|
public string? Status { get; set; }
|
|
public string? Skil { get; set; }
|
|
public string? Modalidade { get; set; }
|
|
public string? VencConta { get; set; }
|
|
}
|
|
|
|
public class MobileLineDetailDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public int Item { get; set; }
|
|
public string? Conta { get; set; }
|
|
public string? Linha { get; set; }
|
|
public string? Chip { get; set; }
|
|
public string? Cliente { get; set; }
|
|
public string? Usuario { get; set; }
|
|
public string? PlanoContrato { get; set; }
|
|
|
|
public decimal? FranquiaVivo { get; set; }
|
|
public decimal? ValorPlanoVivo { get; set; }
|
|
public decimal? GestaoVozDados { get; set; }
|
|
public decimal? Skeelo { get; set; }
|
|
public decimal? VivoNewsPlus { get; set; }
|
|
public decimal? VivoTravelMundo { get; set; }
|
|
public decimal? VivoGestaoDispositivo { get; set; }
|
|
public decimal? ValorContratoVivo { get; set; }
|
|
|
|
public decimal? FranquiaLine { get; set; }
|
|
public decimal? FranquiaGestao { get; set; }
|
|
public decimal? LocacaoAp { get; set; }
|
|
public decimal? ValorContratoLine { get; set; }
|
|
|
|
public decimal? Desconto { get; set; }
|
|
public decimal? Lucro { get; set; }
|
|
|
|
public string? Status { get; set; }
|
|
public DateTime? DataBloqueio { get; set; }
|
|
public string? Skil { get; set; }
|
|
public string? Modalidade { get; set; }
|
|
public string? Cedente { get; set; }
|
|
public string? Solicitante { get; set; }
|
|
public DateTime? DataEntregaOpera { get; set; }
|
|
public DateTime? DataEntregaCliente { get; set; }
|
|
public string? VencConta { get; set; }
|
|
}
|
|
|
|
// ✅ UPDATE REQUEST (SEM Id)
|
|
public class UpdateMobileLineRequest
|
|
{
|
|
public int Item { get; set; }
|
|
public string? Conta { get; set; }
|
|
public string? Linha { get; set; }
|
|
public string? Chip { get; set; }
|
|
public string? Cliente { get; set; }
|
|
public string? Usuario { get; set; }
|
|
public string? PlanoContrato { get; set; }
|
|
|
|
public decimal? FranquiaVivo { get; set; }
|
|
public decimal? ValorPlanoVivo { get; set; }
|
|
public decimal? GestaoVozDados { get; set; }
|
|
public decimal? Skeelo { get; set; }
|
|
public decimal? VivoNewsPlus { get; set; }
|
|
public decimal? VivoTravelMundo { get; set; }
|
|
public decimal? VivoGestaoDispositivo { get; set; }
|
|
public decimal? ValorContratoVivo { get; set; }
|
|
|
|
public decimal? FranquiaLine { get; set; }
|
|
public decimal? FranquiaGestao { get; set; }
|
|
public decimal? LocacaoAp { get; set; }
|
|
public decimal? ValorContratoLine { get; set; }
|
|
|
|
public decimal? Desconto { get; set; }
|
|
public decimal? Lucro { get; set; }
|
|
|
|
public string? Status { get; set; }
|
|
public DateTime? DataBloqueio { get; set; }
|
|
public string? Skil { get; set; }
|
|
public string? Modalidade { get; set; }
|
|
public string? Cedente { get; set; }
|
|
public string? Solicitante { get; set; }
|
|
public DateTime? DataEntregaOpera { get; set; }
|
|
public DateTime? DataEntregaCliente { get; set; }
|
|
public string? VencConta { get; set; }
|
|
}
|
|
|
|
public class ImportResultDto
|
|
{
|
|
public int Imported { get; set; }
|
|
}
|
|
}
|