/// <summary>
 /// 修复文本长度
 /// </summary>
 public void CheckDouble()
 {
     if (Entity.IsReference)
     {
         return;
     }
     //EntityConfig friend = GetEntity(p => p != Entity && p.Tag == Entity.Tag);
     //if (friend == null)
     //    return;
     foreach (var col in Entity.Properties)
     {
         PropertyBusinessModel model = new PropertyBusinessModel {
             Property = col
         };
         model.CheckDouble();
         col.IsModify = true;
     }
     Entity.IsModify = true;
 }