public static void Save(areaEntity obj) { if (obj != null) { obj.Save(); } }
/// <summary>根据主键获取一个实体</summary> public static areaEntity RetrieveAareaEntity(int id) { areaEntity obj = new areaEntity(); obj.id = id; obj.Retrieve(); if (obj.IsPersistent) { return(obj); } else { return(null); } }