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

66 lines
2.8 KiB
Plaintext

@model WX.CRM.Model.Entity.BAS_COMPANY
@{
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_COMPANYID)</td>
<td>@Html.DisplayTextFor(model => model.map_COMPANYID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_COMPANYNAME)</td>
<td>@Html.DisplayFor(model => model.map_COMPANYNAME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_ISOUTERAGENT)</td>
<td>@Html.DisplayFor(model => model.map_ISOUTERAGENT)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_PARENTID)</td>
<td>@Html.DisplayTextFor(model => model.map_PARENTID)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_COMPANYCODE)</td>
<td>@Html.DisplayFor(model => model.map_COMPANYCODE)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_COMPANYNAME)</td>
<td>@Html.DisplayFor(model => model.map_COMPANYNAME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_COMPANYCODE)</td>
<td>@Html.DisplayFor(model => model.map_COMPANYCODE)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_ORGANNAME)</td>
<td>@Html.DisplayFor(model => model.map_ORGANNAME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_BUSINESSVALUE)</td>
<td>@Html.DisplayTextFor(model => model.map_BUSINESSVALUE)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_COMMENTS)</td>
<td>@Html.DisplayFor(model => model.map_COMMENTS)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_CTIME)</td>
<td>@Html.DisplayTextFor(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>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_UTIME)</td>
<td>@Html.DisplayFor(model => model.map_UTIME)</td>
</tr>
<tr>
<td style=" width:100px;">@Html.LabelFor(model => model.map_UPDATEUSER)</td>
<td>@Html.DisplayTextFor(model => model.map_UPDATEUSER)</td>
</tr>
</table>
</div>