TG.WXCRM.V4/WEB/Views/Base/ParameterGroup/Details.cshtml

25 lines
932 B
Plaintext

@model WX.CRM.Model.Entity.BAS_PARAMETERGROUP
@{
ViewBag.Title = "详细信息";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<table class="fromEditTable setTextWidth300">
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_GROUPID)</td>
<td>@Html.DisplayFor(model => model.map_GROUPID)</td>
</tr>
<tr>
<td style="width:100px;">@Html.LabelFor(model => model.map_GROUPNAME)</td>
<td>@Html.DisplayFor(model => model.map_GROUPNAME)</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>
</table>