feat(arc): 新增根据IMEI获取ARC设备信息接口
- 完善 api/model/Arc.php 模型配置 - 新增 api/controller/Arc.php getByImei 方法 - 支持 GET/POST 参数 imei 查询设备码信息 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -6,5 +6,19 @@ use think\Model;
|
||||
|
||||
class Arc extends Model
|
||||
{
|
||||
//
|
||||
/**
|
||||
* ARC设备模型
|
||||
*/
|
||||
|
||||
// 表名
|
||||
protected $name = 'arc';
|
||||
|
||||
// 自动写入时间戳字段
|
||||
protected $autoWriteTimestamp = 'datetime';
|
||||
protected $dateFormat = 'Y-m-d H:i:s';
|
||||
|
||||
// 定义时间戳字段名
|
||||
protected $createTime = 'createtime';
|
||||
protected $updateTime = 'updatetime';
|
||||
protected $deleteTime = 'deletetime';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user