You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
222 B
14 lines
222 B
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 已上传文件使用记录表MO型
|
|
* Class UploadFileUsed
|
|
* @package app\common\model
|
|
*/
|
|
class UploadFileUsed extends BaseModel
|
|
{
|
|
protected $name = 'upload_file_used';
|
|
|
|
}
|
|
|