26 lines
506 B
Dart
26 lines
506 B
Dart
|
|
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});
|
||
|
|
}
|