示例#1
0
        public static string AddNewDicItem(int itemType, string addItemValue, int parentId = 0)
        {
            int reVal = UserPortraitBLL.AddNewDicItem(itemType, addItemValue, parentId);

            if (reVal > 0)
            {
                return("Success");
            }
            else
            {
                return("");
            }
        }