summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Common/IndiceArquivoDigital.cs
blob: a34d75929cae742740ed2a44a405bc33bf03cb0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
using System;
using Gestor.Model.Attributes;
using Gestor.Model.Domain.Generic;

namespace Gestor.Model.Domain.Common;

public class IndiceArquivoDigital : DomainBase
{
	private string _descricao;

	private string _extensao;

	public bool Assinar { get; set; }

	public bool Selecionado { get; set; }

	public long IdArquivoDigital { get; set; }

	public string Bd { get; set; }

	[Log(true)]
	[Name(true)]
	public string Descricao
	{
		get
		{
			return _descricao?.ToUpper();
		}
		set
		{
			_descricao = value;
		}
	}

	public string Extensao
	{
		get
		{
			return _extensao?.ToUpper().Trim();
		}
		set
		{
			_extensao = value;
		}
	}

	public long IdCliente { get; set; }

	public long IdDocumento { get; set; }

	public long IdItem { get; set; }

	public long IdParcela { get; set; }

	public long IdSinistro { get; set; }

	public long IdSeguradora { get; set; }

	public long IdVendedor { get; set; }

	public long IdUsuario { get; set; }

	public long IdExtrato { get; set; }

	public long IdEmpresa { get; set; }

	public long IdLancamento { get; set; }

	public long IdFornecedor { get; set; }

	public long IdProspeccao { get; set; }

	public long IdSocio { get; set; }

	public long IdTarefa { get; set; }

	public long IdNotaFiscal { get; set; }

	public long IdEstipulante { get; set; }

	public bool Excluido { get; set; }

	public long UsuarioCriacao { get; set; }

	public long UsuarioAtualizacao { get; set; }

	public DateTime? DataCriacao { get; set; }

	public DateTime? DataAtualizacao { get; set; }

	public bool Assinado { get; set; }

	public bool EnviadoAssinatura { get; set; }

	public string UrlAssinatura { get; set; }

	public Guid? AzureGuid { get; set; }

	public string AzureStorage { get; set; }

	public bool NaoExcluir { get; set; }
}