日期:2014-05-18 浏览次数:20624 次
/// <summary>
/// 部门名称
/// </summary>
[Required(ErrorMessage = "必须输入部门名称")]
[StringLength(20,MinimumLength=2,ErrorMessage="2~20字之间")]
public String FP01 { get; set; }
@Html.TextBoxFor(model => model.FP01, new { @class = "text" })