mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-17 06:52:49 +00:00
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2017/11/13
|
|
*/
|
|
|
|
namespace app\admin\model\system;
|
|
|
|
use traits\ModelTrait;
|
|
use basic\ModelBasic;
|
|
|
|
/**
|
|
* 文件检验model
|
|
* Class SystemFile
|
|
* @package app\admin\model\system
|
|
*/
|
|
class SystemAttachment extends ModelBasic
|
|
{
|
|
use ModelTrait;
|
|
/**添加附件记录
|
|
*/
|
|
public static function attachmentAdd($name,$att_size,$att_type,$att_dir,$satt_dir='',$pid = 0 )
|
|
{
|
|
$data['name'] = $name;
|
|
$data['att_dir'] = $att_dir;
|
|
$data['satt_dir'] = $satt_dir;
|
|
$data['att_size'] = $att_size;
|
|
$data['att_type'] = $att_type;
|
|
$data['time'] = time();
|
|
$data['pid'] = $pid;
|
|
return self::create($data);
|
|
}
|
|
/**
|
|
* 获取分类图
|
|
* */
|
|
public static function getAll($id){
|
|
$model = new self;
|
|
$where['pid'] = $id;
|
|
$model->where($where)->order('att_id desc');
|
|
return $model->page($model,$where,'',24);
|
|
}
|
|
/**
|
|
* 获取单条信息
|
|
* */
|
|
public static function getinfo($att_id){
|
|
$model = new self;
|
|
$where['att_id'] = $att_id;
|
|
return $model->where($where)->select()->toArray()[0];
|
|
}
|
|
|
|
} |