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

70 lines
2.8 KiB
Plaintext

@model WX.CRM.Model.Entity.BAS_INNERUSER
@{
ViewBag.Title = "详细信息";
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
}
<div class="formContent">
<table class="fromEditTable setTextWidth300">
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_PKID)</td>
<td>@Html.DisplayFor(model => model.map_PKID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_UNAME)</td>
<td>@Html.DisplayFor(model => model.map_UNAME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_EID)</td>
<td>@Html.DisplayFor(model => model.map_EID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_GENDER)</td>
<td>@Html.DisplayFor(model => model.map_GENDER)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_BIRTHDAY)</td>
<td>@Html.DisplayFor(model => model.map_BIRTHDAY)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_PASSWORD)</td>
<td>@Html.Display(".....")</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_ISDISMISS)</td>
<td>@Html.DisplayFor(model => model.map_ISDISMISS)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_DISMISSTIME)</td>
<td>@Html.DisplayFor(model => model.map_DISMISSTIME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_DISMISSTYPE)</td>
<td>@Html.DisplayFor(model => model.map_DISMISSTYPE)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_ENTRYDATE)</td>
<td>@Html.DisplayFor(model => model.map_ENTRYDATE)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_POSITIVETIME)</td>
<td>@Html.DisplayFor(model => model.map_POSITIVETIME)</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>