31 lines
620 B
PHP
31 lines
620 B
PHP
<?php
|
|
namespace Helpers;
|
|
|
|
class Table
|
|
{
|
|
//附件
|
|
public $attachments = "attachments";
|
|
|
|
//文献
|
|
public $reference = "reference";
|
|
public $metadata_reference = "mdref";
|
|
public $reference_author = "ref_author";
|
|
public $reference_tag = "ref_tag";
|
|
|
|
//数据申请
|
|
public $offlineapp = "offlineapp";
|
|
|
|
//Source
|
|
public $source = "source";
|
|
|
|
//元数据
|
|
public $metadata = "metadata";
|
|
|
|
//会员
|
|
public $member = "users";
|
|
|
|
//开放平台
|
|
public $oauth_clients = "oauth_clients";
|
|
public $oauth_token = "oauth_login_token";
|
|
public $oauth_access_tokens = "oauth_access_tokens";
|
|
} |