From 2730cff03b00dac04bce2a88722b74123cca1cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=98=E5=BA=86=E5=90=89?= <51312040@qq.com> Date: Wed, 16 Dec 2020 10:30:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9common?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/constant/ServiceNameConstants.java | 103 +++++++++++++----- 1 file changed, 75 insertions(+), 28 deletions(-) diff --git a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/constant/ServiceNameConstants.java b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/constant/ServiceNameConstants.java index 5df6062..dd2c7cf 100644 --- a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/constant/ServiceNameConstants.java +++ b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/constant/ServiceNameConstants.java @@ -8,48 +8,95 @@ package com.chinaunicom.mall.ebtp.common.constant; */ public interface ServiceNameConstants { - /** - * 项目服务 - */ - String PROJECT_SERVICE = "ebtp-mall-project"; /** - * 招标公告、邀请函、应答文件服务 + * 加解密服务 */ - String BID_SERVICE = "ebtp-mall-bid"; + String CRYPT_SERVICE = "core_service_ebtp_crypt"; /** - * 评审配置结构化服务 + * 即时通讯 */ - String RSMS_SERVICE = "ebtp-mall-rsms"; + String IM_SERVICE = "core_service_ebtp_im"; /** - * 费用设置 + * 支付服务 */ - String EXPENSES_SERVICE = "ebtp-mall-expenses"; + String PAY_SERVICE = "core_service_ebtp_pay"; /** - * 应答格式 + * 大文件上传下载 */ - String RESPS_SERVICE = "ebtp-mall-resps"; - - /** - * 开标大厅 - */ - String OPEN_SERVICE = "ebtp-mall-open"; - - /** - * 投标服务 - */ - String TENDER_SERVICE = "ebtp-mall-tender"; - - /** - * 解密服务 - */ - String CRYPT_SERVICE = "ebtp-mall-crypt"; + String UPDOWNLOAD_SERVICE = "core_service_ebtp_updownload"; /** * 流程服务 */ - String PROCESS_SERVICE = "ebtp-mall-process"; + String PROCESS_SERVICE = "biz_service_ebtp_process"; + + /** + * 费用设置 + */ + String EXPENSES_SERVICE = "biz_service_ebtp_expenses"; + + /** + * 竞拍 + */ + String AUCTION_SERVICE = "biz_service_ebtp_auction"; + + /** + * 应答格式 + */ + String RESPS_SERVICE = "biz_service_ebtp_resps"; + + /** + * 评审配置结构化服务 + */ + String RSMS_SERVICE = "biz_service_ebtp_rsms"; + + + /** + * 项目服务 + */ + String PROJECT_SERVICE = "biz_service_ebtp_project"; + + /** + * 招标公告、邀请函、应答文件服务 + */ + String BID_SERVICE = "biz_service_ebtp_bid"; + + /** + * 投标服务 + */ + String TENDER_SERVICE = "biz_service_ebtp_tender"; + + /** + * 开标大厅 + */ + String OPEN_SERVICE = "biz_service_ebtp_opening"; + + /** + * 定标 + */ + String CALIBRATION_SERVICE = "biz_service_ebtp_calibration"; + + /** + * 归档 + */ + String ARCHIVE_SERVICE = "biz_service_ebtp_archive"; + + /** + * 交易工具前端 + */ + String FRONTEND_SERVICE = "fe_service_ebtp_frontend"; + + /** + * 投标客户端工具 + */ + String BIDDING_TOOL_SERVICE = "client_ebtp_bidding_tool"; + + /** + * 电子签章 + */ + String ELEC_SIGN_SERVICE = "core_service_ebtp_elec_sign"; }