save
This commit is contained in:
@@ -12,6 +12,9 @@ class ProductStageEntity extends Equatable {
|
||||
final double passedQuantityWeight;
|
||||
final String? stageName;
|
||||
final String createdDate;
|
||||
final String productName;
|
||||
final String productCode;
|
||||
final int? stageId;
|
||||
|
||||
const ProductStageEntity({
|
||||
required this.productId,
|
||||
@@ -23,6 +26,9 @@ class ProductStageEntity extends Equatable {
|
||||
required this.passedQuantityWeight,
|
||||
required this.stageName,
|
||||
required this.createdDate,
|
||||
this.productName = '',
|
||||
this.productCode = '',
|
||||
this.stageId,
|
||||
});
|
||||
|
||||
/// Get display name for the stage
|
||||
@@ -49,6 +55,9 @@ class ProductStageEntity extends Equatable {
|
||||
passedQuantityWeight,
|
||||
stageName,
|
||||
createdDate,
|
||||
productName,
|
||||
productCode,
|
||||
stageId,
|
||||
];
|
||||
|
||||
@override
|
||||
|
||||
Reference in New Issue
Block a user