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