update rate

This commit is contained in:
Thinzar Win
2020-06-29 16:15:25 +06:30
parent 02450c003e
commit 8e65a533db
25 changed files with 746 additions and 136 deletions

View File

@@ -3,6 +3,14 @@ class Discount {
String customer;
String status;
double amount;
int weight;
int discountRate;
Discount({this.code, this.customer, this.amount, this.status});
Discount(
{this.code,
this.customer,
this.amount,
this.status,
this.weight,
this.discountRate});
}