Skip to content

Commit

Permalink
Merge pull request #16 from adeniltonbs/master
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
adrbarros authored Jun 12, 2017
2 parents 6d1de6a + 14f3392 commit 58637c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NFe.Classes/Servicos/DistribuicaoDFe/Schemas/resNFe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class resNFe
/// ISENTO (contribuinte do ICMS ISENTO de Inscrição no Cadastro de Contribuintes) ou
/// IE (Contribuinte do ICMS)
/// </summary>
public ulong IE { get; set; }
public string IE { get; set; }

/// <summary>
/// C08 - Data de Emissão da NF-e
Expand Down
2 changes: 1 addition & 1 deletion NFe.Classes/Servicos/DistribuicaoDFe/loteDistDFeInt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class loteDistDFeInt
/// B12 - NSU do documento fiscal
/// </summary>
[XmlAttribute()]
public ushort NSU { get; set; }
public long NSU { get; set; }

/// <summary>
/// B13 - Identificação do Schema XML que será utilizado para validar o XML existente no campo seguinte.
Expand Down
4 changes: 2 additions & 2 deletions NFe.Classes/Servicos/DistribuicaoDFe/retDistDFeInt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ public class retDistDFeInt : IRetornoServico
/// B08 - Último NSU pesquisado no Ambiente Nacional. Se for o caso, o solicitante pode continuar a consulta a partir
/// deste NSU para obter novos resultados.
/// </summary>
public ushort ultNSU { get; set; }
public long ultNSU { get; set; }

/// <summary>
/// B09 - Maior NSU existente no Ambiente Nacional para o CNPJ/CPF informado
/// </summary>
public ushort maxNSU { get; set; }
public long maxNSU { get; set; }

[XmlArrayItem("docZip", IsNullable = false)]
public loteDistDFeInt[] loteDistDFeInt { get; set; }
Expand Down

0 comments on commit 58637c6

Please sign in to comment.