diff --git a/hz-pm-api/src/main/java/com/hz/pm/api/external/MhApiClient.java b/hz-pm-api/src/main/java/com/hz/pm/api/external/MhApiClient.java index 6d1dfbe..558c6b8 100644 --- a/hz-pm-api/src/main/java/com/hz/pm/api/external/MhApiClient.java +++ b/hz-pm-api/src/main/java/com/hz/pm/api/external/MhApiClient.java @@ -1,6 +1,7 @@ package com.hz.pm.api.external; import cn.hutool.core.date.LocalDateTimeUtil; +import cn.hutool.core.io.resource.ClassPathResource; import cn.hutool.core.lang.TypeReference; import cn.hutool.http.HttpUtil; import cn.hutool.json.JSONObject; @@ -15,7 +16,6 @@ import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import java.time.LocalDateTime; -import java.util.Collections; import java.util.List; import static cn.hutool.core.date.DatePattern.NORM_DATETIME_FORMATTER; @@ -128,65 +128,13 @@ public class MhApiClient { return Boolean.FALSE; } - static final String DICT_RET_JSON = "{\n" + - " \"code\": 200,\n" + - " \"msg\": \"success\",\n" + - " \"data\": [\n" + - " {\n" + - " \"id\": \"035931f1fdb698cdf0d4cb7a04154a34\",\n" + - " \"dictSort\": 0,\n" + - " \"dictLabel\": \"竞争性切磋\",\n" + - " \"dictValue\": \"JZXQC\",\n" + - " \"dictType\": \"buy_way\",\n" + - " \"dictId\": \"6f578f6f717a5d5bb0bf63a9b0870239\",\n" + - " \"isDefault\": \"N\",\n" + - " \"status\": \"0\",\n" + - " \"remark\": null,\n" + - " \"createTime\": \"2024-01-3021:21:40\",\n" + - " \"updateTime\": null,\n" + - " \"createBy\": \"7b40b2e2d396930d4f8567fd3d47a39e\",\n" + - " \"updateBy\": \"\"\n" + - " },\n" + - " {\n" + - " \"id\": \"1b66784a1af14660186d5e3e40dec96b\",\n" + - " \"dictSort\": 0,\n" + - " \"dictLabel\": \"询价\",\n" + - " \"dictValue\": \"XJ\",\n" + - " \"dictType\": \"buy_way\",\n" + - " \"dictId\": \"6f578f6f717a5d5bb0bf63a9b0870239\",\n" + - " \"isDefault\": \"N\",\n" + - " \"status\": \"0\",\n" + - " \"remark\": null,\n" + - " \"createTime\": \"2024-01-3021:22:04\",\n" + - " \"updateTime\": null,\n" + - " \"createBy\": \"7b40b2e2d396930d4f8567fd3d47a39e\",\n" + - " \"updateBy\": \"\"\n" + - " },\n" + - " {\n" + - " \"id\": \"fc5d7c2cb97b15db54e3f6265df9e5f1\",\n" + - " \"dictSort\": 0,\n" + - " \"dictLabel\": \"邀请招标\",\n" + - " \"dictValue\": \"YQZB\",\n" + - " \"dictType\": \"buy_way\",\n" + - " \"dictId\": \"6f578f6f717a5d5bb0bf63a9b0870239\",\n" + - " \"isDefault\": \"N\",\n" + - " \"status\": \"0\",\n" + - " \"remark\": null,\n" + - " \"createTime\": \"2024-01-3021:18:39\",\n" + - " \"updateTime\": null,\n" + - " \"createBy\": \"7b40b2e2d396930d4f8567fd3d47a39e\",\n" + - " \"updateBy\": \"\"\n" + - " }\n" + - " ]\n" + - "}"; - public List dictListByType(MhDictType dictType) { String retBody; if (!environmentUtil.isDevEnv()) { String url = mhApiHost + DICT_URL; retBody = HttpUtil.get(url + "?dictType=" + dictType); } else { - retBody = DICT_RET_JSON; + retBody = new ClassPathResource("/response/ret-purchase-method.json").readUtf8Str(); } MhRetDTO> retObj = JSONUtil.toBean(retBody, new TypeReference>>() { @@ -205,7 +153,7 @@ public class MhApiClient { String url = mhApiHost + PURCHASE_NOTICE_GET; retBody = HttpUtil.get(url + "?unitId=" + unitId); } else { - return Collections.emptyList(); + retBody = new ClassPathResource("/response/ret-purchase-intention.json").readUtf8Str(); } MhRetDTO> retObj = JSONUtil.toBean(retBody, new TypeReference>>() { @@ -218,5 +166,4 @@ public class MhApiClient { } } - } diff --git a/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/controller/PurchaseController.java b/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/controller/PurchaseController.java index 92c0fb9..2b3fb28 100644 --- a/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/controller/PurchaseController.java +++ b/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/controller/PurchaseController.java @@ -4,6 +4,7 @@ import com.hz.pm.api.common.util.ExcelDownUtil; import com.hz.pm.api.projectdeclared.manage.PurchaseManage; import com.hz.pm.api.projectdeclared.model.dto.PurchaseSaveDTO; import com.hz.pm.api.projectdeclared.model.req.*; +import com.hz.pm.api.projectdeclared.model.req.SubmitPurchaseNoticeReq.PurchaseNoticeTenderDTO; import com.hz.pm.api.projectdeclared.model.vo.PurchaseVO; import com.hz.pm.api.projectdeclared.model.vo.TestValidListVO; import com.hz.pm.api.projectdeclared.model.vo.XcfhxApplyListVO; @@ -121,4 +122,10 @@ public class PurchaseController { return purchaseManage.pageXcfhxApply(req); } + @GetMapping("/purchaseIntention/{unitId}") + @ApiOperation("获取采购意向") + public List listPurchaseIntention(@PathVariable Long unitId) { + return purchaseManage.listPurchaseIntention(unitId); + } + } diff --git a/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/manage/PurchaseManage.java b/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/manage/PurchaseManage.java index 1f44716..bd3af0b 100644 --- a/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/manage/PurchaseManage.java +++ b/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/manage/PurchaseManage.java @@ -2,6 +2,7 @@ package com.hz.pm.api.projectdeclared.manage; import cn.hutool.core.bean.BeanUtil; import cn.hutool.core.date.DateUtil; +import cn.hutool.core.date.LocalDateTimeUtil; import cn.hutool.core.io.FileUtil; import cn.hutool.core.lang.Assert; import cn.hutool.core.util.StrUtil; @@ -29,6 +30,7 @@ import com.hz.pm.api.datascope.model.DataScopeDTO; import com.hz.pm.api.datascope.utils.DataScopeUtil; import com.hz.pm.api.external.MhApiClient; import com.hz.pm.api.external.MhFileClient; +import com.hz.pm.api.external.model.dto.MhPurchaseIntentionDTO; import com.hz.pm.api.external.model.dto.MhPurchaseNoticeDTO; import com.hz.pm.api.projectdeclared.model.dto.DeclaredProjectExportDTO; import com.hz.pm.api.projectdeclared.model.dto.PurchaseSaveDTO; @@ -87,6 +89,7 @@ import org.springframework.transaction.annotation.Transactional; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.math.BigDecimal; +import java.math.RoundingMode; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.*; @@ -408,6 +411,8 @@ public class PurchaseManage { tmpFile.deleteOnExit(); return fileId; }).collect(Collectors.joining(",")); + PurchaseScopeEnum scope = PurchaseScopeEnum.getByCode(w.getPurchaseScope()) + .orElseThrow(() -> BizException.wrap("采购范围无效")); return MhPurchaseNoticeDTO.builder() .bidOpenTime(DateUtil.date(w.getBidStartTime()).toJdkDate()) .endTime(DateUtil.date(w.getBidEndTime()).toJdkDate()) @@ -415,7 +420,7 @@ public class PurchaseManage { .budgetMoney(w.getBidBudget().multiply(BigDecimal.valueOf(10000))) .buyItem(w.getBidName()) .buyFile(fileIds) - .buyScope(PurchaseScopeEnum.PUBLIC.eq(w.getPurchaseScope()) ? "Y" : "N") + .buyScope(scope.getMhCode()) .buyWay(w.getPurchaseMethod()) .buyUnitName(w.getPurchaseUnit()) .createUnit(w.getPurchaseUnitId().intValue()) @@ -752,4 +757,28 @@ public class PurchaseManage { return PageVo.of(data, page.getTotal()); } + public List listPurchaseIntention(Long unitId) { + List intentions = mhApiClient.listPurchaseNotice(unitId); + if (intentions.isEmpty()) { + return Collections.emptyList(); + } + return intentions.stream().map(w -> { + PurchaseScopeEnum scope = PurchaseScopeEnum.getByMhCode(w.getBuyScope()) + .orElseThrow(() -> BizException.wrap("采购范围无效")); + PurchaseNoticeTenderDTO item = new PurchaseNoticeTenderDTO(); + item.setBidName(w.getBuyItem()); + item.setBidBudget(BigDecimal.valueOf(w.getBudgetMoney()) + .divide(BigDecimal.valueOf(10000), RoundingMode.HALF_UP)); + item.setPurchaseMethod(w.getBuyWay()); + item.setPurchaseContact(w.getLinkUser()); + item.setPurchasePhone(w.getLinkPhone()); + item.setPurchaseConnectAddress(w.getDetailAddress()); + BizUtils.notNull(w.getBidOpenTime(), t -> item.setBidStartTime(LocalDateTimeUtil.of(t))); + BizUtils.notNull(w.getEndTime(), t -> item.setBidEndTime(LocalDateTimeUtil.of(t))); + item.setPurchaseRemark(w.getBuyDesc()); + item.setPurchaseScope(scope.getCode()); + return item; + }).collect(Collectors.toList()); + } + } diff --git a/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/model/enumerization/PurchaseScopeEnum.java b/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/model/enumerization/PurchaseScopeEnum.java index df22e45..6a177aa 100644 --- a/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/model/enumerization/PurchaseScopeEnum.java +++ b/hz-pm-api/src/main/java/com/hz/pm/api/projectdeclared/model/enumerization/PurchaseScopeEnum.java @@ -3,6 +3,9 @@ package com.hz.pm.api.projectdeclared.model.enumerization; import lombok.AllArgsConstructor; import lombok.Getter; +import java.util.Arrays; +import java.util.Optional; + /** *

* PurchaseScopeEnum @@ -15,14 +18,27 @@ import lombok.Getter; @AllArgsConstructor public enum PurchaseScopeEnum { - PUBLIC(1, "公开采购"), - PRIVATE(2, "非公开采购"); + PUBLIC(1, "公开采购", "Y"), + PRIVATE(2, "非公开采购", "N"); private final Integer code; private final String val; + private final String mhCode; public boolean eq(Integer code) { return this.code.equals(code); } + public static Optional getByMhCode(String mhCode) { + return Arrays.stream(values()) + .filter(w -> w.getMhCode().equals(mhCode)) + .findFirst(); + } + + public static Optional getByCode(Integer code) { + return Arrays.stream(values()) + .filter(w -> w.getCode().equals(code)) + .findFirst(); + } + } diff --git a/hz-pm-api/src/main/resources/response/ret-purchase-intention.json b/hz-pm-api/src/main/resources/response/ret-purchase-intention.json new file mode 100644 index 0000000..ab021c0 --- /dev/null +++ b/hz-pm-api/src/main/resources/response/ret-purchase-intention.json @@ -0,0 +1,1398 @@ +{ + "code": 200, + "msg": "success", + "data": [ + { + "id": "daf8bead776c8587d3c9b3446725e122", + "buyItem": "杭州市人大常委会办公厅深化信创(2024年)建设项目", + "budgetMoney": 900000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区解放东路18号市民中心E座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=NTLSTfwVhVGOaxvykS+Whg==", + "fax": "", + "buyDesc": "\n\n\n\n\n

包括统一监督平台门户、监督分析模块、数据分析模块,决策端、监督端、代表端三端建设。

\n\n", + "buyFile": "", + "buyUnitId": 2883, + "buyUnitName": "杭州市人大办公厅", + "createUnit": 2883, + "linkUser": "厉先生", + "linkPhone": "0571-85250798", + "createUser": "c18edbe2fdf0daf4a7bc1e7d394abfda", + "createTime": "2024-03-26 16:14:55", + "updateUser": "c18edbe2fdf0daf4a7bc1e7d394abfda", + "updateTime": "2024-03-26 16:15:40", + "postStatus": "Y", + "viewCount": 59, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "2f87beddf4742cab707518024f26e9ed", + "buyItem": "市建委深化信创项目", + "budgetMoney": 3300000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "市民中心D座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=R00v5%2Fn0Li3I1aAG0If%2BKw%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.16.ea3c9e80dc5b11eeacb74785393b1f46", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成市建委CIM基础信息平台等7个信息系统的功能升级。

\n\n", + "buyFile": "", + "buyUnitId": 2885, + "buyUnitName": "杭州市城乡建设委员会", + "createUnit": 2885, + "linkUser": "刘忠", + "linkPhone": "057185254276", + "createUser": "b470d9feae0c340fc31e5cd1e7b10d62", + "createTime": "2024-03-07 16:30:02", + "updateUser": "b470d9feae0c340fc31e5cd1e7b10d62", + "updateTime": "2024-03-08 13:40:17", + "postStatus": "Y", + "viewCount": 89, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "6a0a2768af3d9c8cc06fa0f0059e629f", + "buyItem": "杭州市民政局深化信创项目", + "budgetMoney": 4900000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市西湖区文三路359号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=JYCaPe7ZPdaCN5VK/p92ug==&utm=app-announcement-front.5cc075f2.0.0.c336ee00eb1d11ee996f6d2c140dd3c8", + "fax": "", + "buyDesc": "\n\n\n\n\n

杭州市民政局日常管理系统信创改造,并将应用系统归并整合,实现资源、业务、数据、界面统一管理的目标,最终形成一体化智能化数智民政平台。

\n\n", + "buyFile": "", + "buyUnitId": 2886, + "buyUnitName": "杭州市民政局", + "createUnit": 2886, + "linkUser": "赵淼麾", + "linkPhone": "0571-89586416", + "createUser": "e2b3de3a5902f2c66e85fad6e98f3d36", + "createTime": "2024-03-26 11:37:02", + "updateUser": "e2b3de3a5902f2c66e85fad6e98f3d36", + "updateTime": "2024-03-26 11:37:02", + "postStatus": "Y", + "viewCount": 30, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "265f7208785cefa5e230aaa0f9a72454", + "buyItem": "杭州市林水局深化信创项目", + "budgetMoney": 1200000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市解放东路18号市民中心D座12楼", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=EAJzAE/ezuXNWbw/31LqqA==", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成杭州市林水数据仓、林水一张图、杭州市农业水价改革系统的建设,按照要求完成一部门一平台改造

\n\n", + "buyFile": "", + "buyUnitId": 2888, + "buyUnitName": "杭州市林业水利局", + "createUnit": 2888, + "linkUser": "沈鹏飞", + "linkPhone": "0571-85255057", + "createUser": "addd92269fdd92680f3511de412e24e1", + "createTime": "2024-03-21 14:31:49", + "updateUser": "addd92269fdd92680f3511de412e24e1", + "updateTime": "2024-03-21 15:26:43", + "postStatus": "Y", + "viewCount": 43, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "3bb2bba457fecb159209a22b1e52f75b", + "buyItem": "杭州市市场监督管理局深化信创(2024)项目", + "budgetMoney": 13000000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区凤起东路109号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=EJFG+Wkxu6LkU9OtlyZCGQ==", + "fax": "", + "buyDesc": "\n\n\n\n\n

信息系统建设改造

\n\n", + "buyFile": "", + "buyUnitId": 2889, + "buyUnitName": "杭州市市场监督管理局", + "createUnit": 2889, + "linkUser": "程曦", + "linkPhone": "0571-89582726", + "createUser": "8288eca45909761a6c996045889490c2", + "createTime": "2024-03-25 16:03:21", + "updateUser": "8288eca45909761a6c996045889490c2", + "updateTime": "2024-03-26 16:06:08", + "postStatus": "Y", + "viewCount": 20, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "e356be1e5eef854c1214b2ea9a2df0a2", + "buyItem": "杭州市公安局(交警支队)深化信创项目", + "budgetMoney": 6526000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "文晖路336号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成“杭州交警合成作战平台”中“办公自动化系统、数字警卫系统、信访系统、民情警务信息系统”等模块的任务,实现项目相关基础软件和政务信息系统的改造。

\n\n", + "buyFile": "", + "buyUnitId": 2891, + "buyUnitName": "杭州市公安局交通警察支队", + "createUnit": 2891, + "linkUser": "蒋斌", + "linkPhone": "0571-87282217", + "createUser": "1de3775b34c6523b005177380c204439", + "createTime": "2024-02-21 10:03:57", + "updateUser": "1de3775b34c6523b005177380c204439", + "updateTime": "2024-02-22 15:50:06", + "postStatus": "Y", + "viewCount": 195, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "6daee02d12e7319b0a48d97b9321776d", + "buyItem": "杭州市公安局高速公路交通警察支队台式计算机采购", + "budgetMoney": 340000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区秋涛北路413号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=K2irbk99g%2F8nmSwSma5j%2BA%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.1.2d06fcd0eb1411eea47b936ecb8ae159", + "fax": "", + "buyDesc": "\n\n\n\n\n

采购台式计算机68台。

\n\n", + "buyFile": "", + "buyUnitId": 2891, + "buyUnitName": "杭州市公安局高速公路交通警察支队", + "createUnit": 2891, + "linkUser": "张以余", + "linkPhone": "0571-86498015", + "createUser": "68396ef6009a877491cbe2ee9e698a66", + "createTime": "2024-03-26 09:55:15", + "updateUser": "68396ef6009a877491cbe2ee9e698a66", + "updateTime": "2024-03-26 09:57:47", + "postStatus": "Y", + "viewCount": 23, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "b5a64d31a15c9907d6791a123c92ca93", + "buyItem": "业务装备费-便携式计算机、台式计算机采购", + "budgetMoney": 3350000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区华光路35号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

采购便携式计算机50台,台式计算机600台。

\n\n", + "buyFile": "", + "buyUnitId": 2891, + "buyUnitName": "杭州市公安局", + "createUnit": 2891, + "linkUser": "李先生", + "linkPhone": "89590205", + "createUser": "208c7f0fcc6657785d0e59c15adcb2d3", + "createTime": "2024-03-25 12:11:37", + "updateUser": "208c7f0fcc6657785d0e59c15adcb2d3", + "updateTime": "2024-03-25 12:11:37", + "postStatus": "Y", + "viewCount": 47, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "14b3c63eb7ca80e4609043872c20e68c", + "buyItem": "杭州市公安局(出入境管理局)深化信创项目-定制软件开发", + "budgetMoney": 3460800.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区华光路35号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

打造城市级智慧惠民服务总入口杭州市民码“境外版”,提升境外人士的获得感和幸福感,助力城市国际化建设。

\n\n", + "buyFile": "", + "buyUnitId": 2891, + "buyUnitName": "杭州市公安局", + "createUnit": 2891, + "linkUser": "李先生", + "linkPhone": "0571-89590205", + "createUser": "208c7f0fcc6657785d0e59c15adcb2d3", + "createTime": "2024-03-22 16:15:13", + "updateUser": "208c7f0fcc6657785d0e59c15adcb2d3", + "updateTime": "2024-03-22 16:15:13", + "postStatus": "Y", + "viewCount": 33, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "7e4d99d1771080c5c8026f041630d545", + "buyItem": "杭州市公安局监所管理支队台式计算机采购项目", + "budgetMoney": 576000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市余杭区运溪路36号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=ttpTYvwOCqllpLkXgr5GxA==", + "fax": "", + "buyDesc": "\n\n\n\n\n

采购台式电脑144台。

\n\n", + "buyFile": "", + "buyUnitId": 2891, + "buyUnitName": "杭州市公安局", + "createUnit": 2891, + "linkUser": "冯警官", + "linkPhone": "057187285052", + "createUser": "6df81b73cb6af157e38e793fe203bd7a", + "createTime": "2024-02-22 08:43:33", + "updateUser": "6df81b73cb6af157e38e793fe203bd7a", + "updateTime": "2024-02-22 08:44:58", + "postStatus": "Y", + "viewCount": 127, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "b1edc7535f8232a8df4280a18b06067f", + "buyItem": "杭州市人力社保局深化信创(2024年)项目监理服务", + "budgetMoney": 100000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市大学路99号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=UWnTk8tgguFawUWuI1EyVg%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.2.0effe960eb4411ee93fd4f2cab164a72", + "fax": "", + "buyDesc": "\n\n\n\n\n

信息化项目监理服务。

\n\n", + "buyFile": "", + "buyUnitId": 2896, + "buyUnitName": "杭州市人力资源和社会保障局", + "createUnit": 2896, + "linkUser": "郎女士", + "linkPhone": "87258550", + "createUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "createTime": "2024-03-26 15:50:20", + "updateUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "updateTime": "2024-03-26 15:59:26", + "postStatus": "Y", + "viewCount": 14, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "84b4a8e565b6b7907a5d2a502d5f9c14", + "buyItem": "杭州市人力社保局深化信创(2024年)", + "budgetMoney": 6380000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市大学路99号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=MVOUGfrjUCXTRpAl%2BV9oTg%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.5.0effe960eb4411ee93fd4f2cab164a72", + "fax": null, + "buyDesc": "\n\n\n\n\n

完成9套信息系统改造,建设杭州市民码公共服务(就业创业)场景,实现一单位一平台。

\n\n", + "buyFile": null, + "buyUnitId": 2896, + "buyUnitName": "杭州市人力资源和社会保障局", + "createUnit": 2896, + "linkUser": "郎女士", + "linkPhone": "87258550", + "createUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "createTime": "2024-03-26 15:56:31", + "updateUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "updateTime": "2024-03-26 15:59:33", + "postStatus": "Y", + "viewCount": 45, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "f2e4863db5121e95c3d2d5b248a198eb", + "buyItem": "杭州市人力社保局深化信创(2024年)项目财务审计", + "budgetMoney": 20000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市大学路99号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=pUR8xmugzxm8HdoIrYUV6Q%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.4.0effe960eb4411ee93fd4f2cab164a72", + "fax": null, + "buyDesc": "\n\n\n\n\n

项目财务审计。

\n\n", + "buyFile": null, + "buyUnitId": 2896, + "buyUnitName": "杭州市人力资源和社会保障局", + "createUnit": 2896, + "linkUser": "郎女士", + "linkPhone": "87258550", + "createUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "createTime": "2024-03-26 15:54:48", + "updateUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "updateTime": "2024-03-26 15:59:05", + "postStatus": "Y", + "viewCount": 15, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "7785142d2b353048dc458b41fd579262", + "buyItem": "杭州市人力社保局深化信创(2024年)项目咨询服务", + "budgetMoney": 100000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市大学路99号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=TBevmtuoNRd3k65z5f0Gjw%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.3.0effe960eb4411ee93fd4f2cab164a72", + "fax": "", + "buyDesc": "\n\n\n\n\n

项目可行性研究咨询服务。

\n\n", + "buyFile": "", + "buyUnitId": 2896, + "buyUnitName": "杭州市人力资源和社会保障局", + "createUnit": 2896, + "linkUser": "郎女士", + "linkPhone": "87258550", + "createUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "createTime": "2024-03-26 15:52:25", + "updateUser": "b22ead9f4ff097c52fecb83d48e6cc40", + "updateTime": "2024-03-26 15:59:17", + "postStatus": "Y", + "viewCount": 14, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "172eab480fb40cdda0c2156ddbd5cabc", + "buyItem": "杭州市审管办2024年深化信创项目--政务一体化平台改造及交易系统升级", + "budgetMoney": 6200000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区之江路925号临江金座2号楼", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

对政务应用一体化平台和杭州市公共资源电子交易服务系统进行升级,其中政务应用一体化平台涉及服务底座、框架底座、应用底座的构建;杭州市公共资源电子交易服务系统需完成交易平台、服务平台、拓展应用3个平台,涉及综合交易子系统、招标人(招标代理)平台、投标人平台、数字见证拓展应用、省级系统本地化应用配套、数智档案、不见面开标系统、一体化数据管理系统等8个子模块的整合升级,本次拟采购利旧系统改造升级服务。

\n\n", + "buyFile": "", + "buyUnitId": 2897, + "buyUnitName": "杭州市行政审批服务管理办公室", + "createUnit": 2897, + "linkUser": "姜俊杰", + "linkPhone": "15757106867", + "createUser": "093cad219348fc4c5c63855700157b67", + "createTime": "2024-03-20 18:10:57", + "updateUser": "093cad219348fc4c5c63855700157b67", + "updateTime": "2024-03-20 18:10:57", + "postStatus": "Y", + "viewCount": 31, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "13ca297363ed3cf08dc8471c61007afa", + "buyItem": "杭州市规划和自然资源局深化信创(2024)项目", + "budgetMoney": 3800000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区解放东路18号市民中心C座", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成杭州市国土空间基础信息平台、杭州市“一地一码”协同服务系统和杭州市数字规划档案馆系统深化建设。

\n\n", + "buyFile": "", + "buyUnitId": 2898, + "buyUnitName": "杭州市规划和自然资源局", + "createUnit": 2898, + "linkUser": "金志清", + "linkPhone": "85254830", + "createUser": "8262314e14d6ea589c3f60389bbc472c", + "createTime": "2024-03-19 14:16:11", + "updateUser": "8262314e14d6ea589c3f60389bbc472c", + "updateTime": "2024-03-19 14:16:11", + "postStatus": "Y", + "viewCount": 50, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "249ee47cc7fb3c1704e97cba88e1f2c8", + "buyItem": "杭州市农业农村局(杭州市乡村振兴局)深化信创项目政府采购意向", + "budgetMoney": 1980000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "市民中心E座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=fKiqOcGkDdsb79RG6xwsEw==&utm=app-announcement-front.6da13629.0.0.fae29c40c01711eea87e8dff284662ac", + "fax": "", + "buyDesc": "\n\n\n\n\n

通过综合集成,完成对杭州数字农业综合系统和杭农田应用的信创改造,构建杭州数字三农平台。

\n\n", + "buyFile": "", + "buyUnitId": 2899, + "buyUnitName": "杭州市农业农村局", + "createUnit": 2899, + "linkUser": "梅开", + "linkPhone": "057185256930", + "createUser": "8c5232a45b9fd488eac1c701bc0e1d48", + "createTime": "2024-02-27 09:41:59", + "updateUser": "8c5232a45b9fd488eac1c701bc0e1d48", + "updateTime": "2024-02-27 13:29:19", + "postStatus": "Y", + "viewCount": 120, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "67509b5a343aeb95a824f7ccc5843f3c", + "buyItem": "杭州市文化广电旅游局深化信创项目", + "budgetMoney": 3910000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市解放东路18号市民中心E座24楼", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

项目包括改造和新建两部分,改造部分主要涉及市文旅局“杭州城市大脑文旅系统”“杭州城市码及文旅领域的应用系统”“杭州旅游投诉系统”“杭州市数字文化馆”4个系统,根据评估的配置进行云资源申请,并开通相应网络权限,进行所有系统改造并迁移及部署运行。新建部分为“杭州市民码游客版系统”,拟建设杭州市民码游客版总入口,进行场景建设与接入,完成场景软硬件核销设备交互升级,实现线下刷码核销并回流场景业务数据和核销数据,完成数据归集、埋点和存储。

\n\n", + "buyFile": "", + "buyUnitId": 2902, + "buyUnitName": "杭州市文化广电旅游局", + "createUnit": 2902, + "linkUser": "钱绿怡", + "linkPhone": "85257974", + "createUser": "b6a33912fb09c9fc3d37a94deb22150d", + "createTime": "2024-03-22 10:03:26", + "updateUser": "b6a33912fb09c9fc3d37a94deb22150d", + "updateTime": "2024-03-22 17:10:07", + "postStatus": "Y", + "viewCount": 29, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "dc1c7906df50f4eb1eeeb9be1d4e0d19", + "buyItem": "市委宣传部2024年深化项目", + "budgetMoney": 5000000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市解放东路18号市民中心F座", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成市委宣传部数字一体化智能化公共数据平台及重点提升舆论引导在线、杭州市文明帮帮码、文创E点通应用建设。并且通过综合集成方式对杭州市委宣传部原有的政务信息系统及应用进行统一整合。

\n\n", + "buyFile": "", + "buyUnitId": 4287, + "buyUnitName": "杭州市委宣传部", + "createUnit": 4287, + "linkUser": "刘毅", + "linkPhone": "85251683", + "createUser": "ca84fdecc2024a60759c4484331d53af", + "createTime": "2024-03-21 09:41:33", + "updateUser": "ca84fdecc2024a60759c4484331d53af", + "updateTime": "2024-03-21 09:42:27", + "postStatus": "Y", + "viewCount": 34, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "3429419ef4395200ee0abd9f03635bee", + "buyItem": "杭州市机关事务管理局深化信创项目(2024年)", + "budgetMoney": 3890000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市解放东路18号市民中心H座", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

升级智慧机关事务综合平台系统,新增完善相关功能,并完成平台运行环境迁移及安全加固等工作。

\n\n", + "buyFile": "", + "buyUnitId": 4289, + "buyUnitName": "杭州市机关事务管理局", + "createUnit": 4289, + "linkUser": "鲁艳", + "linkPhone": "0571-85253355", + "createUser": "6baac0605af3900aa298fb3391274691", + "createTime": "2024-03-22 15:32:47", + "updateUser": "6baac0605af3900aa298fb3391274691", + "updateTime": "2024-03-22 15:34:21", + "postStatus": "Y", + "viewCount": 40, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "df449a1f33a13a6e45e5afd8eb4b20e1", + "buyItem": "杭州市国防动员办公室深化信创(2024年)项目", + "budgetMoney": 1600000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区粮道山23号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成杭州市人防办(市民防局)城市大脑数字驾驶舱系统、杭州市人民防空办公室民防码系统、杭州市人防工程全生命周期管理系统等各项子系统应用深化信创及升级整合。

\n\n", + "buyFile": "", + "buyUnitId": 4296, + "buyUnitName": "杭州市国防动员办公室", + "createUnit": 4296, + "linkUser": "张鲁希", + "linkPhone": "15805710169", + "createUser": "b194f3a953084e86993d7537dbc6696a", + "createTime": "2024-02-27 16:22:47", + "updateUser": "b194f3a953084e86993d7537dbc6696a", + "updateTime": "2024-03-05 14:27:46", + "postStatus": "Y", + "viewCount": 120, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "503c5c1ba26e006dac5cf44dc5864a47", + "buyItem": "杭州市城市管理局深化信创(2024)项目", + "budgetMoney": 9710000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市香积寺路302号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

2024年完成7套非涉密领域政务信息系统的改造提升工作,内容包括杭州城市综合管理服务系统、杭州市智能化犬类综合管理系统、杭州市建筑垃圾综合管控系统、杭州城市大脑智慧城管城市河道系统、杭州市智慧市政系统、杭州市生活垃圾数智治理系统、杭州市道路停车收费管理服务系统信创改造和信息系统升级,并按照一单位一平台的要求统一整合到杭州城市运行“一网统管”系统中,改造提升工作必须按照一网统管系统的技术规范和相关技术要求执行。

\n\n", + "buyFile": "", + "buyUnitId": 4297, + "buyUnitName": "杭州市城市管理局", + "createUnit": 4297, + "linkUser": "金瀚博", + "linkPhone": "89581700", + "createUser": "5e6e192fd8dcd8f54e079d0eaf9ff821", + "createTime": "2024-04-10 15:55:17", + "updateUser": "5e6e192fd8dcd8f54e079d0eaf9ff821", + "updateTime": "2024-04-10 15:58:15", + "postStatus": "Y", + "viewCount": 3, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "3ff8f71be4d599e06ec0eb2302f79e25", + "buyItem": "杭州市体育局深化项目", + "budgetMoney": 2610000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "浙江省杭州市西湖区跑马场巷9号杭州市体育局", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=bNSXqcxu8vubFwnEKqwbqg%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.1.350242c0e68a11eea2ede92a6df2e373", + "fax": "", + "buyDesc": "\n\n\n\n\n

为满足体育局信息系统要求,对体育平台进行深化改造,2024年完成209万元,2025年完成52万元

\n\n", + "buyFile": "", + "buyUnitId": 4300, + "buyUnitName": "杭州市体育局", + "createUnit": 4300, + "linkUser": "王春", + "linkPhone": "13666608580", + "createUser": "41252967e0ffbc0b89efb3443f449161", + "createTime": "2024-03-20 16:01:27", + "updateUser": "41252967e0ffbc0b89efb3443f449161", + "updateTime": "2024-03-20 16:17:52", + "postStatus": "Y", + "viewCount": 24, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "ecc35f3c57d08c59adb0583403cf8dec", + "buyItem": "市委政法委深化信创项目", + "budgetMoney": 2140000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区解放东路18号市民中心L座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=g0aPhiLtGFJD4ie6lPoBmA==&utm=app-announcement-front.5cc075f2.0.0.e1e47030f0b711eea7a803a5ace84e66", + "fax": "", + "buyDesc": "\n\n\n\n\n

建设杭州市基层智治综合应用重大应用贯通统建模块,通过搭建统一组织用户体系、统一功能界面服务、统一数据接入服务赋能区县,统筹承接省“1612”体系重大应用向乡镇(街道)延伸和集成落地,减少基层承接重大应用贯通重复开发工作量。

\n\n", + "buyFile": "", + "buyUnitId": 4315, + "buyUnitName": "杭州市委政法委", + "createUnit": 4315, + "linkUser": "董拓", + "linkPhone": "0571-85252438", + "createUser": "b97ad4e32cafbb512e88c43ba3e93641", + "createTime": "2024-04-02 16:00:10", + "updateUser": "b97ad4e32cafbb512e88c43ba3e93641", + "updateTime": "2024-04-02 16:01:34", + "postStatus": "Y", + "viewCount": 49, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "4cf4c9fd1c57fb97a402a174084052b3", + "buyItem": "杭州互联网法院(杭州铁路运输法院)深化信创项目", + "budgetMoney": 5180000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区钱潮路22号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成杭州互联网法院诉讼平台服务器、网络安全、代码等安全性、可靠性的升级加固建设,满足政务信息系统要求;在此基础上完成诉讼平台能力升级,实现更加普惠精准、全链路流程再造、全方位智能服务的互联网司法新模式。

\n\n", + "buyFile": "", + "buyUnitId": 4317, + "buyUnitName": "杭州互联网法院(杭州铁路运输法院)", + "createUnit": 4317, + "linkUser": "余红明", + "linkPhone": "0571-85000631", + "createUser": "dfda9f4cd533041cb88a8e7f4d57fbdb", + "createTime": "2024-03-26 11:17:04", + "updateUser": "dfda9f4cd533041cb88a8e7f4d57fbdb", + "updateTime": "2024-03-26 11:17:04", + "postStatus": "Y", + "viewCount": 31, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "2c32f111816b55c6e78bf8a5ffeee81f", + "buyItem": "市数据资源局深化信创项目", + "budgetMoney": 12645000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区解放东路18号市民中心A座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?categoryCode=ZcyAnnouncement&parentId=600007&articleId=bihvBCIgxbVse2CsrI746w==&utm=site.site-PC-36449.972-pc-websitegroup-zhejiang-mainSearchPage-front.1.020e5060e83411eebf49b7efa73a9eb4", + "fax": "", + "buyDesc": "\n\n\n\n\n

信息系统建设

\n\n", + "buyFile": "", + "buyUnitId": 4331, + "buyUnitName": "杭州市数据资源管理局", + "createUnit": 4331, + "linkUser": "程立", + "linkPhone": "15158865285", + "createUser": "616fb87692df6dea21d865a53aa10731", + "createTime": "2024-03-22 18:11:22", + "updateUser": "616fb87692df6dea21d865a53aa10731", + "updateTime": "2024-03-22 18:28:52", + "postStatus": "Y", + "viewCount": 63, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "bb6dfc5dd2c5e8ef5eaa911ae510a20f", + "buyItem": "杭州智慧电子政务云平台三", + "budgetMoney": 2612300.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区解放东路18号市民中心A座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=RgMG2O6pcr%2B3jxu6NHW%2BLQ%3D%3D&utm", + "fax": null, + "buyDesc": "\n\n\n\n\n

购买杭州智慧电子政务云12个月服务。主要包括:政务云基础服务(云服务器、云存储、数据库、中间件);提供网络(数据)安全服务,包括统一堡垒机、安全防护产品、蜜罐等服务。建设规模:云主机85台、云数据库23套、云存储5个。

\n\n", + "buyFile": null, + "buyUnitId": 4331, + "buyUnitName": "杭州市数据资源管理局", + "createUnit": 4331, + "linkUser": "沈琪骏", + "linkPhone": "0571-85250474", + "createUser": "616fb87692df6dea21d865a53aa10731", + "createTime": "2024-04-10 12:23:33", + "updateUser": "616fb87692df6dea21d865a53aa10731", + "updateTime": "2024-04-10 16:55:30", + "postStatus": "Y", + "viewCount": 1, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "d118d05b02eac464fbef8defed34c8df", + "buyItem": "杭州智慧电子政务云平台二", + "budgetMoney": 39975300.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区解放东路18号市民中心A座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=tqbsiTYSv9v1F9S5RrAd0Q%3D%3D&utm", + "fax": null, + "buyDesc": "\n\n\n\n\n

购买杭州智慧电子政务云12个月服务。主要包括:提供云主机、云存储、中间件、数据库、大数据、云安全等服务。提供政务云服务,以满足杭州市直机关单位的信息化系统部署需求;提供安全服务,包括敏感数据保护、EDR、统一堡垒机、蜜罐、云租户等保安全、云信息系统等保测评服务、信息系统密码测评服务、网络(数据)安全、安全驻场等安全服务。建设规模:至少满足云主机2380台、云数据库实例200台、云存储150台。

\n\n", + "buyFile": null, + "buyUnitId": 4331, + "buyUnitName": "杭州市数据资源管理局", + "createUnit": 4331, + "linkUser": "沈琪骏", + "linkPhone": "0571-85250474", + "createUser": "616fb87692df6dea21d865a53aa10731", + "createTime": "2024-04-10 12:23:14", + "updateUser": "616fb87692df6dea21d865a53aa10731", + "updateTime": "2024-04-10 16:55:06", + "postStatus": "Y", + "viewCount": 2, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "d7ed44959a0b810e939f370c27f80753", + "buyItem": "杭州智慧电子政务云平台一", + "budgetMoney": 84757500.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区解放东路18号市民中心A座", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=HqVGOFnNZou3YcTxok8iMA%3D%3D&utm", + "fax": "", + "buyDesc": "\n\n\n\n\n

购买杭州智慧电子政务云12个月服务。主要包括:提供云主机、云存储、中间件、数据库、大数据、云安全等服务。提供政务云服务,以满足杭州市直机关单位的信息化系统部署需求;提供安全服务,包括敏感数据保护、EDR、统一堡垒机、蜜罐、代码审计、云租户等保安全、云信息系统等保测评服务、信息系统密码测评服务、网络(数据)安全、安全驻场等安全服务。建设规模:至少满足云主机2380台、云数据库实例600台、云存储180台。

\n\n", + "buyFile": "", + "buyUnitId": 4331, + "buyUnitName": "杭州市数据资源管理局", + "createUnit": 4331, + "linkUser": "沈琪骏", + "linkPhone": "0571-85250474", + "createUser": "616fb87692df6dea21d865a53aa10731", + "createTime": "2024-04-10 12:22:20", + "updateUser": "616fb87692df6dea21d865a53aa10731", + "updateTime": "2024-04-10 16:54:32", + "postStatus": "Y", + "viewCount": 3, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "39ed371d217d00ef1962ed3c74c76037", + "buyItem": "杭州市退役军人事务局深化信创项目", + "budgetMoney": 2500000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区机场路271号崇军大厦", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=rI7UkS7flOc/r5mdE58tnw==&utm=app-announcement-front.6da13629.0.0.1c8fa160f70b11eebcaee5a90ab851ba", + "fax": "", + "buyDesc": "\n\n\n\n\n

在杭州市智慧老兵项目前三期建设基础上,整体项目完成信创改造升级。升级续建智慧老兵四期项目,包括针对军休服务、码上出行等系列应用系统进行扩建优化提升,增强服务属性、提升信息化管理和服务水平。

\n\n", + "buyFile": "", + "buyUnitId": 4333, + "buyUnitName": "杭州市退役军人事务局", + "createUnit": 4333, + "linkUser": "刘欣", + "linkPhone": "0571-85156697", + "createUser": "6e34b186278d009df761e39cc637ce3e", + "createTime": "2024-04-10 14:48:43", + "updateUser": "6e34b186278d009df761e39cc637ce3e", + "updateTime": "2024-04-10 17:13:10", + "postStatus": "Y", + "viewCount": 4, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "e7bed3dc9f2a1e11d14b5fedd0f9d59e", + "buyItem": "杭州市工商业联合会深化信创替代(2024)项目", + "budgetMoney": 1000000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上城区惠民路24号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=c+XjnshhS3Ti20z8abDcVQ==&utm=app-announcement-front.189f5f89.0.0.53dee990dc3111eeac38e1fcc7956d67", + "fax": "", + "buyDesc": "\n\n\n\n\n

1.完成横向、纵向数据归集,与市直部门系统、本单位原有系统、浙商在线系统对接,建立系统对接流程及数据推送机制,获取市工商联工作所需数据;
2.建设工商联五大类主题数据库;
3.完成工商联报表分析;
4.完成应用平台开发上线;
5.完成驾驶舱功能开发;
6.完成公众服务区适配迁移改造。

\n\n", + "buyFile": "", + "buyUnitId": 4471, + "buyUnitName": "杭州市工商联", + "createUnit": 4471, + "linkUser": "徐敏", + "linkPhone": "0571-87922935", + "createUser": "ddb05d3537834d78e9cf326d631a4eb8", + "createTime": "2024-03-07 11:25:04", + "updateUser": "ddb05d3537834d78e9cf326d631a4eb8", + "updateTime": "2024-03-07 11:25:04", + "postStatus": "Y", + "viewCount": 58, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "ea08046b1975061d678305e5d137527a", + "buyItem": "杭州市红十字会4月采购公告", + "budgetMoney": 1100000.000000, + "buyWay": "JZXTP", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "市民中心D座14楼", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?categoryCode=ZcyAnnouncement&parentId=600007&articleId=JAPir8jAHAkJdqHH8NczvA==&utm=site.site-PC-36449.972-pc-websitegroup-zhejiang-mainSearchPage-front.1.31fd8650dc5a11eeb611f59fa1170c90", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成杭州市红十字会数字一体化平台及杭红捐赠、杭红荟、杭红OA、驾驶舱等各项子系统应用升级,及通过综合集成方式对杭州市红十字会原有的政务信息系统及应用进行统一整合。

\n\n", + "buyFile": "", + "buyUnitId": 4473, + "buyUnitName": "杭州市红十字会", + "createUnit": 4473, + "linkUser": "张锋", + "linkPhone": "85255141", + "createUser": "f088d0ef7b1545bf901e20967c72d3f0", + "createTime": "2024-03-20 17:41:39", + "updateUser": "f088d0ef7b1545bf901e20967c72d3f0", + "updateTime": "2024-03-20 17:42:54", + "postStatus": "Y", + "viewCount": 38, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "662be5b52b2fc4b7eab8dde4a792b95a", + "buyItem": "杭州市供销社办公室深化信创(2024年)项目", + "budgetMoney": 105400.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "市民中心D座", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成生产、供销、信用等基础网络建设,构建数字化为农服务平台。

\n\n", + "buyFile": "", + "buyUnitId": 4474, + "buyUnitName": "杭州市供销社", + "createUnit": 4474, + "linkUser": "陶永兵", + "linkPhone": "85256104", + "createUser": "d3172bfe8b12777cc8128f9c519be1f2", + "createTime": "2024-03-08 13:59:21", + "updateUser": "d3172bfe8b12777cc8128f9c519be1f2", + "updateTime": "2024-03-08 14:02:38", + "postStatus": "Y", + "viewCount": 96, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "f2a65f5f2e5eeab6d594c9c7140546c6", + "buyItem": "市残联深化信创项目(2024)", + "budgetMoney": 4000000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "玉古路178号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

针对2021年-2023年市残联信息化项目做提升

\n\n", + "buyFile": "", + "buyUnitId": 4475, + "buyUnitName": "杭州市残疾人联合会", + "createUnit": 4475, + "linkUser": "朱晟", + "linkPhone": "15967123413", + "createUser": "d5080f67fa618bba098a5fe2cebac7dc", + "createTime": "2024-02-28 17:04:49", + "updateUser": "d5080f67fa618bba098a5fe2cebac7dc", + "updateTime": "2024-03-08 13:24:54", + "postStatus": "Y", + "viewCount": 124, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "63241af0144ff9080367c67687a37444", + "buyItem": "杭州市消防救援支队深化信创项目", + "budgetMoney": 3630000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市鲲鹏路363号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

通过综合集成和改造提升对杭州市消防救援支队的系统进行信创改造,建设119消防一体化平台。

\n\n", + "buyFile": "", + "buyUnitId": 6806, + "buyUnitName": "杭州市消防救援支队", + "createUnit": 6806, + "linkUser": "韩高工", + "linkPhone": "13957102086", + "createUser": "0f50bdcfd955074633fbe9333655a206", + "createTime": "2024-04-07 19:17:00", + "updateUser": "0f50bdcfd955074633fbe9333655a206", + "updateTime": "2024-04-07 19:28:48", + "postStatus": "Y", + "viewCount": 9, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "c7c916a4f7a7dbcfba3db753b2159c10", + "buyItem": "杭州市消防救援支队深化信创项目测评评估服务", + "budgetMoney": 110000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市鲲鹏路363号", + "linkAddress": null, + "fax": null, + "buyDesc": "\n\n\n\n\n

信息化项目测评评估服务

\n\n", + "buyFile": null, + "buyUnitId": 6806, + "buyUnitName": "杭州市消防救援支队", + "createUnit": 6806, + "linkUser": "韩高工", + "linkPhone": "13957102086", + "createUser": "0f50bdcfd955074633fbe9333655a206", + "createTime": "2024-04-07 19:28:27", + "updateUser": "0f50bdcfd955074633fbe9333655a206", + "updateTime": "2024-04-07 19:29:05", + "postStatus": "Y", + "viewCount": 10, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "df32db08ed746dbf7c7629bafb8e69cd", + "buyItem": "杭州市消防救援支队深化信创项目监理服务", + "budgetMoney": 50000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市鲲鹏路363号", + "linkAddress": null, + "fax": null, + "buyDesc": "\n\n\n\n\n

信息化项目监理服务

\n\n", + "buyFile": null, + "buyUnitId": 6806, + "buyUnitName": "杭州市消防救援支队", + "createUnit": 6806, + "linkUser": "韩高工", + "linkPhone": "13957102086", + "createUser": "0f50bdcfd955074633fbe9333655a206", + "createTime": "2024-04-07 19:28:41", + "updateUser": "0f50bdcfd955074633fbe9333655a206", + "updateTime": "2024-04-07 19:29:09", + "postStatus": "Y", + "viewCount": 19, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "8698ab414c4109cf86fe48fe7e3f5bab", + "buyItem": "杭州市消防救援支队深化信创项目咨询设计服务", + "budgetMoney": 10000.000000, + "buyWay": "QT", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市鲲鹏路363号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

项目可行性研究咨询服务

\n\n", + "buyFile": "", + "buyUnitId": 6806, + "buyUnitName": "杭州市消防救援支队", + "createUnit": 6806, + "linkUser": "韩高工", + "linkPhone": "13957102086", + "createUser": "0f50bdcfd955074633fbe9333655a206", + "createTime": "2024-04-07 19:28:34", + "updateUser": "0f50bdcfd955074633fbe9333655a206", + "updateTime": "2024-04-07 19:29:01", + "postStatus": "Y", + "viewCount": 10, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "85fcf5c733eb0a972fe83f20f11363bd", + "buyItem": "2024年拱墅区深化信创项目", + "budgetMoney": 28000000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市拱墅区台州路1号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=9aGKPE1aIY7noY5pOcccHQ%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.1.9c3f89d0f02511eebf320770e1cc8911", + "fax": "", + "buyDesc": "\n\n\n\n\n

本项目将对现有一批应用系统进行适配改造及采购配套软硬件设备和数据迁移、第三方测评等服务。

\n\n", + "buyFile": "", + "buyUnitId": 33, + "buyUnitName": "杭州市拱墅区数据资源管理局", + "createUnit": 33, + "linkUser": "柳锋", + "linkPhone": "19818538004", + "createUser": "a236dc356ce8d769e16c7f7c9f519201", + "createTime": "2024-04-07 16:17:31", + "updateUser": "a236dc356ce8d769e16c7f7c9f519201", + "updateTime": "2024-04-07 16:17:31", + "postStatus": "Y", + "viewCount": 21, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "4653169dbbdd2ec9b2a949a21c10ad2d", + "buyItem": "拱墅区行政事业单位办公台式电脑采购项目", + "budgetMoney": 22610000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市拱墅区台州路1号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

本项目将采购一批办公计算机设备及配套实施、运维、安全保障等服务。

\n\n", + "buyFile": "", + "buyUnitId": 4564, + "buyUnitName": "杭州市拱墅区机关事务中心", + "createUnit": 4564, + "linkUser": "朱礼杰", + "linkPhone": "89505251", + "createUser": "c71ca8815fefd929427cbe7bc12404d9", + "createTime": "2024-04-07 14:51:33", + "updateUser": "c71ca8815fefd929427cbe7bc12404d9", + "updateTime": "2024-04-07 14:51:33", + "postStatus": "Y", + "viewCount": 24, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "7313598bcdc7eadffcd8c0ebcb753d27", + "buyItem": "杭州市拱墅区教育系统台式计算机采购项目", + "budgetMoney": 8300000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市上塘路201号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=R7aCy9wIGHyEhe8tHoOSgA==&utm=app-announcement-front.189f5f89.0.0.444c1ab0f56e11ee8879f3e82d2a6d36", + "fax": "", + "buyDesc": "\n\n\n\n\n

拱墅区教育系统所需的符合安全可靠测评要求的台式计算机采购及配套实施、运维、安全保障服务采购。

\n\n", + "buyFile": "", + "buyUnitId": 4600, + "buyUnitName": "杭州市拱墅区教育发展服务中心", + "createUnit": 4600, + "linkUser": "朱老师", + "linkPhone": "0571-88259339", + "createUser": "7a758302d5212717e2ea2f38f96cae30", + "createTime": "2024-04-08 14:13:25", + "updateUser": "7a758302d5212717e2ea2f38f96cae30", + "updateTime": "2024-04-08 14:13:25", + "postStatus": "Y", + "viewCount": 26, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "036812d57aba0605e2af3e6dcb51368b", + "buyItem": "杭州高新区(滨江)卫生健康局卫生综管系统信创改造", + "budgetMoney": 430000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市滨江区钱塘春晓大厦6楼", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

完成卫生综合管理系统的优化升级

\n\n", + "buyFile": "", + "buyUnitId": 4690, + "buyUnitName": "杭州高新技术产业开发区(滨江)卫生健康局", + "createUnit": 4690, + "linkUser": "金楚杭", + "linkPhone": "0571-89521047", + "createUser": "cfea02118fd0ec44b7dbb578e010463d", + "createTime": "2024-03-21 15:53:07", + "updateUser": "cfea02118fd0ec44b7dbb578e010463d", + "updateTime": "2024-03-21 15:53:07", + "postStatus": "Y", + "viewCount": 30, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "34d74d896d8f231b13832641ef2a2491", + "buyItem": "杭州市公安局萧山区分局计算机设备(电脑)政府采购项目", + "budgetMoney": 1500000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市萧山区晨晖路1399号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=fqNbcNQfzA%2B%2FhEiA3klClw%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.2.ec52c730e5c511eebc4e45b9f698fc65", + "fax": "", + "buyDesc": "\n\n\n\n\n

采购台式电脑

\n\n", + "buyFile": "", + "buyUnitId": 36, + "buyUnitName": "杭州市公安局萧山区分局", + "createUnit": 36, + "linkUser": "卜凤荣", + "linkPhone": "0571-82378053", + "createUser": "63ef521cac8797594edd6ba64a988f3f", + "createTime": "2024-03-20 09:25:01", + "updateUser": "63ef521cac8797594edd6ba64a988f3f", + "updateTime": "2024-03-20 09:25:01", + "postStatus": "Y", + "viewCount": 52, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "05b2387217f46f0ad12712f472303d1b", + "buyItem": "杭州市萧山区人民检察院计算机设备政府采购项目", + "budgetMoney": 455000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市萧山区金城路668号", + "linkAddress": "https://zfcg.czt.zj.gov.cn/site/detail?parentId=600007&articleId=UG%2BvUpDvPtIRnwDlAvDC3w%3D%3D&utm=site.site-PC-37000.979-pc-websitegroup-zhejiang-secondPage-front.57.b8e1f4a0eb4911ee9850ff3df5e5bf16", + "fax": "", + "buyDesc": "\n\n\n\n\n

国产电脑、笔记本采购

\n\n", + "buyFile": "", + "buyUnitId": 36, + "buyUnitName": "萧山区人民检察院", + "createUnit": 36, + "linkUser": "严佳政", + "linkPhone": "18967185703", + "createUser": "63ef521cac8797594edd6ba64a988f3f", + "createTime": "2024-03-26 16:25:39", + "updateUser": "63ef521cac8797594edd6ba64a988f3f", + "updateTime": "2024-03-26 16:32:32", + "postStatus": "Y", + "viewCount": 89, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "82c332d912b23540aa3e2bb394e9a2b4", + "buyItem": "萧山区政务云信创改造服务采购项目", + "budgetMoney": 13150000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "萧山区科创中心C座5楼514", + "linkAddress": "http://www.xiaoshan.gov.cn/art/2024/2/2/art_1229417721_4237194.html", + "fax": "", + "buyDesc": "\n\n\n\n\n

为满足政务信息系统信创改造要求,对萧山区政务云平台进行信创改造,采购利旧改造服务及相关运维运营服务,预计本期项目完成30%政务云信创改造。

\n\n", + "buyFile": "", + "buyUnitId": 4725, + "buyUnitName": "杭州市萧山区数据资源管理局", + "createUnit": 4725, + "linkUser": "李冬", + "linkPhone": "15958023665", + "createUser": "dcac647bcc17b22da851ad73c2acb3cf", + "createTime": "2024-02-07 14:15:26", + "updateUser": "dcac647bcc17b22da851ad73c2acb3cf", + "updateTime": "2024-02-07 14:15:26", + "postStatus": "Y", + "viewCount": 178, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "cba1da343d50eb61cf70f58617b14f57", + "buyItem": "余杭区行政事业单位办公台式电脑及便携式电脑采购项目", + "budgetMoney": 7640000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市余杭区文一西路1500号", + "linkAddress": "", + "fax": "", + "buyDesc": "\n\n\n\n\n

采购搭载符合安全可靠测评要求的CPU和操作系统的台式电脑和便携式电脑。

\n\n", + "buyFile": "", + "buyUnitId": 37, + "buyUnitName": "杭州市余杭区机关事务服务中心", + "createUnit": 37, + "linkUser": "姚丽霞", + "linkPhone": "0571-89516720", + "createUser": "d9ec7f0a85a3aecfe99f7053d6187d4f", + "createTime": "2024-02-21 09:18:00", + "updateUser": "d9ec7f0a85a3aecfe99f7053d6187d4f", + "updateTime": "2024-02-21 09:18:00", + "postStatus": "Y", + "viewCount": 156, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "a165de0d023d2b560dc7bcba4bad2465", + "buyItem": "临平区行政事业单位办公电脑设备采购项目", + "budgetMoney": 6000000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "临平区临平街道西大街33号临平区人民政府", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=oUdZmkddp5UjRIF4fUtQOg==&utm=app-announcement-front.6da13629.0.0.5cc59380e75611ee851a8fcb96957a8d", + "fax": "", + "buyDesc": "", + "buyFile": "", + "buyUnitId": 38, + "buyUnitName": "临平区机关事务服务中心", + "createUnit": 38, + "linkUser": "李杰", + "linkPhone": "13675861942", + "createUser": "f7084edd8221c103a87c198d382824cb", + "createTime": "2024-03-26 11:25:18", + "updateUser": "f7084edd8221c103a87c198d382824cb", + "updateTime": "2024-03-26 15:56:16", + "postStatus": "Y", + "viewCount": 53, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + }, + { + "id": "8c4354110f40bf5bbfc974a6c6e748a1", + "buyItem": "杭州市临安区数字化信息技术创新新基建建设项目", + "budgetMoney": 25000000.000000, + "buyWay": "GKZB", + "bidOpenTime": null, + "endTime": null, + "detailAddress": "杭州市临安区数据资源管理局", + "linkAddress": "https://zfcg.czt.zj.gov.cn/luban/detail?parentId=600007&articleId=2n9K8ouLlwjlAfmCE56WKw==&utm=app-announcement-front.7cd522fb.0.0.cfc2bd10e04711eeb8dde1dbb882a1aa", + "fax": "", + "buyDesc": "\n\n\n\n\n

网络、安全及配套软件等建设

\n\n", + "buyFile": "", + "buyUnitId": 5127, + "buyUnitName": "杭州市临安区数据资源管理局", + "createUnit": 5127, + "linkUser": "邹云", + "linkPhone": "0571-89540745", + "createUser": "e394c5c723267f5611c0073ac6d93406", + "createTime": "2024-03-12 17:03:49", + "updateUser": "e394c5c723267f5611c0073ac6d93406", + "updateTime": "2024-03-12 17:07:59", + "postStatus": "Y", + "viewCount": 107, + "buyScope": "Y", + "type": "CGYS", + "buyDeviceType": null, + "buyDeviceTypeList": null, + "source": null + } + ] +} \ No newline at end of file diff --git a/hz-pm-api/src/main/resources/response/ret-purchase-method.json b/hz-pm-api/src/main/resources/response/ret-purchase-method.json new file mode 100644 index 0000000..ef1ad4a --- /dev/null +++ b/hz-pm-api/src/main/resources/response/ret-purchase-method.json @@ -0,0 +1,101 @@ +{ + + "code": 200, + + "msg": "success", + + "data": [ + + { + + "id": "035931f1fdb698cdf0d4cb7a04154a34", + + "dictSort": 0, + + "dictLabel": "竞争性切磋", + + "dictValue": "JZXQC", + + "dictType": "buy_way", + + "dictId": "6f578f6f717a5d5bb0bf63a9b0870239", + + "isDefault": "N", + + "status": "0", + + "remark": null, + + "createTime": "2024-01-3021:21:40", + + "updateTime": null, + + "createBy": "7b40b2e2d396930d4f8567fd3d47a39e", + + "updateBy": "" + + }, + + { + + "id": "1b66784a1af14660186d5e3e40dec96b", + + "dictSort": 0, + + "dictLabel": "询价", + + "dictValue": "XJ", + + "dictType": "buy_way", + + "dictId": "6f578f6f717a5d5bb0bf63a9b0870239", + + "isDefault": "N", + + "status": "0", + + "remark": null, + + "createTime": "2024-01-3021:22:04", + + "updateTime": null, + + "createBy": "7b40b2e2d396930d4f8567fd3d47a39e", + + "updateBy": "" + + }, + + { + + "id": "fc5d7c2cb97b15db54e3f6265df9e5f1", + + "dictSort": 0, + + "dictLabel": "邀请招标", + + "dictValue": "YQZB", + + "dictType": "buy_way", + + "dictId": "6f578f6f717a5d5bb0bf63a9b0870239", + + "isDefault": "N", + + "status": "0", + + "remark": null, + + "createTime": "2024-01-3021:18:39", + + "updateTime": null, + + "createBy": "7b40b2e2d396930d4f8567fd3d47a39e", + + "updateBy": "" + + } + + ] + +} \ No newline at end of file