rename shipment
This commit is contained in:
25
lib/domain/entities/fcs_shipment.dart
Normal file
25
lib/domain/entities/fcs_shipment.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
class FcsShipment {
|
||||
DateTime shipDate;
|
||||
String shipmentNumber;
|
||||
DateTime cutoffDate;
|
||||
String shipType;
|
||||
DateTime arrivalDate;
|
||||
DateTime departureDate;
|
||||
String consignee;
|
||||
String port;
|
||||
String destination;
|
||||
String status;
|
||||
String remark;
|
||||
FcsShipment(
|
||||
{this.shipDate,
|
||||
this.shipmentNumber,
|
||||
this.cutoffDate,
|
||||
this.shipType,
|
||||
this.status,
|
||||
this.arrivalDate,
|
||||
this.departureDate,
|
||||
this.consignee,
|
||||
this.port,
|
||||
this.destination,
|
||||
this.remark});
|
||||
}
|
||||
Reference in New Issue
Block a user