38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
@model WX.CRM.Model.Entity.BAS_ROLE
|
|
@{
|
|
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.ROLEID)</td>
|
|
<td>@Html.DisplayFor(model => model.ROLEID)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_RNAME)</td>
|
|
<td>@Html.DisplayFor(model => model.map_RNAME)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_SORTID)</td>
|
|
<td>@Html.DisplayFor(model => model.map_SORTID)</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>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.UTIME)</td>
|
|
<td>@Html.DisplayFor(model => model.UTIME)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.UPDATEUSER)</td>
|
|
<td>@Html.DisplayFor(model => model.UPDATEUSER)</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</div> |