ApiUrls

ApiUrls

using System;

namespace Common
{
    /// 
    /// 接口地址
    /// 
    public class ApiUrls
    {
        #region test

        /// 
        ///开发者环境 上传下载底稿
        /// 
        public static string ApiDomain = "https://testpgapi.cailian.net/mgy-main-test";

        /// 
        /// excel数据服务->test
        /// 
        public static String ApiExcelDomain = "https://testpgapi.cailian.net/excel-service-test";

        /// 
        /// 工作台服务->test
        /// 
        public static String ApiPlatDomain = "https://testpgapi.cailian.net/mgy-main-v2-test";

        /// 
        /// 问题清单网页地址
        /// 
        public static string bishengUrl = "https://test-pg4.cailian.net";

        /// 
        /// excel 插件安装地址
        /// 
        public static string excelPlugin = "https://inserter-pgtest.cailian.net/test/excel/setup.exe";

        /// 
        /// webSoket
        /// 
        public static string websocketUrl = "ws://test-pg.cailian.net:8081";

        /// 
        /// 模板下载地址类型0=test、1=uat、2=prod
        /// 
        public static int templateType = 0;

        /// 
        /// 消息队列
        /// 
        public static string mqttUrl = "192.168.5.10";

        public static int Port = 5672;
        public static string UserName = "guest";
        public static string Password = "guest";

        /// 
        /// 从工作台打开摩估云网页
        /// 
        public static string webPageUrl = "https://test-pg.cailian.net";

        /// 
        /// 工作台发布ftp地址
        /// 
        public static string appUpdateUrl = @"\\172.20.34.106\ShareFolder\test";

        #endregion

        #region uat

        / 
        / 主服务接口 uat环境
        / 
        //public static String ApiDomain = "https://pgqyuatapi.cailian.net/mgy-main-bate";

        / 
        / excel数据服务->uat
        / 
        //public static String ApiExcelDomain = "https://pgqyuatapi.cailian.net/excel-service-bate";

        / 
        / 工作台服务->uat
        / 
        //public static String ApiPlatDomain = "https://pgqyuatapi.cailian.net/mgy-main-v2-bate";

        / 
        / 问题清单
        / 
        //public static string bishengUrl = "http://gztuat.cailian.net";

        / 
        /  excel 插件安装地址
        / 
        //public static string excelPlugin = "https://inserter-pg.cailian.net/uat/excel/setup.exe";

        / 
        / webSoket
        / 
        //public static string websocketUrl = "ws://192.168.2.245:8081";

        / 
        / 消息队列
        / 
        //public static string mqttUrl = "123.56.48.205";
        //public static int Port = 5672;
        //public static string UserName = "guest";
        //public static string Password = "guest";

        / 
        / 从工作台打开摩估云网页
        / 
        //public static string webPageUrl = "https://pgqyuat.cailian.net";

        / 
        / 模板下载地址类型0=test、1=uat、2=prod
        / 
        //public static int templateType = 1;

        / 
        / 工作台发布ftp地址
        / 
        //public static string appUpdateUrl = @"\\172.20.34.106\ShareFolder\test";

        #endregion

        #region prod

        / 
        / 主服务接口 生产接口域名
        / 
        //public static String ApiDomain = "https://pgqyapi.cailian.net/mgy-main";

        / 
        / excel数据服务
        / 
        //public static String ApiExcelDomain = "https://pgqyapi.cailian.net/excel-service";

        / 
        / 工作台服务->prod
        / 
        //public static String ApiPlatDomain = "https://pgqyapi.cailian.net/mgy-main-v2";

        / 
        / 问题清单
        / 
        //public static string bishengUrl = "https://gzt.cailian.net";

        / 
        /  excel 插件安装地址
        / 
        //public static string excelPlugin = "https://inserter-pg.cailian.net/prod/excel/setup.exe";

        / 
        / webSoket
        / 
        //public static string websocketUrl = "ws://192.168.2.245:8081";

        / 
        / 消息队列
        / 
        //public static string mqttUrl = "59.110.156.236";
        //public static int Port = 5672;
        //public static string UserName = "guest";
        //public static string Password = "guest";

        / 
        / 从工作台打开摩估云网页
        / 
        //public static string webPageUrl = "https://pg.cailian.net";

        / 
        / 模板下载地址类型0=test、1=uat、2=prod
        / 
        //public static int templateType = 2;

        / 
        / 工作台发布ftp地址
        / 
        //public static string appUpdateUrl = @"\\172.20.34.106\ShareFolder\test";

        #endregion

        /// 
        /// 查询问题清单
        /// 
        public static string GetProblemListDraft = ApiPlatDomain + "/reportDraft/getProblemListDraft";

        /// 
        /// 问题清单上传
        /// 
        public static string UploadOfProblemList = ApiPlatDomain + "/reportDraft/saveProblemAttachments";

        /// 
        /// 数据导入 数据清单接口【生产】
        /// 
        public static string ApiDomain_DataList = ApiExcelDomain + "/materialInfo/selectMaterialInfoList";

        /// 
        /// 股权树
        /// 
        public static string StockDataTree = ApiDomain + "/investors/dataTree";

        /// 
        /// 单个项目股权树
        /// 
        public static string StockSingleDataTree = ApiDomain + "/project/selectDataTree";

        /// 
        /// 报告说明上传接口
        /// 
        public static string UploadReportExplainFile = ApiDomain + "/reportManageTemplate/receiveReportFile";

        /// 
        /// 更改股权结构树上的模板
        /// 
        public static string UpdateTreeTemplate = ApiDomain + "/reportManageTemplate/updateTreeTemplate";

        /// 
        / 获取验证码接口
        /// 
        public static string GetKaptcha = ApiDomain + "/getKaptcha";

        /// 
        /// 获取验证码接口
        /// 
        public static string Login = ApiDomain + "/loginNew";

        /// 
        /// 登录接口2
        /// 
        public static string LoginHandle = ApiDomain + "/loginHandle";

        /// 
        /// 退出登录
        /// 
        public static string logout = ApiDomain + "/logout";

        /// 
        /// 文档删除
        /// 
        public static string DocumentsDelete = ApiDomain + "/reportManageTemplate/documentsDelete";

        /// 
        /// 股权树附件上传接口
        /// 
        public static string StockTreeAttachmentsUpload = ApiDomain + "/reportManageTemplate/attachmentsUpload";

        /// 
        /// 模板管理查询接口
        /// 
        public static string TemplateFind = ApiDomain + "/reportManageTemplate/findMacthZip";

        /// 
        /// 项目列表模糊查询接口
        /// 
        public static string FindAllProjectByUserID = ApiDomain + "/projects/findAllProjectByUserID";

        /// 
        /// 项目列表模糊查询接口
        /// 
        public static string GetProjectListByStatus = ApiDomain + "/projects/getProjectListByStatus";

        /// 
        /// 查询一整套的主、衍生项目
        /// 
        public static string FindProjectAndDerivativeById = ApiDomain + "/projects/findProjectAndDerivativeById";

        /// 
        /// 退出登录
        /// 
        public static string Logout = ApiDomain + "/logout";

        /// 
        /// 发送验证码
        /// 
        public static string sendRegCode = ApiDomain + "/login/sendRegCode";

        /// 
        /// 忘记密码接口
        /// 
        public static string updatePwdBycode = ApiDomain + "/login/updatePwdBycode";

        /// 
        /// 生成报告获取数据接口
        /// 
        public static string reportDataSupport = ApiDomain + "/reportData/reportDataSupport";

        /// 
        /// 获取字典信息
        /// 
        public static string findXmSx = ApiDomain + "/projects/findXmSx";

        public static string findXmSxNew = ApiPlatDomain + "/projecttype/findXmSx";

        /// 
        /// 新增机器码
        /// 
        public static string insertMachineCode = ApiDomain + "/machineCode/insertMachineCode";

        /// 
        /// 机器码是否存在
        /// 
        public static string isExistMachineCode = ApiDomain + "/machineCode/isExistMachineCode";

        /// 
        /// 机器码是否存并已启用
        /// 
        public static string isExistEnableMachineCode = ApiDomain + "/machineCode/isExistEnableMachineCode";

        /// 
        /// 获取机器码列表
        /// 
        public static string getMachineCodeList = ApiDomain + "/machineCode/getMachineCodeList";

        /// 
        /// 修改机器码是否可用
        /// 
        public static string updateEnable = ApiDomain + "/machineCode/updateEnable";

        /// 
        /// 插入操作日志
        /// 
        public static string insertLog = ApiDomain + "/officelog/insertOfficelog";

        /// 
        /// 获取模板版本信息
        /// 
        public static string getCombinationListByVersion = ApiDomain + "/templateCombination/getCombinationListByVersion";

