1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\model\goods;
-
-
- use app\common\basics\Models;
-
-
-
- class GoodsSpec extends Models
- {
-
-
- public function specValue()
- {
- return $this->hasMany('GoodsSpecValue', 'spec_id', 'id');
- }
- }
|