suyuan/app/common/model/land/LandDevice.php

35 lines
1008 B
PHP
Raw Normal View History

<?php
2023-11-24 17:40:59 +08:00
2023-11-24 16:09:15 +08:00
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\land;
use app\common\model\BaseModel;
/**
* LandPlant模型
* Class LandPlant
* @package app\common\model\land
*/
class LandDevice extends BaseModel
{
protected $name = 'land_device';
2023-11-24 17:40:59 +08:00
}