        /// 
        /// 组合模板信息
        /// 
        public static string getAlllTemplateCombinationList = ApiDomain + "/templateCombination/getAlllTemplateCombinationList";

        /// 
        /// 组合模板反向生成查询模板数据接口
        /// 
        public static string getReportDescByNameAndIndustry = ApiDomain + "/reportDescTemplate/findReportDescByNameAndIndustry";

        /// 
        /// 组合模板模板推荐接口
        /// 
        public static string MatchingByTemplateAndIndustry = ApiDomain + "/reportDescTemplate/matchingByTemplateAndIndustry";

        /// 
        /// 查询报告类型
        /// 
        public static string GetReportType = ApiDomain + "/fileLabel/findAllContentLabel";

        /// 
        /// 用户下载模板维护记录接口
        /// 
        public static string InsertTemplateUsedRecord = ApiDomain + "/templateUsedRecord/insertRecord";

        /// 
        /// 模板文件查询
        /// 
        public static string findAllTemplate = ApiDomain + "/reportDescTemplate/findAllTemplate";

        /// 
        /// 报告要点指引
        /// 
        public static string findReportByTemplateName = ApiDomain + "/reportPointsSetting/findOneByTemplateName";

        /// 
        /// 作价要点指引
        /// 
        public static string findPriceByTemplateName = ApiDomain + "/pricingPointsConfiguration/findOneByTemplateName";

        /// 
        /// 组合模板更新信息
        /// 
        public static string getAllUpdateTemplateCombinationList = ApiDomain + "/templateCombination/getUpdateTemplateCombinationList";

        /// 
        /// 公司-模板操作记录表增加
        /// 
        public static string templateOptions = ApiDomain + "/investorTemplate/templateOptions";

        /// 
        /// 获取报告信息表相关数据的接口
        /// 
        public static string reportInformationSheet = ApiDomain + "/projects/reportInformationSheet";

        /// 
        /// 打印导出模块操作日志
        /// 
        public static string exportPrintLog = ApiDomain + "/pluginOperateLog/insertMachineCode";

        /// 
        /// 获取获取价值比率
        /// 
        public static string getValueRatio = ApiExcelDomain + "/valueRatio/getValueRatio";

        /// 
        /// 获取获取时间价值比率
        /// 
        public static string getDateValueRatio = ApiExcelDomain + "/bondYield/getBondYield";

        /// 
        /// 获取上市公司
        /// 
        public static string getListedCompanyBaseData = ApiExcelDomain + "/listedCompany/getListedCompanyBaseData";

        /// 
        /// 获取阿里云地址信息,生产有加速
        /// 
        public static string getaliYunProperties = ApiDomain + "/plugInUploadDraftFile/aliYunProperties";

        /// 
        /// 170、获取阿里云配置,生产小文件不用加速参数传false
        /// 
        public static string getreportDraftaliYunProperties = ApiPlatDomain + "/reportDraft/aliYunProperties";

        /// 
        /// 底稿文件上传接口
        /// folderPath传输的时候需要去除文件夹中文名字的前缀
        ///例如:
        /// 1、 /工作底稿/收益法/收益法底稿/SY1尽职调查
        ///     /工作底稿/收益法/收益法底稿/尽职调查
        ///         如果是你们自定义的文件夹,可以不用去,比如跟东东商量生成的目录
        ///         还有就是文件夹路径最后一级不要带/,例子中的格式
        ///2、评估方法:0:资产基础法,1:收益法,2:市场法
        /// 
        public static string saveFileInformation = ApiDomain + "/plugInUploadDraftFile/saveFileInformation";

        /// 
        /// 文件是否覆盖接口
        /// 1、评估方法:0:资产基础法,1:收益法,2:市场法,3:覆盖全部
        /// 
        public static string overlayData = ApiDomain + "/plugInUploadDraftFile/overlayData";

        /// 
        /// 底稿文件下载接口
        /// 评估方法:0:资产基础法,1:收益法,2:市场法,3:下载全部
        /// 返回的文件夹路径需要你们自己去拼接中文前缀
        /// 
        public static string downloadFile = ApiDomain + "/plugInUploadDraftFile/downloadFile";//(废弃)

        /// 
        /// 判断底稿是否存在接口
        /// 
        public static string judgeFileExist = ApiDomain + "/plugInUploadDraftFile/judgeFileExist";

        /// 
        /// 系统组织机构
        /// 
        public static string sysGroupTreeToDown = ApiDomain + "/operationGroup/sysGroupTreeToDown";

        /// 
        /// 项目分工进度导出来
        /// 
        public static string projectdevideExport = ApiDomain + "/projectdevide/export";

        /// 
        /// 项目分工进度导入
        /// 
        public static string projectdevideImportData = ApiDomain + "/projectdevide/importData";

        /// 
        /// 项目分工进度项目列表
        /// 
        public static string projectdevideProjectList = ApiDomain + "/projectdevide/divideList";

        /// 
        /// 保存云文档
        /// 
        public static string saveCloudDocument = ApiPlatDomain + "/cloudFile/saveFile";

        /// 
        /// 集中作价上传文件接口
        /// 
        public static string savePriceFile = ApiDomain + "/cloudFile/savePriceFile";

        /// 
        /// 项目人员不同维度甘特图列表导出
        /// 
        public static string projectdevideDetail = ApiDomain + "/projectdevide/detail";

        /// 
        /// 获取项目性质字典
        /// 
        public static string selectAllAssessmentObject = ApiDomain + "/assessmentObject/selectAllAssessmentObject";

        /// 
        /// 技术方案、委托合同模板查询
        /// templateType-必传-模板类型(JSFA:技术方案、WTHT:委托合同)
        /// templateDetailedType-模板详细类型(技术方案包含:单项资产处置项目、企业价值通用项目、破产重整项目、上市公司重大资产重组项目)
        /// 
        public static string getTemplateCombinationList = ApiPlatDomain + "/templateCombination/getTemplateCombinationList";

        #region 项目云接口

        /// 
        /// 2、根据项目id查询项目机构树
        /// 
        public static string CloudDocumentsDataTree = ApiUrls.ApiPlatDomain + "/cloudFile/dataTree";

        /// 
        /// 3、根据机构id加载底稿目录及六大表分类数据
        /// 
        public static string CloudDocumentsFindRootDirs = ApiUrls.ApiPlatDomain + "/cloudFile/findRootDirs";

        /// 
        /// 4、【改】根据机构id及底稿目录层级获取文件列表
        /// 
        public static string CloudDocumentsFindFileList = ApiUrls.ApiPlatDomain + "/cloudFile/findFileList";

        /// 
        /// 19、校验文件上传权限
        /// 
        public static string CloudDocumentsHaveCreatePermission = ApiUrls.ApiPlatDomain + "/cloudFile/haveCreatePermission";

        /// 
        /// 6、在底稿目录及六大表分类目录修改
        /// 
        public static string CloudDocumentsSaveFiles = ApiUrls.ApiPlatDomain + "/cloudFile/saveFiles";

        /// 
        /// 7、在底稿目录及六大表分类目录删除
        /// 
        public static string CloudDocumentsDeleteFiles = ApiUrls.ApiPlatDomain + "/cloudFile/deleteFiles";

        /// 
        /// 8、回收站查询
        /// 
        public static string CloudDocumentsRecoverySearch = ApiUrls.ApiPlatDomain + "/cloudFile/findDeletedFiles";

        /// 
        /// 9、回收站还原
        /// 
        public static string CloudDocumentsRecoveryRecover = ApiUrls.ApiPlatDomain + "/cloudFile/recoverDeletedFiles";

        /// 
        /// 9、回收站删除
        /// 
        public static string CloudDocumentsRecoveryDel = ApiUrls.ApiPlatDomain + "/cloudFile/deletedFilesComplete";

        /// 
        /// 根据docid查询文件名称
        /// 
        public static string CloudDocumentsFindFileByDocId = ApiUrls.ApiPlatDomain + "/cloudFile/findFileByDocId";

        /// 
        /// 16、下载文件
        /// 
        public static string CloudDocumentsdownLoadFiles = ApiUrls.ApiPlatDomain + "/cloudFile/downLoadFiles";

        /// 
        /// 20.重命名文件文件夹接口
        /// 
        public static string CloudDocumentsUpdateDraftName = ApiUrls.ApiPlatDomain + "/cloudFile/updateDraftName";

        /// 
        /// 人员管理
        /// 
        public static string CloudDocumentsPerson = ApiUrls.ApiDomain + "/projectdevide/userAdministrationList";

        /// 
        /// 项目管理
        /// 
        public static string CloudDocuments = ApiUrls.ApiDomain + "/projectdevide/projectList";

        /// 
        /// 14、权限-文件-批量编辑人员列表
        /// 
        public static string CloudDocumentsUpdatePermissionUsers = ApiUrls.ApiPlatDomain + "/cloudFile/updatePermissionUsers";

