@using (Html.BeginForm("Edit", "FcsdNum", FormMethod.Post, new { @id = "signupForm", @class = "form-horizontal" }))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
@Html.HiddenFor(m => m.id)
@Html.Label("特殊", new { @class = "col-sm-2 control-label", style = "width:200px" })
@Html.Label("金码", new { @class = "col-sm-1 control-label", style = "width:50px" })
@Html.TextBoxFor(m => m.jm, new { @class = "form-control onlyNum_one" })
@Html.Label("关注码", new { @class = "col-sm-1 control-label", style = "width:50px" })
@Html.TextBoxFor(m => m.gzm1, new { @class = "form-control onlyNum_one" })
@Html.TextBoxFor(m => m.gzm2, new { @class = "form-control onlyNum_one" })
@Html.TextBoxFor(m => m.gzm3, new { @class = "form-control onlyNum_one" })
@Html.Label("对应码", new { @class = "col-sm-1 control-label", style = "width:50px" })
@Html.TextBoxFor(m => m.dym1, new { @class = "form-control onlyNum_one" })
@Html.TextBoxFor(m => m.dym2, new { @class = "form-control onlyNum_one" })
@Html.TextBoxFor(m => m.dym3, new { @class = "form-control onlyNum_one" })
@Html.Label("(必填:号码在0-9取值)", new { @class = "col-sm-2 control-label", style = "color:red;text-align: left" })
}