1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\model\printer;
-
-
- use app\common\basics\Models;
-
-
- class PrinterConfig extends Models
- {
-
-
-
- public static function getConfigByType($type, $shop_id)
- {
- return PrinterConfig::where(['type' => $type, 'shop_id' => $shop_id])
- ->field('client_id,client_secret')
- ->findOrEmpty()->toArray();
- }
-
-
-
-
- public static function getConfigById($id, $shop_id)
- {
- return PrinterConfig::where(['id' => $id, 'shop_id' => $shop_id])
- ->field('client_id,client_secret')
- ->findOrEmpty()->toArray();
- }
-
-
- }
|