        /// 
        /// 9、权限-查询项目人员列表
        /// 
        public static string CloudDocumentsFindUsersByFile = ApiUrls.ApiPlatDomain + "/cloudFile/findUsersByFile";

        /// 
        /// 13权限-通讯录-文件对应人员列表
        /// 
        public static string CloudDocumentsFindUsersByMailList = ApiUrls.ApiPlatDomain + "/cloudFile/findUsersByMailList";

        /// 
        /// 保存文件对应人员列表
        /// 
        public static string CloudDocumentsSaveUsersByMailList = ApiUrls.ApiPlatDomain + "/cloudFile/saveUsersByMailList";

        /// 
        /// 校验用户项目权限
        /// 
        public static string CloudDocumentsVerifyPermissionByUser = ApiUrls.ApiDomain + "/cloudFile/verifyPermissionByUser";

        /// 
        ///获取树形用户列表
        /// 
        public static string GetGroupAndUserTree = ApiUrls.ApiPlatDomain + "/sysgroup/getGroupAndUserTree";

        /// 
        /// 118、查询是否是工作台项目
        /// 
        public static string isWorkProject = ApiUrls.ApiPlatDomain + "/project/isWorkProject";

        #endregion

        #region 集中作价审核

        /// 
        /// 10. 集中作价分配/提交/审核/打回
        /// 
        public static string CentralizedPricingReview = ApiUrls.ApiExcelDomain + "/fileOperationCentral/pricingAllocation";

        /// 
        /// 11. 同型同价赋值
        /// 
        public static string SametypeAndSamePrice = ApiUrls.ApiExcelDomain + "/fileOperationCentral/samePriceAssignment";

        /// 
        /// 集中作价提交-项目经理
        /// 
        public static string CentralizedPricingReviewForPM = ApiExcelDomain + "/fileOperationCentral/dataSubmit";

        /// 
        /// 集中作价提交-项目经理
        /// 
        public static string CentralizedPricingReviewForPM_File = ApiExcelDomain + "/fileOperationCentral/dataSubmit_file";

        /// 
        /// 分配任务情况查看
        /// 
        public static string Assignpeopletaskview = ApiUrls.ApiDomain + "/centralizedPricingFile/userTaskNumber";

        /// 
        /// 集中作价我负责的项目列表
        /// 
        public static string CentralizedPricingProjectList = ApiDomain + "/projects/responsibleProjectList";

        /// 
        /// 集中作价查询分类下文件列表
        /// 
        public static string CentralizedPricingFileList = ApiPlatDomain + "/excelHyperlink/fileList";

        /// 
        /// 保存
        /// 
        public static string CentralizedPricingPreservationData = ApiExcelDomain + "/fileOperationCentral/preservationData";

        /// 
        /// 查询
        /// 
        public static string CentralizedPricingQueryData = ApiExcelDomain + "/subjectsDataCentral/queryData";

        /// 
        /// 查询任务总数量
        /// 
        public static string CentralizedPricingQueryCount = ApiExcelDomain + "/subjectsDataCentral/queryCount";

        /// 
        /// 人员的分类任务数量
        /// 
        public static string CentralizedPricingQueryTaskCount = ApiExcelDomain + "/fileOperationCentral/taskCount";

        /// 
        /// 查询
        /// 
        public static string CentralizedPricingRevert = ApiExcelDomain + "/fileOperationCentral/submitWithdraw";

        /// 
        /// 集中作价获取(左项目右文件)
        /// 
        public static string SelectCentralizedPricingFile = ApiDomain + "/centralizedPricingFile/selectCentralizedPricingFile";

        /// 
        /// 项目负责人更新已提交文件数据
        /// 
        public static string CentralizedXMFZRSubmitFile = ApiDomain + "/centralizedPricingFile/updateFile";

        /// 
        /// 集中作价文件撤回
        /// 
        public static string SubmitFileWithdraw = ApiExcelDomain + "/fileOperationCentral/submitFileWithdraw";

        /// 
        /// 集中作价文件提交(项目经理提交)
        /// 
        public static string CenPricingSubmit = ApiDomain + "/centralizedPricingFile/submitFile";

        /// 
        /// 集中作价获取底稿列表
        /// 
        public static string CenPricingDraftFileList = ApiPlatDomain + "/cloudFile/findPriceDraftFileList";

        /// 
        /// 集中作价下载底稿
        /// 
        public static string CenPricingDraftdownLoadPriceFiles = ApiDomain + "/cloudFile/downLoadPriceFiles";

        /// 
        /// 获取用户角色信息
        /// 
        public static string EditSysUser = ApiDomain + "/sysuser/editSysUser";

        /// 
        /// 获取标记修改记录接口
        /// 
        public static string getMarkRecords = ApiExcelDomain + "/fileOperationCentral/getMarkRecords";

        #endregion

        #region 工作台

        /// 
        /// 王宁波:隐藏空文件夹失效暂时处理
        /// 
        public static string resetFileCountForInvestor = ApiPlatDomain + "/reportDraft/resetFileCountForInvestor";

        /// 
        /// 创建项目
        /// 
        public static string createProject = ApiPlatDomain + "/project/createProject";

        /// 
        /// 创建项目-报告类型、项目性质
        /// 
       // public static string findNatureReportList = ApiDomain + "/natureReport/findNatureReportList";
        /// 
        /// 获取工作台 字典信息
        /// 
        public static string findWorkbenchXmSx = ApiPlatDomain + "/projecttype/findXmSx";

        /// 
        /// 货币
        /// 
        //public static string queryCurrency = ApiDomain + "/project/queryCurrency";

        /// 
        /// 地区
        /// 
        public static string selectArea = ApiPlatDomain + "/sysarea/selectArea";

        /// 
        /// 项目列表查询接口
        /// 
        public static string PageProjectList = ApiPlatDomain + "/project/pageProjectList";

        /// 
        /// 获取项目性质字典
        /// 
        public static string selectAllAssessmentObjectNew = ApiPlatDomain + "/assessmentObject/selectAllAssessmentObject";

        /// 
        /// 获取项目预算数据
        /// 
        public static string getProjectConstInfo = ApiPlatDomain + "/project/getProjectConstInfo";

        /// 
        /// 获取项目预算数据
        /// 
        public static string projectBudget = ApiPlatDomain + "/project/projectBudget";

        /// 
        /// 获取项目左侧底稿目录
        /// 
        public static string getProjectShareFiles = ApiPlatDomain + "/reportDraft/getMenuRootDirs";

        ///
        /// 139 获取子目录
        /// 
        public static string getMenuFilesByLevel = ApiPlatDomain + "/reportDraft/getMenuFilesByLevel";

        /// 
        /// 获取项目左侧底稿目录
        /// 
        public static string getProjectShareFilesOld = ApiPlatDomain + "/reportDraft/getProjectShareFiles";

        /// 
        /// 项目置顶
        /// 
        public static string WorkbenchAddTopProject = ApiPlatDomain + "/topUserProject/addTopProject";

        /// 
        /// 取消置顶
        /// 
        public static string WorkbenchUpdateTopProject = ApiPlatDomain + "/topUserProject/updateTopProject";

        /// 
        /// 获取项目下组织机构
        /// 
        public static string WorkbenchDataTree = ApiPlatDomain + "/investor/dataTree";

        /// 
        /// 查询精简版机构树-主要公司状态属性,替换dataTree接口
        /// 
        public static string dataTreeStreamline = ApiPlatDomain + "/investor/dataTreeStreamline";

        /// 
        /// 机构概览查询
        /// 
        public static string selectNewAssetownerinformation = ApiPlatDomain + "/assetownerinformation/selectNewAssetownerinformation";

        /// 
        /// 机构概览保存
        /// 
        public static string saveNewAssetOwnerInformation = ApiPlatDomain + "/assetownerinformation/saveNewAssetOwnerInformation";

        /// 
        /// 5、立项提交/立项变更
        /// 
        public static string submitAudit = ApiPlatDomain + "/projectsetuprequest/submitAudit";

        /// 
        /// 6、项目概略信息
        /// 
        public static string getProjectInfo = ApiPlatDomain + "/project/projectInfo";

        /// 
        /// 项目概略信息projectInfo接口一拆二,返回数据中,projectInfo节点在getNewProjectInfo接口,其他节点放到了getNewProjectOtherInfo接口 by 20221028
        /// 
        public static string getNewProjectInfo = ApiPlatDomain + "/project/getNewProjectInfo";

        public static string getNewProjectOtherInfo = ApiPlatDomain + "/project/getNewProjectOtherInfo";

        /// 
        /// 文件管理模块查询项目底稿
        /// 
        public static string fileModuleQuery = ApiPlatDomain + "/reportDraft/findCategoryProjectFiles";

