public List <string> DisableTicket3(List <string> FNOFIDS, string gc_id)
        {  //List<string> FNOFIDS
           //List<string> FNOFIDS = new List<string>();

            List <string> FildFNOFIDS = new List <string>();
            string        ss          = "";

            try
            {
                foreach (string s in FNOFIDS)
                {
                    ss += s + ",";
                }
                if (ss != "")
                {
                    ss = ss.Substring(0, ss.Length - 1);
                }
                CYZLog.writeLog("DisableTicket3(" + ss + ")");
                LockKgg(ref FNOFIDS);
                FildFNOFIDS = TickHelper.qxtick3(FNOFIDS, gc_id);
            }
            catch (Exception ex)
            {
                CYZLog.writeLog(ex.ToString());
                ss = "ERROR:" + ex.ToString();
            }

            CYZLog.writeLog("End DisableTicket3()");
            return(FildFNOFIDS);
        }