# acgs **Repository Path**: thin-rain/acgs ## Basic Information - **Project Name**: acgs - **Description**: 船舶 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: guoxy_develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-15 - **Last Updated**: 2026-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # acgs 绿色船舶智能监控云平台 ## 模块说明 ### 管理端 负责对船舶平台的数据进行展示和管理的功能,包括船舶基础信息、历史数据查询等功能。 对应模块名称为 `acg-admin`。 ### 接收端 负责与船舶平台的发动机以及 SCR EGC 终端通信的服务端,负责建立连接,接收采集数据。 对应模块名称为 `acg-receive`。 ### 大屏展示 用于将各个不同用户端的数据进行分析统计,最终展示到大屏的功能模块。 对应模块名称为 `acg-screen`。 ### 数据库设计及脚本 对应目录 `acg-db` ## 开发说明 ### 1. 克隆代码到本地 ```sh $ git clone https://git.dev.tencent.com/sog/acgs.git $ cd acgs ``` ### 2. 建立本地开发分支 ```sh $ git checkout -b fitz_develop ``` 分支名称尽量采用 `个人名称英文简称` + `_develop` 的方式来命名 ### 3. 本地调整代码进行测试提交后进行推送 ``` sh $ git add . $ git commit -m 'Feature: 调整开发说明' # 推送所有代码到服务中心 $ git push --all ``` > 如果需要将本地 `git push` 的提交为默认的自己的开发分支,则可以通过 `$ git push --set-upstream origin fitz_develop` 来设置好即可。 ### 4. 登录到 `dev.tencent.com` 平台,找到对应的项目,选择进入 `代码->版本对比` 菜单 ![](acg-db/dev_git_compare.jpg) ![](acg-db/compare_req.jpg) 注意选择`评审者` 以及 `关联资源` ;`关联资源` 可以新建自己的具体任务。 ### 4. 点击新建合并请求,完成合并请求的处理,等待评审人员进行代码审查合并。