15 lines
242 B
PHP
15 lines
242 B
PHP
|
<?php
|
||
|
namespace Helpers;
|
||
|
|
||
|
class Table
|
||
|
{
|
||
|
//附件
|
||
|
public $attachments = "attachments";
|
||
|
|
||
|
//文献
|
||
|
public $reference = "reference";
|
||
|
public $metadata_reference = "mdref";
|
||
|
|
||
|
//数据申请
|
||
|
public $offlineapp = "offlineapp";
|
||
|
}
|