        /// 
        /// 根据parentId查询项目底稿
        /// 
        public static string fileModuleQueryByPid = ApiPlatDomain + "/reportDraft/findProjectFilesByPid";

        /// 
        /// 项目底稿删除
        /// 
        public static string deleteProjectDraft = ApiPlatDomain + "/reportDraft/deleteProjectShareFiles";

        /// 
        /// 文件管理上传
        /// 
        public static string savedProjectDraft = ApiPlatDomain + "/reportDraft/savedProjectShareFiles";

        /// 
        /// 下载模板
        /// 
        public static string downloadTemplateFile = ApiPlatDomain + "/reportDraft/downloadTemplateFile";

        /// 
        /// 独立自查接口
        /// 
        public static string setupFindSelfSurveyInfo = ApiPlatDomain + "/projectsetuprequest/setupFindSelfSurveyInfo";

        /// 
        /// 独立自查保存接口
        /// 
        public static string selfExamination = ApiPlatDomain + "/project/selfExamination";

        /// 
        /// 30、保存问题清单
        /// 
        public static string saveProblemList = ApiPlatDomain + "/reportDraft/saveProblemList";

        /// 
        /// 下载评估报告/说明
        /// 
        public static string downLoadReportsAndInstrumentsDraft = ApiPlatDomain + "/reportDraft/getReportsAndInstrumentsDraft";

        /// 
        /// 上传评估报告/说明
        /// 
        public static string upReportsAndInstrumentsDraft = ApiPlatDomain + "/reportDraft/saveReportsAndInstrumentsDraft";

        /// 
        /// 45、立项审核通过时初始化项目编号
        /// 
        public static string initProjectNumber = ApiPlatDomain + "/projectsetuprequest/initProjectNumber";

        public static string repeatAuditRequest = ApiPlatDomain + "/projectsetuprequest/repeatAuditRequest";

        /// 
        /// 查询报告与作价、清查核实左侧目录及文件
        /// 
        public static string findCategoryPricingDocs = ApiPlatDomain + "/reportDraft/findCategoryPricingDocs";

        /// 
        /// 51、右上角角色查询接口
        /// 
        public static string getInvestorJurisdiction = ApiPlatDomain + "/investor/getInvestorJurisdiction";

        /// 
        /// 511、右上角角色查询接口
        /// 
        public static string getMessageByUserId = ApiPlatDomain + "/message/getMessageByUserId";

        /// 
        /// 29、立项审核列表
        /// 
        public static string WorkbenchFindSetupAuditList = ApiPlatDomain + "/projectsetuprequest/findSetupAuditList";

        /// 
        /// 66、获取taskid
        /// 
        public static string getTaskIdByprojectId = ApiPlatDomain + "/projectsetuprequest/getTaskIdByProjectId";

        /// 
        /// 15、保存资料清单
        /// 
        public static string saveMaterialList = ApiPlatDomain + "/reportDraft/saveMaterialList";

        /// 46、项目编号分配取消时接口
        /// 
        public static string deleteProjectNumber = ApiPlatDomain + "/projectsetuprequest/deleteProjectNumber";

        /// 
        /// 47、立项审核点击不通过按钮时返回回退信息
        /// 
        public static string refuseRetMap = ApiPlatDomain + "/projectsetuprequest/refuseRetMap";

        /// 
        /// 48、校验项目名称和项目编号
        /// 
        public static string verificationProjectName = ApiPlatDomain + "/projectsetuprequest/verificationProjectName";

        /// 
        /// 29、立项审核列表
        /// 
        public static string findSetupAuditList = ApiPlatDomain + "/projectsetuprequest/findSetupAuditList";

        /// 
        /// 40、平台获取右上方菜单数据匹配信息接口
        /// 
        public static string getProjectMenu = ApiPlatDomain + "/projectmenu/menu";

        /// 
        /// 37、项目分工查询
        /// 
        public static string projectDivisionList = ApiPlatDomain + "/projectDivision/projectDivisionList";

        /// 
        /// 38、项目分工保存(项目负责人使用)
        /// 
        public static string leaderUpdateDivision = ApiPlatDomain + "/projectDivision/leaderUpdateDivision";

        /// 
        /// 66、项目负责人及成员
        /// 
        public static string findProjectUser = ApiPlatDomain + "/projectuser/findProjectUser";

        /// 
        /// 25、查询用户项目列表筛选条件
        /// 
        public static string WorkbenchGetSortFilter = ApiPlatDomain + "/projectSortFilter/getSortFilter";

        /// 
        /// 26、修改用户项目列表筛选条件
        /// 
        public static string WorkbenchUpdateSortFilter = ApiPlatDomain + "/projectSortFilter/updateSortFilter";

        /// 
        /// 报告体例列表
        /// 
        public static string getReportStyleNum = ApiPlatDomain + "/reportStyle/getReportStyleNum";

        /// 
        /// 保存报告体例
        /// 
        public static string updateReportStyleNum = ApiPlatDomain + "/reportStyle/updateReportStyleNum";

        /// 
        /// 54、查询中联云文档目录接口
        /// 
        public static string findDraftAndProjectDraftFiles = ApiPlatDomain + "/cloudFile/findDraftAndProjectDraftFiles";

        /// 
        /// 62、云文档查询文件通用方法,增加分页接口findPageCloudFiles
        /// 
        public static string findAllKindsFiles = ApiPlatDomain + "/cloudFile/findAllKindsFiles";

        public static string findPageCloudFiles = ApiPlatDomain + "/cloudFile/findPageCloudFiles";

        /// 
        /// 63、云文档保存文件、文件夹通用方法
        /// 
        public static string saveAllKindsFiles = ApiPlatDomain + "/cloudFile/saveAllKindsFiles";

        /// 
        /// 64、云文档删除文件、文件夹通用方法
        /// 
        public static string deleteAllKindsFiles = ApiPlatDomain + "/cloudFile/deleteAllKindsFiles";

        /// 
        /// 70、新增/修改股权结构树公司
        /// 
        public static string saveOrUpdateInvestor = ApiPlatDomain + "/investor/saveOrUpdateInvestor";

        /// 
        /// 71、新增衍生项目
        /// 
        public static string createDerivedProject = ApiPlatDomain + "/project/createDerivedProject";

        /// 
        /// 72、删除公司
        /// 
        public static string delInvestor = ApiPlatDomain + "/investor/delInvestor";

        /// 
        /// 73、删除衍生项目
        /// 
        public static string delDerivedProject = ApiPlatDomain + "/project/delDerivedProject";

        /// 
        /// 81、立项变更页面信息
        /// 
        public static string getProjectReplaceInfo = ApiPlatDomain + "/projectReplaceInfo/getProjectReplaceInfo";

        /// 
        /// 85、撤销删除机构
        /// 
        public static string revokeDelInvestor = ApiPlatDomain + "/investor/revokeDelInvestor";

        /// 
        /// 85、撤销删除机构
        /// 
        public static string revokeDerivedProject = ApiPlatDomain + "/project/revokeDerivedProject";

        /// 
        /// 89、获取公司信息
        /// 
        public static string getInvestorInfo = ApiPlatDomain + "/investor/getInvestorInfo";

        /// 
        /// 90、查询报告盖章机构树接口
        /// 
        public static string findReportNumTree = ApiPlatDomain + "/reportNumAssignment/findReportNumTree";

        /// 
        /// 批量申请用印接口
        /// 
        public static string batchApplicationSeal = ApiPlatDomain + "/investorAuditRecord/batchApplicationSeal";

        /// 
        /// 综合查询项目列表查询接口
        /// 
        public static string moreProjectList = ApiPlatDomain + "/project/moreProjectList";

        /// 
        /// 92、查询报告核数盖章机构详情接口
        /// 
        public static string reportSealReportDetil = ApiPlatDomain + "/reportseal/reportSealReportDetil";

        /// 
        /// 87、开启外审
        /// 
        public static string openInvestorOutside = ApiPlatDomain + "/investor/openInvestorOutside";

        /// 
        /// 88、关闭外审
        /// 
        public static string closeInvestorOutside = ApiPlatDomain + "/investor/closeInvestorOutside";

        /// 
        /// 93、批量申请报告号信息
        /// 
        public static string sendBatchAuditorReport = ApiPlatDomain + "/reportNumAssignment/sendBatchAuditorReport";

        /// 
        /// 91、单个申请报告号
        /// 
        public static string sendAuditorReport = ApiPlatDomain + "/reportNumAssignment/sendAuditorReport";

        /// 
        /// 92、撤回报告号申请、撤回核数申请
        /// 
        public static string retractReporSubmit = ApiPlatDomain + "/reportNumAssignment/retractReportSubmit";

        /// 
        /// 93、批量申请核数盖章
        /// 
        public static string sendBatchAuditorSeal = ApiPlatDomain + "/reportseal/sendBatchAuditorSeal";

