You cannot use @Html.EditorFor and you should use @Html.TextBoxFor.
<%=Html.TextBox("polNum",null, new {maxlength=10}) %>
@Html.TextBoxFor(model => model.homePostalCode, new { maxlength = 7 })
<%=Html.TextBox("polNum",null, new {maxlength=10}) %>
@Html.TextBoxFor(model => model.homePostalCode, new { maxlength = 7 })