ComplianceServer/oldcode/WEB/Views/Base/Parameter/Details.cshtml

54 lines
2.0 KiB
Plaintext

@model WX.CRM.Model.Entity.BAS_PARAMETER
@{
ViewBag.Title = "详细信息";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<table class="fromEditTable setTextWidth300">
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_PARAKEY)</td>
<td>@Html.DisplayFor(model => model.map_PARAKEY)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_PARANAME)</td>
<td>@Html.DisplayFor(model => model.map_PARANAME)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_GROUPID)</td>
<td>@Html.DisplayTextFor(model => model.map_GROUPID)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_PARAVALUE)</td>
<td>@Html.DisplayFor(model => model.map_PARAVALUE)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_PARATYPE)</td>
<td>@Html.DisplayFor(model => model.map_PARATYPE)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_REMARK)</td>
<td>@Html.DisplayFor(model => model.map_REMARK)</td>
</tr>
<tr>
<td style="width:100px">@Html.LabelFor(model=>model.map_EDITFORM)</td>
<td>@Html.DisplayTextFor(model=>model.map_EDITFORM)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_CTIME)</td>
<td>@Html.DisplayFor(model => model.map_CTIME)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_CREATEUSER)</td>
<td>@Html.DisplayTextFor(model => model.map_CREATEUSER)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_UTIME)</td>
<td>@Html.DisplayFor(model => model.map_UTIME)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_UPDATEUSER)</td>
<td>@Html.DisplayTextFor(model => model.map_UPDATEUSER)</td>
</tr>
</table>