        /// 
        /// 94、单个申请核数盖章
        /// 
        public static string sendAuditorSeal = ApiPlatDomain + "/reportseal/sendAuditorSeal";

        /// 
        /// 95、查询可沿用报告号公司信息列表
        /// 
        public static string findReportNumList = ApiPlatDomain + "/reportNumAssignment/findReportNumList";

        /// 
        /// 96、修改沿用报告号
        /// 
        public static string saveReportNumFollow = ApiPlatDomain + "/reportNumAssignment/saveReportNumFollow";

        /// 
        /// 101、查询所有部门
        /// 
        public static string sysGroupTree = ApiPlatDomain + "/sysgroup/sysGroupTree";

        /// 
        /// 97、核数盖章编辑
        /// 
        public static string updateInvestorSummary = ApiPlatDomain + "/investorSummary/updateInvestorSummary";

        /// 
        /// 100、获取公司级菜单消息数量接口
        /// 
        public static string investMenu = ApiPlatDomain + "/projectmenu/investmenu";

        public static string auditTree = ApiPlatDomain + "/investor/auditTree";

        /// 
        /// 103、参会人员按钮红点查询接口
        /// 
        public static string underbutton = ApiPlatDomain + "/projectmenu/underbutton";

        /// 
        /// 28、立项记录-变更字段查询
        /// 
        public static string selectChangeRecord = ApiPlatDomain + "/projectsetuprequest/selectChangeRecord";

        /// 
        /// 107、查询底稿详细列表
        /// 
        public static string dataMatching = ApiPlatDomain + "/reportDraft/dataMatching";

        /// 
        /// 108、同步底稿目录到云文档
        /// 
        public static string saveReportFolder = ApiPlatDomain + "/reportDraft/saveReportFolder";

        /// 
        /// 110、项目列表-按代办事项区分
        /// 
        public static string pageProjectMatterList = ApiPlatDomain + "/project/pageProjectMatterList";

        /// 
        /// 109、同步底稿目录到云文档
        /// 
        public static string statistics = ApiExcelDomain + "/draft/statistics";

        /// 
        /// 111、工作台右侧按级查询文件
        /// 
        public static string findFilesByLevel = ApiPlatDomain + "/reportDraft/findFilesByLevel";

        /// 
        /// 111、判断底稿是否存在
        /// 
        public static string platJudgeFileExist = ApiPlatDomain + "/reportDraft/judgeFileExist";

        /// 
        /// 115底稿上传保存信息
        /// 
        public static string platSaveFileInformationNew = ApiPlatDomain + "/reportDraft/saveFileInformation";

        /// 
        /// 113、批量导入项目机构
        /// 
        public static string rapidProjectImport = ApiPlatDomain + "/investor/rapidProjectImport";

        /// 
        /// 114、轮询批量导入机构接口状态
        /// 
        public static string rapidProjectexportLock = ApiPlatDomain + "/investor/rapidProjectexportLock";//ApiPlatDomain

        /// 
        /// 115、批量导出项目机构
        /// 
        public static string rapidProjectexport = ApiPlatDomain + "/investor/rapidProjectexport";//ApiPlatDomain

        /// 
        /// 114下载底稿
        /// 
        public static string WorkbenchDownloadFile = ApiPlatDomain + "/reportDraft/downloadFile";

        /// 
        /// 116、查询评估方法下所有文件@Adam
        /// 评估方法:0:资产基础法,1:收益法,2:市场法,3:下载全部
        /// 返回的文件夹路径需要你们自己去拼接中文前缀
        /// 
        public static string getFilesInfoByMethod = ApiPlatDomain + "/reportDraft/getFilesInfoByMethod";//新接口

        /// 
        /// 117、更新阿里云文件
        /// 
        public static string updateAliOSSFile = ApiPlatDomain + "/reportDraft/updateAliOSSFile";//新接口

        public static string benchInteractive = ApiDomain + "/benchInteractive";

        /// 
        /// 123、发起问题任务下拉内容
        /// 
        public static string getTaskList = ApiPlatDomain + "/problemList/getTaskList";

        public static String ApiPlatDomain1 = "https://testpgapi.cailian.net/mgy-main-v2-wnb";

        /// 
        /// 124、获取默认任务类型和默认回复人
        /// 
        public static string getDefaultProblemInfo = ApiPlatDomain + "/problemList/getDefaultProblemInfo";

        /// 
        /// 125、发起问题保存接口
        /// 
        public static string saveNewProblem = ApiPlatDomain + "/problemList/saveNewProblem";

        /// 
        /// 126、更新问题接口
        /// 
        public static string updateProblem = ApiPlatDomain + "/problemList/updateProblem";

        /// 
        /// 128、发起问题自动填充答复人
        /// 
        public static string getDefaultRespondent = ApiPlatDomain + "/problemList/getDefaultRespondent";

        /// 
        /// 获取答复人列表
        /// 
        public static string getRespondentList = ApiPlatDomain + "/problemList/getRespondentList";

        /// 
        /// 130 问题/答复检索
        /// 
        public static string getContentTempByKeyWord = ApiPlatDomain + "/problemList/getContentTempByKeyWord";

        /// 
        /// 38、工作台问题清单通过签发撤回功能接口(包含消息推送)
        /// 
        public static string message = ApiPlatDomain + "/message/message";

        /// 
        /// 122、获取问题清单按钮权限
        /// 
        public static string findMessageButton = ApiPlatDomain + "/problemList/findMessageButton";

        /// 
        /// 127、撤销问题接口(物理删除)
        /// 
        public static string revokeProblem = ApiPlatDomain + "/problemList/revokeProblem";

        /// 
        /// 131、问题清单-回复/反馈
        /// 
        public static string replyQuestion = ApiPlatDomain + "/problemList/replyQuestion";

        /// 
        /// 132、问题清单-撤销回复/反馈
        /// 
        public static string revokeReply = ApiPlatDomain + "/problemList/revokeReply";

        /// 
        /// 133、问题清单-问题列表
        /// 
        public static string findProblemTopicList = ApiPlatDomain + "/problemList/findProblemTopicList";

        /// 
        /// 134、问题清单-单个问题查询
        /// 
        public static string findProblemTopicById = ApiPlatDomain + "/problemList/findProblemTopicById";

        /// 
        /// 135、问题清单-数据统计
        /// 
        public static string findProblemStatisticsCount = ApiPlatDomain + "/problemList/findProblemStatisticsCount";

        /// 
        /// 136、问题清单-配置类列表
        /// 
        public static string getTaskTypeConfigList = ApiPlatDomain + "/problemList/getTaskTypeConfigList";

        /// 
        /// 137、问题清单-导出人员选择列表
        /// 
        public static string findProblemCreateUserNames = ApiPlatDomain + "/problemList/findProblemCreateUserNames";

        /// 
        /// 138、问题清单-导出问题清单文件
        /// 
        public static string exportProblemList = ApiPlatDomain + "/problemList/exportProblemList";

        /// 
        /// 查询未通过的个数
        /// 
        public static string findProblemNoPassCount = ApiPlatDomain + "/problemList/findProblemNoPassCount";

        /// 
        /// 是否需要打开问题列表
        /// 
        public static string findProblemTopicByUser = ApiPlatDomain + "/problemList/findProblemTopicByUser";

        /// 
        /// 140、获取默认项目
        /// 
        public static string workBenchOneProject = ApiPlatDomain + "/project/workBenchOneProject";

        /// 
        /// 141、创建目录
        /// 
        public static string getNeedCreatedCatalogue = ApiPlatDomain + "/reportDraft/getNeedCreatedCatalogue";

        /// 
        /// 142、所属分类
        /// 
        public static string getClassification = ApiPlatDomain + "/reportDraft/getClassification";

        /// 
        /// 143、底稿上传保存信息
        /// 
        public static string saveFileInformationByBatchUpload = ApiPlatDomain + "/reportDraft/saveFileInformationByBatchUpload";

        /// 
        /// 144、查询批量下载文件列表
        /// 
        public static string selectBulkDownloadFileList = ApiPlatDomain + "/reportDraft/selectBulkDownloadFileList";

        /// 
        /// 143、所属分类一次加载多级
        /// 
        public static string getClassificationAll = ApiPlatDomain + "/reportDraft/getClassificationAll";

        /// 
        ///149、项目选择项目负责人
        /// 
        public static string getPGSTree = ApiUrls.ApiPlatDomain + "/sysgroup/getPGSTree";

        /// 
        /// 150
        /// 
        public static string selectProjectConfig = ApiUrls.ApiPlatDomain + "/project/selectProjectConfig";

        /// 
        /// 151、任务完成/通过按钮涉及模块弹窗
        /// 
        public static string getModuleWindow = ApiPlatDomain + "/investorAuditRecord/getModuleWindow";

        /// 
        ///153、申请用印
        /// 
        public static string applicationSeal = ApiPlatDomain + "/investorAuditRecord/applicationSeal";

