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

29 lines
1.2 KiB
Plaintext

@model WX.CRM.Model.Entity.BAS_RIGHTGROUP
@{
ViewBag.Title = "详细信息";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<div class="mvctool bgb">
<table class="fromEditTable setTextWidth300">
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.PKID)</td>
<td>@Html.DisplayFor(model => model.PKID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_NAME)</td>
<td>@Html.DisplayFor(model => model.map_NAME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_PARENTID)</td>
<td>@Html.DisplayFor(model => model.map_PARENTID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.CTIME)</td>
<td>@Html.DisplayFor(model => model.CTIME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.CREATEUSER)</td>
<td>@Html.DisplayFor(model => model.CREATEUSER)</td>
</tr>
</table>
</div>