Mini.Crm/Mini.Web/Areas/Admin/Views/BasParameter/Details.cshtml

62 lines
1.9 KiB
Plaintext

@model Air.Model.AirB2bDomain.Bas_ParameterView
@{
ViewBag.Title = "Details";
Layout = "~/Areas/Admin/Views/Shared/_Index_Layout.cshtml";
}
<table class="fromEditTable setTextWidth300">
<tr>
<td style=" width:100px;">参数键:</td>
<td>@Html.DisplayFor(model => model.ParaKey)</td>
</tr>
<tr>
<td style=" width:100px;">参数名:</td>
<td>@Html.DisplayFor(model => model.ParaName)</td>
</tr>
<tr>
<td style=" width:100px;">参数分组:</td>
<td>@Html.DisplayTextFor(model=>model.GroupName)</td>
</tr>
<tr>
<td style=" width:100px;">参数值:</td>
<td>@Html.DisplayTextFor(model => model.ParaValue)</td>
</tr>
<tr>
<td style=" width:100px;">参数类型:</td>
<td>@Html.DisplayFor(model => model.ParaType)</td>
</tr>
<tr>
<td style=" width:100px;">备注:</td>
<td>
@Html.DisplayFor(model => model.Remark)
</td>
</tr>
<tr>
<td style=" width:100px;">编辑页面:</td>
<td>@Html.DisplayFor(model => model.EditForm)</td>
</tr>
<tr>
<td style=" width:100px;">创建时间:</td>
<td>
@Html.DisplayFor(model => model.Ctime)
</td>
</tr>
<tr>
<td style=" width:100px;">创建人:</td>
<td>@Html.DisplayFor(model => model.CreateUserName)</td>
</tr>
<tr>
<td style=" width:100px;">修改时间:</td>
<td>
@Html.DisplayFor(model => model.Utime)
</td>
</tr>
<tr>
<td style=" width:100px;">修改人:</td>
<td>
@Html.DisplayFor(model => model.UpdateUserName)
</td>
</tr>
</table>