        /// 
        ///158、立项前人员校验
        /// 
        public static string investorUserList = ApiUrls.ApiPlatDomain + "/projectRole/investorUserList";

        /// 
        ///159、公司展示审核结果
        /// 
        public static string getReviewProcessResults = ApiUrls.ApiPlatDomain + "/investorAuditRecord/getReviewProcessResults";

        /// 
        /// 获取底稿菜单
        /// 
        public static string getDraftMenu = ApiUrls.ApiPlatDomain + "/reportDraft/getDraftMenu";

        /// 
        /// 工作台帮助菜单json配置文件
        /// 
        public static string workbenchConfigJson = "https://datajson.cailian.net/workbenchConfig.json";

        /// 
        /// 底稿统计机构树
        /// 
        public static string draftStatisticDataTree = ApiUrls.ApiPlatDomain + "/draftStatistic/dataTree";

        /// 
        /// 162、底稿统计机构树
        /// 
        public static string draftStatisticDraftDataTree = ApiUrls.ApiPlatDomain + "/draftStatistic/draftDataTree";

        /// 
        /// 165、底稿统计页面列表获取接口
        /// 
        public static string draftgetStatisticList = ApiUrls.ApiPlatDomain + "/draftStatistic/getStatisticList";

        /// 
        /// 获取项目导出信息
        /// 
        public static string findPjCollectSheet = ApiUrls.ApiPlatDomain + "/project/findPjCollectSheet";

        /// 
        /// 导出项目信息
        /// 
        public static string exportComprehensiveQuery = ApiUrls.ApiPlatDomain + "/project/exportComprehensiveQuery";

        /// 
        /// 166、底稿统计接口
        /// 
        public static string generateDraftStatisticData = ApiUrls.ApiPlatDomain + "/reportDraft/generateDraftStatisticData";

        /// 
        /// 163、底稿统计页面保存接口
        /// 
        public static string saveDraftStatistic = ApiPlatDomain + "/draftStatistic/saveDraftStatistic";

        /// 
        /// 164、底稿统计页面恢复默认操作
        /// 
        public static string resetDraftStatistic = ApiPlatDomain + "/draftStatistic/resetDraftStatistic";

        /// 
        /// 172、全部科目及选中状态查询接口:
        /// 
        public static string getAllPricingSheets = ApiUrls.ApiPlatDomain + "/reportDraft/getAllPricingSheets";

        /// 
        /// 173、获取公司下作价表有数据的科目列表
        /// 
        public static string getExistDataPricingSheets = ApiUrls.ApiPlatDomain + "/reportDraft/getExistDataPricingSheets";

        /// 
        /// 174、科目设置保存接口:
        /// 
        public static string updateDraftStatisticSubject = ApiUrls.ApiPlatDomain + "/draftStatisticSubject/updateDraftStatisticSubject";

        /// 
        /// 26、同步关联数据查询(异步)
        /// 
        public static string synchronizationRelationData = ApiExcelDomain + "/equityInvestment/synchronizationRelationData";

        /// 
        /// 27、同步关联数据二次查询
        /// 
        public static string findSynchronizationRelationData = ApiExcelDomain + "/equityInvestment/findSynchronizationRelationData";

        /// 
        /// 查询股权出资数据
        /// 
        public static string queryInvestorData = ApiExcelDomain + "/equityInvestment/queryInvestorData";

        /// 
        /// 查询股权出资顺序
        /// 
        public static string equityInvestmentData = ApiExcelDomain + "/equityInvestment/equityInvestmentData";

        /// 
        /// 删除项目红点
        /// 
        public static string deleteProjectMessage = ApiUrls.ApiPlatDomain + "/project/deleteProjectMessage";

        /// 
        /// 批量签发通过拒绝
        /// 
        public static string auditIsueList = ApiUrls.ApiPlatDomain + "/investor/auditIsueList";

        /// 
        /// 单个,批量底稿核查
        /// 
        public static string draftCheckAudit = ApiUrls.ApiPlatDomain + "/draftCheck/draftCheckAudit";

        /// 
        /// 出具报告-详情-申报报告号查询接口
        /// 
        public static string getReportNumberHistory = ApiUrls.ApiPlatDomain + "/reportNumAssignment/getReportNumberHistory";

        /// 
        /// 底稿归档详情记录
        /// 
        public static string getDraftFilingAcceptanceHistory = ApiUrls.ApiPlatDomain + "/draftFilingAcceptance/getDraftFilingAcceptanceHistory";

        /// 
        /// 底稿归档送审
        /// 
        public static string submitDraftFilingAcceptance = ApiUrls.ApiPlatDomain + "/draftFilingAcceptance/submitDraftFilingAcceptance";

        /// 
        /// 底稿归档撤回
        /// 
        public static string withdrawDraftFilingAcceptance = ApiUrls.ApiPlatDomain + "/draftFilingAcceptance/withdrawDraftFilingAcceptance";

        /// 
        /// 出具报告-详情-底稿核查记录接口
        /// 
        public static string getDraftCheckDetailList = ApiUrls.ApiPlatDomain + "/draftStatistic/getDraftCheckDetailList";

        /// 
        /// 代办事项列表查询接口
        /// 
        public static string pageProjectMatterListNew = ApiUrls.ApiPlatDomain + "/project/pageProjectMatterListNew";

        /// 
        /// 单个,批量底稿核查送审
        /// 
        public static string draftCheckSubmit = ApiUrls.ApiPlatDomain + "/draftCheck/draftCheckSubmit";

        /// 
        /// 查询外审公司底稿文件操作记录列表
        /// 
        public static string draftCheckLogList = ApiUrls.ApiPlatDomain + "/draftCheck/logList";

        /// 
        /// 21. 查询机构(底稿审核选择时用)
        /// 
        public static string findDraftCheckInvestorList = ApiUrls.ApiPlatDomain + "/investor/findDraftCheckInvestorList";

        /// 
        /// 25. 查询项目列表树-公司简要信息
        /// 
        public static string getInvestorIntroduction = ApiUrls.ApiPlatDomain + "/project/getInvestorIntroduction";

        /// 
        /// 查询精简版项目列表
        /// 
        public static string cloudDocumentsProjectList = ApiUrls.ApiPlatDomain + "/project/cloudDocumentsProjectList";

        /// 
        /// 26.查询项目合同列表
        /// 
        public static string findContractFiles = ApiPlatDomain + "/reportDraft/findContractFiles";

        /// 
        /// 27、查询项目下集中作价所有作价表
        /// 
        public static string getCentralPricingDraftList = ApiPlatDomain + "/reportDraft/getCentralPricingDraftList";

        /// 
        /// 28、查询风控角色环节通过列表
        /// 
        public static string getRiskAuditList = ApiPlatDomain + "/investorAuditRecord/getRiskAuditList";

        /// 
        /// 29、风控签发批量审核
        /// 
        public static string riskBatchAudit = ApiPlatDomain + "/investorAuditRecord/riskBatchAudit";

        #endregion

        #region 工作台新接口

        /// 
        /// 顶部一级菜单红点消息接口
        /// 
        public static string menuTop = ApiPlatDomain + "/projectmenu/menuTop";

        /// 
        /// 1. 现场评估师左侧项目列表
        /// 
        public static string pageProjectListNew = ApiPlatDomain + "/projectSelectGather/pageProjectList";

        /// 
        /// 2. 查询精简版机构树-用于左侧列表机构树展示
        /// 
        public static string dataTreeStreamlineForReportStyle = ApiPlatDomain + "/investor/dataTreeStreamlineForReportStyle";

        /// 
        /// 3. 查询精简版机构树-用于左侧列表机构树展示
        /// 
        public static string getProjectPersonnelDetail = ApiPlatDomain + "/project/getProjectPersonnelDetail";

        /// 
        /// 6. 查询机构树的资产基础法、市场法、收益法、评估报告、评估说明文件
        /// 
        public static string getDataTreeDraftByType = ApiPlatDomain + "/reportDraft/getDataTreeDraftByType";

        /// 
        /// 7. 顶部-最新消息获取接口
        /// 
        public static string getNewMessageListByRoleCode = ApiPlatDomain + "/message/getNewMessageListByRoleCode";

        /// 
        /// 8、根据科目名称以及行序号进行核验,查询核验结果
        /// 
        public static string draftAiVerification = ApiExcelDomain + "/draftAi/verification";

        /// 
        /// 双击作价表单元格、点击底稿图标查看当前底稿数据接口
        /// 
        public static string getDraftListByMark = ApiPlatDomain + "/reportDraft/getDraftListByMark";

        /// 
        /// 批量进行核验操作,识别作价表数据和底稿的对应关系
        /// 

        public static string verificationBatch = ApiExcelDomain + "/draftAi/verificationBatch";

