public int UpdUnFreezeLocateSec(DataTable Dt,string UID, DbTransaction RootDBT)
        {
            int result;
            bool IsRootTranscation = false;
            DBO.MaintainStockTakeFreezeDBO db = new MaintainStockTakeFreezeDBO(ref USEDB);

            try
            {
                //判斷是否有傳入Root Transcation 
                IsRootTranscation = (RootDBT == null) ? true : false;

                #region 啟動交易或指定RootTranscation

                if (IsRootTranscation)
                {
                    //獨立呼叫啟動Transcation
                    Conn = USEDB.CreateConnection();
                    Conn.Open();
                    DBT = Conn.BeginTransaction();
                }
                else
                {
                    DBT = RootDBT;
                }

                #endregion

                result = 1;

                for (int i = 0; Dt.Rows.Count > i; i++)
                {
                    ArrayList aList = new ArrayList();
                    aList.Add(Dt.Rows[i]["LOCATE_NO"].ToString());
                    aList.Add(Dt.Rows[i]["LOCATE_SECTION"].ToString());
                    aList.Add(Dt.Rows[i]["FREEZE_DATE"].ToString());
                    //aList.Add(GetValueSetParameter(PageTimeStamp.Value, "datetime"));
                    aList.Add(UID);

                    result = db.UpdUnFreezeLocateSec(aList, DBT);
                }


                #region 交易成功

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation成立
                    DBT.Commit();
                }

                #endregion
                return result;
            }
            catch (Exception ex)
            {
                #region 交易失敗

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation失敗
                    DBT.Rollback();
                }

                #endregion

                throw ex;
            }
            finally
            {
                #region 判斷是否關閉交易連線

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation,關閉連線
                    if (Conn.State == ConnectionState.Connecting)
                    {
                        Conn.Close();
                    }
                }

                #endregion

            }
        }