| 1234567891011121314151617181920 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Message\Model;
- use SixShop\Message\Enum\NotificationsTypeEnum;
- use think\Model;
- class MessageNotificationsModel extends Model
- {
- protected function getOptions(): array
- {
- return [
- 'name' => 'message_notifications',
- 'type' => [
- 'type' => NotificationsTypeEnum::class,
- 'template_context' => 'json'
- ]
- ];
- }
- }
|