        /// 
        /// 10. 校验底稿是否缺失
        /// 
        public static string checkDraftExist = ApiPlatDomain + "/reportDraft/checkDraftExist";

        /// 
        /// 根据关键字查询单行作价数据对应底稿文件
        /// 
        public static string searchDraftListByPricingData = ApiPlatDomain + "/reportDraft/searchDraftListByPricingData";

        /// 
        /// 12. 根据客户ID获取机构tree
        /// 
        public static string customerInvestorInfoDataTree = ApiPlatDomain + "/customerInvestorInfo/dataTree";

        /// 
        /// 13. 客户顾问左侧客户列表
        /// 
        public static string pageCustomerList = ApiPlatDomain + "/customerInfo/pageCustomerList";

        /// 
        /// 16. 客户顾问左侧客户明细信息
        /// 
        public static string getCustomerDetail = ApiPlatDomain + "/customerInfo/getCustomerDetail";

        /// 
        /// 17. 客户列表事项明细
        /// 
        public static string getCustomerMatterInfo = ApiPlatDomain + "/customerInfo/getCustomerMatterInfo";

        /// 
        /// 19. 创建或更新夺标信息接口
        /// 
        public static string saveOrUpdateTender = ApiPlatDomain + "/customerTenderInfo/saveOrUpdateTender";

        /// 
        ///20. 查询夺标详情信息接口
        /// 
        public static string tenderInfogetDetailInfo = ApiPlatDomain + "/customerTenderInfo/getDetailInfo";

        /// 
        /// 21.查询夺标分页列表接口
        /// 
        public static string tenderInfoGetPageList = ApiPlatDomain + "/customerTenderInfo/getPageList";

        /// 
        /// 22. 删除夺标接口
        /// 
        public static string tenderInfoDeleteById = ApiPlatDomain + "/customerTenderInfo/deleteById";

        /// 
        /// 23. 专家模块更新数据接口
        /// 
        public static string updateCustomerExpertInfo = ApiPlatDomain + "/customerExpertInfo/updateCustomerExpertInfo";

        /// 
        /// 27. 专家模块更新数据接口
        /// 
        public static string saveCustomerExpertInfo = ApiPlatDomain + "/customerExpertInfo/saveCustomerExpertInfo";

        /// 
        /// 删除专家信息
        /// 
        public static string deleteCustomerExpertInfo = ApiPlatDomain + "/customerExpertInfo/deleteIds";

        /// 
        /// 26. 事项分类明细
        /// 
        public static string getCustomerMatterInfoById = ApiPlatDomain + "/customerInfo/getCustomerMatterInfoById";

        /// 
        /// 28. 创建或更新评审信息接口
        /// 
        public static string saveOrUpdateReview = ApiPlatDomain + "/customerReviewInfo/saveOrUpdateReview";

        /// 
        /// 29、专家模块列表接口
        /// 
        public static string expertInfoGetPageList = ApiPlatDomain + "/customerExpertInfo/getPageList";

        /// 
        ///  30. 专家模块根据主键id获取详情接口
        /// 
        public static string getCustomerExpertInfo = ApiPlatDomain + "/customerExpertInfo/getCustomerExpertInfo";

        /// 
        /// 30. 查询评审分页列表接口
        /// 
        public static string reviewInfoGetPageList = ApiPlatDomain + "/customerReviewInfo/getPageList";

        /// 
        /// 31. 删除评审接口
        /// 
        public static string reviewInfoDeleteById = ApiPlatDomain + "/customerReviewInfo/deleteById";

        /// 
        /// 33.查询项目分页列表接口
        /// 
        public static string getPageListCustomerProject = ApiPlatDomain + "/customerProject/getPageList";

        /// 
        /// 32.活动添加接口
        /// 
        public static string createOrUpdateActivityInfo = ApiPlatDomain + "/customerActivityInfo/createOrUpdateActivity";

        /// 
        /// 33.查询活动分页列表接口
        /// 
        public static string getPageListActivityInfo = ApiPlatDomain + "/customerActivityInfo/getPageList";

        /// 
        /// 34. 删除活动
        /// 
        public static string activityInfoDeleteById = ApiPlatDomain + "/customerActivityInfo/deleteActivity";

        /// 
        /// 37. 项目委托合同-字段保存接口(其他资产评估报告使用人,提交期限)
        /// 
        public static string saveProjectTrait = ApiPlatDomain + "/project/saveProjectTrait";

        /// 
        /// 40. 人员分工-根据项目id获取项目总规模、二级长投、项目区域省份现场预算接口
        /// 
        public static string getDivisionOfLaborTopInfo = ApiPlatDomain + "/project/getDivisionOfLaborTopInfo";

        /// 
        /// 44. 查询全部专家信息-不带参,查全部专家;带参,查专家关联的全部客户
        /// 
        public static string getCustomerExpertList = ApiPlatDomain + "/customerExpertInfo/getCustomerExpertList";

        /// 
        /// 根据多个id查询客户信息
        /// 
        public static string getCustomerInvestorList = ApiPlatDomain + "/customerInvestorInfo/getCustomerInvestorList";

        /// 
        /// 45. 查专家关联的全部客户
        /// 
        public static string getCustomerList = ApiPlatDomain + "/customerInfo/getCustomerList";

        /// 
        /// 查询所有客户以及一级客户机构
        /// 
        public static string getAllCustomerList = ApiPlatDomain + "/customerInfo/getAllCustomerList";

        /// 
        /// 查询客户机构下的子客户机构
        /// 
        public static string getCustomerChildList = ApiPlatDomain + "/customerInvestorInfo/getCustomerChildList";

        /// 
        /// 46. 查询多个客户的团队成员-查内部参与人
        /// 
        public static string getCustomerTeamUserList = ApiPlatDomain + "/customerTeamInfo/getTeamUserList";

        /// 
        /// 111. 查询团队成员
        /// 
        public static string getTeamUserInfo = ApiPlatDomain + "/customerTeamInfo/getTeamUsers";

        /// 
        /// 12. 创建或更新客户信息接口
        /// 
        public static string saveOrUpdateCustomerInfo = ApiPlatDomain + "/customerInfo/saveOrUpdateCustomerInfo";

        /// 
        /// 11. 查询单个客户信息
        /// 
        public static string getCustomerUserInfo = ApiPlatDomain + "/customerInfo/getCustomerInfo";

        /// 
        /// 47.舆情列表查询接口
        /// 
        public static string getPageListCustomerPublicOpinionInfo = ApiPlatDomain + "/customerPublicOpinion/getPageList";

        /// 
        /// 47. 舆情添加
        /// 
        public static string createOrUpdatePublicOpinion = ApiPlatDomain + "/customerPublicOpinion/createOrUpdatePublicOpinion";

        /// 
        /// 48. 舆情关注/取关
        /// 
        public static string concernPublicOpinion = ApiPlatDomain + "/customerPublicOpinion/concernPublicOpinion";

        /// 
        /// 49. 舆情删除
        /// 
        public static string deletePublicOpinion = ApiPlatDomain + "/customerPublicOpinion/deletePublicOpinion";

        /// 
        /// 51. 查询计划与尽调项目下人员名称
        /// 
        public static string getProjectAuditUser = ApiPlatDomain + "/projectSelectGather/getProjectAuditUser";

        /// 
        /// 53. 修改项目信息
        /// 
        public static string updateProjectInfo = ApiPlatDomain + "/project/updateProjectInfo";

        /// 
        /// 55、查询所有项目通过模糊
        /// 
        public static string selectProjectByProjectName = ApiPlatDomain + "/projects/selectProjectByProjectName";

        /// 
        /// 53. 查询资料清单验收结果
        /// 
        public static string queryDataListAcceptanceResult = ApiPlatDomain + "/dataListAcceptance/queryDataListAcceptanceResult";

        /// 
        /// 61、上传委托合同或技术方案文件
        /// 
        public static string uploadFileByType = ApiPlatDomain + "/reportDraft/uploadFileByType";

        /// 
        /// 获取项目信息操作信息按钮状态
        /// 
        public static string getProjectInfoButton = ApiPlatDomain + "/setButton/getProjectInfoButton";

        /// 
        /// 获取底稿统计、核查按钮显示隐藏
        /// 
        public static string getDraftStatisticCheckButton = ApiPlatDomain + "/draftStatistic/getDraftStatisticCheckButton";

        /// 
        /// 查询项目下所有人员独立性评价
        /// 
        public static string getProjectUser = ApiPlatDomain + "/projectRelateUser/getProjectUser";

        /// 
        /// 客户部分新增(更新)附件信息
        /// 
        public static string saveOrupdatefile = ApiPlatDomain + "/commonfile/saveOrupdatefile";

        /// 
        /// 65. 生成资料包
        /// 
        public static string exportDataListAcceptanceResult = ApiPlatDomain + "/dueDiligenceManage/downloadDueDiligenceInfo";

