27 lines
512 B
PHP
27 lines
512 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 $users_local = "users_local";
|
|
//用户表
|
|
public $users = "users";
|
|
} |