53 lines
2.2 KiB
Plaintext
53 lines
2.2 KiB
Plaintext
@model WX.CRM.Model.Entity.RES_ACTIVITY
|
|
@{
|
|
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_ACTIVITYID)</td>
|
|
<td>@Html.DisplayFor(model => model.map_ACTIVITYID)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_ACTIVITYCODE)</td>
|
|
<td>@Html.DisplayFor(model => model.map_ACTIVITYCODE)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_RESOURCETAG)</td>
|
|
<td>@Html.DisplayFor(model => model.map_RESOURCETAG)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_ACTIVITYADDR)</td>
|
|
<td>@Html.DisplayFor(model => model.map_ACTIVITYADDR)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_RESTYPEID)</td>
|
|
<td>@Html.DisplayFor(model => model.map_RESTYPEID)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_MEMO)</td>
|
|
<td>@Html.DisplayFor(model => model.map_MEMO)</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.DisplayFor(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.DisplayFor(model => model.map_UPDATEUSER)</td>
|
|
</tr>
|
|
<tr>
|
|
<td style=" width:100px;">@Html.LabelFor(model => model.map_ACTIVITYNAME)</td>
|
|
<td>@Html.DisplayFor(model => model.map_ACTIVITYNAME)</td>
|
|
</tr>
|
|
</table>
|
|
</div> |