using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace YBDevice.NApi.Controllers
{
///
/// 设备管理页面
///
public class DeviceController : Controller
{
public IActionResult Index()
{
return View();
}
///
/// 设备注册
///
///
///
///
public IActionResult Reg(string ecode,int type)
{
return View();
}
}
}