1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\model\goods;
-
-
- use app\common\basics\Models;
-
-
-
- class Supplier extends Models
- {
-
-
-
- public static function getNameColumn($shop_id = 0)
- {
- $condition[] = ['del', '=', 0];
-
- if ($shop_id > 0) {
- $condition[] = ['shop_id', '=', $shop_id];
- }
-
- $lists = self::where($condition)->column('id,name', 'id');
-
- return empty($lists) ? [] : $lists;
- }
-
- }
|