public int insert(M_IP_para model)
 {
     return(Sql.insert(strTableName, model.GetParameters(), model.GetParas(), model.GetFields()));
 }
 public bool UpdateByID(M_IP_para model)
 {
     return(Sql.UpdateByIDs(strTableName, PK, model.IP_ID.ToString(), model.GetFieldAndPara(), model.GetParameters()));
 }