1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\dao\store\product;
- use app\dao\BaseDao;
- use app\model\store\product\ProductAttrValue;
- class ProductAttrValueDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return ProductAttrValue::class;
- }
- }
|