2013-09-26 08:29:28 +00:00
|
|
|
<?php
|
|
|
|
namespace Helpers;
|
|
|
|
|
|
|
|
class Table
|
|
|
|
{
|
|
|
|
//附件
|
|
|
|
public $attachments = "attachments";
|
|
|
|
|
|
|
|
//文献
|
|
|
|
public $reference = "reference";
|
|
|
|
public $metadata_reference = "mdref";
|
2013-10-12 09:26:10 +00:00
|
|
|
public $reference_author = "ref_author";
|
|
|
|
public $reference_tag = "ref_tag";
|
2013-09-26 08:29:28 +00:00
|
|
|
|
|
|
|
//数据申请
|
|
|
|
public $offlineapp = "offlineapp";
|
2013-09-29 10:18:25 +00:00
|
|
|
|
|
|
|
//Source
|
|
|
|
public $source = "source";
|
2013-10-09 03:22:27 +00:00
|
|
|
|
|
|
|
//元数据
|
|
|
|
public $metadata = "metadata";
|
2013-11-04 07:08:58 +00:00
|
|
|
|
|
|
|
//会员
|
|
|
|
public $member = "users";
|
|
|
|
|
|
|
|
//开放平台
|
|
|
|
public $oauth_clients = "oauth_clients";
|
2013-11-21 02:14:36 +00:00
|
|
|
public $oauth_token = "oauth_login_token";
|
2013-11-04 07:08:58 +00:00
|
|
|
public $oauth_access_tokens = "oauth_access_tokens";
|
2013-09-26 08:29:28 +00:00
|
|
|
}
|