Skip to content

Commit

Permalink
Change order id to long
Browse files Browse the repository at this point in the history
  • Loading branch information
metin-mustafa committed Nov 19, 2018
1 parent ed5027d commit c1b4fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/nopcommerce/domain/Order.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class Order
{
@JsonProperty(value = JsonConstants.ID)
private int id;
private long id;

@JsonProperty(value = JsonConstants.ORDER_TOTAL)
private BigDecimal orderTotal;
Expand Down

0 comments on commit c1b4fe2

Please sign in to comment.