|
|
|
@ -1,5 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import 'package:test_sa/models/base.dart';
|
|
|
|
import 'package:test_sa/models/base.dart';
|
|
|
|
|
|
|
|
|
|
|
|
class MedicalGasSupplierModel extends Base {
|
|
|
|
class MedicalGasSupplierModel extends Base {
|
|
|
|
@ -41,16 +39,18 @@ class AttributeInfo {
|
|
|
|
int? id;
|
|
|
|
int? id;
|
|
|
|
int? medicalGasAttributeId;
|
|
|
|
int? medicalGasAttributeId;
|
|
|
|
num? requestedQuantity;
|
|
|
|
num? requestedQuantity;
|
|
|
|
|
|
|
|
num? value;
|
|
|
|
String? itemName;
|
|
|
|
String? itemName;
|
|
|
|
String? oracleName;
|
|
|
|
String? oracleName;
|
|
|
|
String? oracleCode;
|
|
|
|
String? oracleCode;
|
|
|
|
|
|
|
|
|
|
|
|
AttributeInfo({this.id, this.medicalGasAttributeId, this.requestedQuantity, this.itemName, this.oracleName, this.oracleCode});
|
|
|
|
AttributeInfo({this.id, this.medicalGasAttributeId, this.requestedQuantity, this.itemName, this.value, this.oracleName, this.oracleCode});
|
|
|
|
|
|
|
|
|
|
|
|
AttributeInfo.fromJson(Map<String, dynamic> json) {
|
|
|
|
AttributeInfo.fromJson(Map<String, dynamic> json) {
|
|
|
|
id = json['id'];
|
|
|
|
id = json['id'];
|
|
|
|
medicalGasAttributeId = json['medicalGasAttributeId'];
|
|
|
|
medicalGasAttributeId = json['medicalGasAttributeId'];
|
|
|
|
requestedQuantity = json['requestedQuantity'];
|
|
|
|
requestedQuantity = json['requestedQuantity'];
|
|
|
|
|
|
|
|
value = json['value'];
|
|
|
|
itemName = json['itemName'];
|
|
|
|
itemName = json['itemName'];
|
|
|
|
oracleName = json['oracleName'];
|
|
|
|
oracleName = json['oracleName'];
|
|
|
|
oracleCode = json['oracleCode'];
|
|
|
|
oracleCode = json['oracleCode'];
|
|
|
|
|