14 lines
193 B
PHP
14 lines
193 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace app\common\model;
|
||
|
|
|
||
|
|
use think\Model;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 设备任务配置模型类
|
||
|
|
*/
|
||
|
|
class DeviceTaskconf extends Model
|
||
|
|
{
|
||
|
|
// 设置表名
|
||
|
|
protected $name = 'device_taskconf';
|
||
|
|
}
|