@model WX.CRM.Model.Entity.RES_CUSTOMER_BESTEditModel @using System.Web.UI.WebControls @using WX.CRM.WEB.Areas.Res.Controllers @using WX.CRM.WebHelper; @using WX.CRM.Model @{ ViewBag.Title = "编辑"; Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml"; }
@Html.ToolButtonPlain("btnSave", "icon-save", "保存", false, "")
@using (Html.BeginForm("BatchBestEdit", "Customer", null, FormMethod.Post, new { Id = "CreateForm" })) { @Html.ValidationSummary(true)
客户Id @Html.TextBoxFor(c => c.RESID)
备注 @Html.TextAreaFor(m => m.REMARK, new { style = "height:30px" })
}