        /// 
        /// 获取项目下的第一个公司
        /// 
        public static string getFirstInvestorByTime = ApiPlatDomain + "/project/getFirstInvestorByTime";

        /// 
        /// 43. 模板下拉框数据获取(技术方案、委托合同、标书)
        /// 

        public static string getTemplateSelectData = ApiPlatDomain + "/templateCombination/getTemplateSelectData";

        /// 
        /// 17、用户模块消息已读接口
        /// 
        public static string updateToRead = ApiPlatDomain + "/customerMessageUser/updateToRead";

        /// 
        /// 72. 查询团队用户列表
        /// 
        public static string getCustomerTeamInfoPageList = ApiPlatDomain + "/customerTeamInfo/getPageList";

        /// 
        /// 71. 查询舆情详情
        /// 
        public static string getCustomerPublicOpinion = ApiPlatDomain + "/customerPublicOpinion/getCustomerPublicOpinion";

        /// 
        /// 72. 评审详情
        /// 
        public static string getDetailInfo = ApiPlatDomain + "/customerReviewInfo/getDetailInfo";

        /// 
        /// 71、新增团队用户
        /// 
        public static string saveOrUpdateTeam = ApiPlatDomain + "/customerTeamInfo/saveOrUpdateTeam";

        public static string getPageList = ApiPlatDomain + "/customerTeamInfo/getPageList";

        /// 
        /// 71. 添加修改团队用户列表
        /// 
        public static string saveOrUpdateTeamPageList = ApiPlatDomain + "/customerTeamInfo/saveOrUpdateTeam";

        /// 
        /// 73. 删除团队用户列表
        /// 
        public static string deleteTeamPageList = ApiPlatDomain + "/customerTeamInfo/deleteById?";

        /// 
        /// 查询精简版机构树-按公司编码(1-1,2-1)排序拉平公司数据-用于工作台公司扁平展示
        /// 
        public static string GetCompanyTreePageList = ApiPlatDomain + "/investor/dataFlatStreamline?";

        /// 
        /// 76. 查询报告体例是否导入成功
        /// 
        public static string getReportStyleExcelStutas = ApiPlatDomain + "/reportStyleInfo/getReportStyleExcelStutas";

        /// 
        /// 76. 查询机器设备的设备类型
        /// 
        public static string equipmentClassification = ApiExcelDomain + "/equipmentClass/equipmentClassification";

        /// 
        /// 获取待办消息  -----  废弃
        /// 
        public static string getAgentProjectMessageList = ApiPlatDomain + "/message/getAgentProjectMessageList";

        /// 
        /// 获取待办消息详情
        /// 
        public static string getAgentProjectMessageDetailList = ApiPlatDomain + "/message/getAgentProjectMessageDetailListNew";

        /// 
        /// 右侧代办事项-获取代办项目-看板代办数量-已办数量---废弃
        /// 
        public static string getAgentShowPlatformInfo = ApiPlatDomain + "/message/getAgentShowPlatformInfo";

        /// 
        /// 109 右侧代办事项-获取代办项目全部信息
        /// 
        public static string getAgentAllDataListInfo = ApiPlatDomain + "/message/getAgentAllDataListInfo";

        /// 
        /// 110 右侧代办事项-获取代办项目-代办跳转详情
        /// 
        public static string getAgentJumpInfo = ApiPlatDomain + "/message/getAgentJumpInfo";

        /// 
        /// 111 右侧代办事项-获取代办项目-延期功能
        /// 
        public static string doPostAgentInfo = ApiPlatDomain + "/message/doPostAgentInfo";

        /// 
        /// 83. 根据模板目录名和文件信息保存文件
        /// 
        public static string findDraftsForLocate = ApiPlatDomain + "/reportDraft/findDraftsForLocate";

        /// 
        /// 84.获取机器设备分类名称
        /// 
        public static string getEquipmentClassNames = ApiExcelDomain + "/equipmentClass/getEquipmentClassNames";

        /// 
        /// 87.AI-根据projectId和investorId查询报告说明验证表数据
        /// 
        public static string getReportVerifications = ApiExcelDomain + "/reportVerification/getReportVerifications";

        /// 
        /// 88、AI-报告说明验证表数据触发接口
        /// 
        public static string dataAnalysis = ApiExcelDomain + "/ai/dataAnalysis";

        /// 
        /// 89. 问题列表(增强审核和清单审核里的问题列表)
        /// 
        public static string getProblemList = ApiPlatDomain + "/problemList/getProblemList";

        /// 
        /// 108. 增强审核关注点列表
        /// 
        public static string findEnhanceAuditList = ApiPlatDomain + "/enhanceAudit/findEnhanceAuditList";

        /// 
        /// 91.清单审核问题列表
        /// 
        public static string findInventoryQuestionList = ApiPlatDomain + "/inventoryQuestion/findInventoryQuestionList";

        /// 
        /// 92. 查询项目下人员角色
        /// 
        public static string getAuditUserList = ApiPlatDomain + "/projectSelectGather/getAuditUserList";

        /// 
        /// 95. 查询公司现场评估师的市场法收益法负责人
        /// 
        public static string getMarketAndIncome = ApiPlatDomain + "/projectRole/getMarketAndIncome";

        /// 
        /// 93:查询退改公司所涉及环节模块列表
        /// 
        public static string getRebackRiskAuditList = ApiPlatDomain + "/investorAuditRecord/getRiskAuditList";

        /// 
        /// 94:流程退改
        /// 
        public static string backFlowPath = ApiPlatDomain + "/investorAuditRecord/backFlowPath";

        /// 
        /// AI审核问题列表
        /// 
        public static string findAiQuestionList = ApiPlatDomain + "/aiQuestion/findAiQuestionList";

        /// 
        /// 99.查询机构下的资产基础法、市场法、收益法、评估报告、评估说明、问题清单文件
        /// 
        public static string getDataTreeDrafts = ApiPlatDomain + "/reportDraft/getDataTreeDrafts";

        /// 
        /// 96:点击通过和修改通过获取弹窗问题列表
        /// 
        public static string getProblemListForPassOrEditPass = ApiPlatDomain + "/problemList/getProblemListForPassOrEditPass";

        /// 
        /// 97:点击通过和修改通过(环节通过)
        /// 
        public static string processPassOrEditPass = ApiPlatDomain + "/problemList/processPassOrEditPass";

        /// 
        /// 97:上传问题清单
        /// 
        public static string uploadHiddenFile = ApiPlatDomain + "/reportDraft/uploadHiddenFile";

        /// 
        /// 100. 查询综合查询功能查询条件
        /// 
        public static string getQueryCriteriaList = ApiPlatDomain + "/comprehensiveQueryCriteria/getQueryCriteriaList";

        /// 
        /// 101. 修改综合查询
        /// 
        public static string updateQueryCriteriaList = ApiPlatDomain + "/comprehensiveQueryCriteria/updateQueryCriteriaList";

        /// 
        /// 102. 查询综合查询模板
        /// 
        public static string getQueryCriteriaTemp = ApiPlatDomain + "/comprehensiveQueryCriteria/getQueryCriteriaTemp";

        /// 
        /// 105. 添加/修改 关注点
        /// 
        public static string saveOrUpdateConcern = ApiPlatDomain + "/enhanceAudit/saveOrUpdateConcern";

        #endregion

        /// 
        /// 113.查询指定类型的文件列表
        /// 
        public static string getFileListByType = ApiPlatDomain + "/reportDraft/getFileListByType";

        /// 
        /// 116、监管问询公司列表查询
        /// 

        public static string regulatoryInquiriesList = ApiPlatDomain + "/investorChangeRecord/findOutsideTree";

        /// 
        /// 117、监管问询开启外审(批量开启外审)
        /// 
        public static string openBatchRegulatoryInquiriesOutSide = ApiPlatDomain + "/investor/openInvestorOutside";

        /// 
        /// 118、监管问询关闭外审
        /// 
        public static string closeBatchRegulatoryInquiriesOutSide = ApiPlatDomain + "/investor/openInvestorOutside";

        /// 
        /// 119、监管问询申请签发(批量申请签发)
        /// 
        public static string batchApplyRegulatoryInquiries = ApiPlatDomain + "/investorChangeRecord/batchApplicationSeal";

        /// 
        /// 120、监管问询操作记录
        /// 
        public static string getRegulatoryInquiriesOperLog = ApiPlatDomain + "/investorChangeRecord/getOperationRecord";


        /// 
        /// 123、监项目拒绝按钮-更新项目状态-《1项目恢复(进行中)》《3项目拒绝(已终止)》 
        /// 
        public static string UpdateProjectStatus = ApiPlatDomain + "/api/project/updateProjectStatus";
    }
}

你可能感兴趣的:(C#,中级知识汇总,c#,算法)