Merge branch 'master' of tzw/fcs into master

This commit is contained in:
2020-06-29 14:21:46 +00:00
committed by Gogs
25 changed files with 746 additions and 136 deletions

View File

@@ -24,6 +24,7 @@ class Box {
int width;
int height;
int length;
int shipmentWeight;
int rate;
int weight;
@@ -60,6 +61,7 @@ class Box {
this.width,
this.height,
this.length,
this.shipmentWeight,
this.rate,
this.weight,
this.packageType,

6
lib/vo/custom.dart Normal file
View File

@@ -0,0 +1,6 @@
class Custom{
String id;
String productType;
int fee;
Custom({this.productType,this.fee});
}

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});
}