6 declare(strict_types=1);
28 private $customerGroupField;
33 private $websiteField;
38 private $taxClassField;
43 private $originalPriceField;
48 private $finalPriceField;
53 private $minPriceField;
58 private $maxPriceField;
63 private $tierPriceField;
81 string $customerGroupField,
83 string $taxClassField,
84 string $originalPriceField,
85 string $finalPriceField,
86 string $minPriceField,
87 string $maxPriceField,
88 string $tierPriceField
91 $this->entityField = $entityField;
92 $this->customerGroupField = $customerGroupField;
93 $this->websiteField = $websiteField;
94 $this->taxClassField = $taxClassField;
95 $this->originalPriceField = $originalPriceField;
96 $this->finalPriceField = $finalPriceField;
97 $this->minPriceField = $minPriceField;
98 $this->maxPriceField = $maxPriceField;
99 $this->tierPriceField = $tierPriceField;
107 return $this->tableName;
115 return $this->entityField;
123 return $this->customerGroupField;
131 return $this->websiteField;
139 return $this->taxClassField;
147 return $this->originalPriceField;
155 return $this->finalPriceField;
163 return $this->minPriceField;
171 return $this->maxPriceField;
179 return $this->tierPriceField;
__construct(string $tableName, string $entityField, string $customerGroupField, string $websiteField, string $taxClassField, string $originalPriceField, string $finalPriceField, string $minPriceField, string $maxPriceField, string $tierPriceField)