// +---------------------------------------------------------------------- namespace app\model\message; use crmeb\basic\BaseModel; use crmeb\traits\ModelTrait; use think\Model; /** * 消息设置模型 * Class SystemNotification * @package app\model\message */ class SystemNotification extends BaseModel { use ModelTrait; /** * 数据表主键 * @var string */ protected $pk = 'id'; /** * 模型名称 * @var string */ protected $name = 'system_notification'; }