add barcode scan

This commit is contained in:
Sai Naw Wun
2020-09-15 07:13:41 +06:30
parent eccea7ee02
commit ad527409ec
61 changed files with 4387 additions and 488 deletions

View File

@@ -0,0 +1,25 @@
class Shipment {
DateTime shipDate;
String shipmentNumber;
DateTime cutoffDate;
String shipType;
DateTime arrivalDate;
DateTime departureDate;
String consignee;
String port;
String destination;
String status;
String remark;
Shipment(
{this.shipDate,
this.shipmentNumber,
this.cutoffDate,
this.shipType,
this.status,
this.arrivalDate,
this.departureDate,
this.consignee,
this.port,
this.destination,
this.remark});
}