68 lines
3.0 KiB
C#
68 lines
3.0 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace line_gestao_api.Models
|
|
{
|
|
public class MobileLine
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
// ===== Planilha (GERAL) =====
|
|
public int Item { get; set; } // ITÉM
|
|
[MaxLength(80)]
|
|
public string? Conta { get; set; } // CONTA
|
|
[MaxLength(30)]
|
|
public string? Linha { get; set; } // LINHA (telefone)
|
|
[MaxLength(40)]
|
|
public string? Chip { get; set; } // CHIP
|
|
|
|
[MaxLength(200)]
|
|
public string? Cliente { get; set; } // CLIENTE
|
|
[MaxLength(200)]
|
|
public string? Usuario { get; set; } // USUÁRIO
|
|
[MaxLength(200)]
|
|
public string? PlanoContrato { get; set; } // PLANO CONTRATO
|
|
|
|
// ===== Valores Vivo (ROXO no modal do front) =====
|
|
public decimal? FranquiaVivo { get; set; } // FRAQUIA
|
|
public decimal? ValorPlanoVivo { get; set; } // VALOR DO PLANO R$
|
|
public decimal? GestaoVozDados { get; set; } // GESTÃO VOZ E DADOS R$
|
|
public decimal? Skeelo { get; set; } // SKEELO
|
|
public decimal? VivoNewsPlus { get; set; } // VIVO NEWS PLUS
|
|
public decimal? VivoTravelMundo { get; set; } // VIVO TRAVEL MUNDO
|
|
public decimal? VivoGestaoDispositivo { get; set; } // VIVO GESTÃO DISPOSITIVO
|
|
public decimal? ValorContratoVivo { get; set; } // VALOR CONTRATO VIVO
|
|
|
|
// ===== Valores Line Móvel (paleta do sistema no modal) =====
|
|
public decimal? FranquiaLine { get; set; } // FRANQUIA LINE
|
|
public decimal? FranquiaGestao { get; set; } // FRANQUIA GESTÃO
|
|
public decimal? LocacaoAp { get; set; } // LOCAÇÃO AP.
|
|
public decimal? ValorContratoLine { get; set; } // VALOR CONTRATO LINE
|
|
|
|
public decimal? Desconto { get; set; } // DESCONTO
|
|
public decimal? Lucro { get; set; } // LUCRO
|
|
|
|
[MaxLength(80)]
|
|
public string? Status { get; set; } // STATUS
|
|
public DateTime? DataBloqueio { get; set; } // DATA DO BLOQUEIO
|
|
|
|
[MaxLength(80)]
|
|
public string? Skil { get; set; } // SKIL
|
|
[MaxLength(80)]
|
|
public string? Modalidade { get; set; } // MODALIDADE
|
|
|
|
[MaxLength(150)]
|
|
public string? Cedente { get; set; } // CEDENTE
|
|
[MaxLength(150)]
|
|
public string? Solicitante { get; set; } // SOLICITANTE
|
|
|
|
public DateTime? DataEntregaOpera { get; set; } // DATA DA ENTREGA OPERA.
|
|
public DateTime? DataEntregaCliente { get; set; } // DATA DA ENTREGA CLIENTE
|
|
|
|
[MaxLength(50)]
|
|
public string? VencConta { get; set; } // VENC. DA CONTA
|
|
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
|
|
}
|
|
}
|