69 lines
2.6 KiB
C#
69 lines
2.6 KiB
C#
using System;
|
|
|
|
namespace line_gestao_api.Dtos
|
|
{
|
|
public class CreateMobileLineDto
|
|
{
|
|
// ==========================
|
|
// Identificação Básica
|
|
// ==========================
|
|
public int Item { get; set; }
|
|
public string? Linha { get; set; } // Obrigatório na validação do Controller
|
|
public string? Chip { get; set; } // ICCID
|
|
public string? Cliente { get; set; } // Obrigatório na validação do Controller
|
|
public string? Usuario { get; set; }
|
|
|
|
// ==========================
|
|
// Classificação e Status
|
|
// ==========================
|
|
public string? Status { get; set; } // Ex: ATIVA, BLOQUEADA
|
|
public string? Skil { get; set; } // Ex: PF, PJ, RESERVA
|
|
public string? Modalidade { get; set; }
|
|
|
|
// ==========================
|
|
// Dados Contratuais
|
|
// ==========================
|
|
public string? PlanoContrato { get; set; }
|
|
public string? Conta { get; set; }
|
|
public string? VencConta { get; set; } // Dia do vencimento (string)
|
|
|
|
// ==========================
|
|
// Datas Importantes
|
|
// ==========================
|
|
public DateTime? DataBloqueio { get; set; }
|
|
public DateTime? DataEntregaOpera { get; set; }
|
|
public DateTime? DataEntregaCliente { get; set; }
|
|
|
|
// ==========================
|
|
// Responsáveis / Logística
|
|
// ==========================
|
|
public string? Cedente { get; set; }
|
|
public string? Solicitante { get; set; }
|
|
|
|
// ==========================
|
|
// Financeiro - Vivo
|
|
// ==========================
|
|
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; }
|
|
|
|
// ==========================
|
|
// Financeiro - Line Móvel
|
|
// ==========================
|
|
public decimal? FranquiaLine { get; set; }
|
|
public decimal? FranquiaGestao { get; set; }
|
|
public decimal? LocacaoAp { get; set; }
|
|
public decimal? ValorContratoLine { get; set; }
|
|
|
|
// ==========================
|
|
// Resultado Financeiro
|
|
// ==========================
|
|
public decimal? Desconto { get; set; }
|
|
public decimal? Lucro { get; set; }
|
|
}
|
|
} |