You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/IoT/IoTServices/APService/Views/Home/Test.cshtml

22 lines
549 B

@model Infrastructure.Models.NotifyModel
<table class="table">
<tr>
<td>设备名称:</td>
<td>@Model.Name</td>
</tr>
<tr>
<td>设备编号:</td>
<td>@Model.Number</td>
</tr>
<tr>
<td>设备数据:</td>
<td>
<table>
@foreach (var item in Model.Data)
{
<tr><td>@item.Name</td><td>@item.Value</td><td>@item.Unit</td><td>@item.Description</td></tr>
}
</table>
</td>
</tr>
</table>