private void GetData()
        {
            string function = "";

            switch (DeptType)
            {
            case "0": function = "p_warning_report_country_produce";
                break;

            case "1": function = "p_warning_report_country_fishery";
                break;

            case "2": function = "p_warning_report_country_animal";
                break;

            default: break;
            }

            DataTable table = operationContract.ExecuteProWarningReportCountry(function, Kssj, Jssj, DeptId, ItemId,
                                                                               ReviewFlag, DeptType);

            current_table    = table;
            _tableview.Table = table;
        }