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-12-19 07:47:57 +00:00
|
|
|
//本地用户
|
|
|
|
public $users_local = "users_local";
|
|
|
|
//用户表
|
|
|
|
public $users = "users";
|
2013-09-26 08:29:28 +00:00
|
|
|
}
|