| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace addons\Printer\common\services;
- use common\services\mall\BaseAdsSettingService;
- /**
- * Class SettingService
- * @package addons\Printer\common\services
- */
- class SettingService extends BaseAdsSettingService
- {
- /**
- * @return array
- */
- public function defaultSetting() :array
- {
- return [
- 'pickup_code_name' => '自提码',
- ];
- }
- /**
- * @return string
- */
- public function getAddosName() :string
- {
- return 'Printer';
- }
- }
|