【发布时间】:2019-11-04 07:03:25
【问题描述】:
我正在创建一个增量编号从 #1 #2 #3 .... 开始的发票,但我不知道如何开始。这是我想要的结构:
Invoice#1
|- info...
Invoice#2
|- info...
Invoice#3
|- info...
DatabaseReference ref
= FirebaseDatabase.getInstance().getReference().child("Invoice#" {increment}); //how to put increment here? if I declare i=1 in myActivity.java, it only runs in one
这是我拥有的发票模型的一部分
public class Invoice {
String buyer, seller, typeOfPymt;
int total;
String billdate;
int invoice_num;
int discount;
int tax;
int grand_total;
public Invoice(String buyer, String seller, int grand_total, String billdate, int invoice_num, int discount) {
this.buyer = buyer;
this.seller = seller;
this.billdate = billdate;
this.invoice_num = invoice_num;
this.discount = discount;
this.grand_total = grand_total;
}
如何在模型中添加增量?
【问题讨论】:
-
您可以在 sharedPreference 中添加最后一个增量 Integer 并在工作时将其添加 +1,保存它..
标签: java android firebase firebase-realtime-database