Commit cecab810 authored by ZWT's avatar ZWT

feat(零碳): 长庆

1.对接第三方接口,接入第三方数据,完成Token接口验证,抽取公用方法封装调用工具类;
2.对接第三方接口,完成获取日耗电日产液等信息接口调用,创建数据表,同时生成对应代码,开发定时任务及对外接口,完成第三方数据接入及系统展示功能,添加线上接口文档并完成接口及定时任务冒烟测试;
3.对接第三方接口,完成获取有功功率数据信息接口调用,创建数据表,同时生成对应代码,开发定时任务及对外接口,完成第三方数据接入及系统展示功能,添加线上接口文档并完成接口及定时任务冒烟测试;
4.对接第三方接口,完成获取甘特图数据接口调用,创建数据表,同时生成对应代码,开发定时任务及对外接口,完成第三方数据接入及系统展示功能,添加线上接口文档并完成接口及定时任务冒烟测试;
5.对接第三方接口,完成本日累计数据接口调用,创建数据表,同时生成对应代码,开发定时任务及对外接口,完成第三方数据接入及系统展示功能,添加线上接口文档并完成接口及定时任务冒烟测试;
6.对接第三方接口,完成光伏发电量接口调用,创建数据表,同时生成对应代码,开发定时任务及对外接口,完成第三方数据接入及系统展示功能,添加线上接口文档并完成接口及定时任务冒烟测试;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 6587a5f4
...@@ -42,7 +42,7 @@ public class ThirdCurrentWellConditionEnt implements Serializable { ...@@ -42,7 +42,7 @@ public class ThirdCurrentWellConditionEnt implements Serializable {
@XText("开井时长(h)") @XText("开井时长(h)")
@TableField @TableField
private Integer runningTime; private BigDecimal runningTime;
@XText("来源系统") @XText("来源系统")
@TableField @TableField
......
...@@ -44,7 +44,7 @@ public class ThirdCurrentWellConditionView implements Serializable { ...@@ -44,7 +44,7 @@ public class ThirdCurrentWellConditionView implements Serializable {
@XText("开井时长(h)") @XText("开井时长(h)")
@TableField @TableField
private Integer runningTime; private BigDecimal runningTime;
@XText("来源系统") @XText("来源系统")
@TableField @TableField
......
...@@ -29,6 +29,6 @@ public class GetThirdActivePowerViewOutput { ...@@ -29,6 +29,6 @@ public class GetThirdActivePowerViewOutput {
private BigDecimal photovoltaicPower; private BigDecimal photovoltaicPower;
@XText("电表有功功率(KW)") @XText("电表有功功率(KW)")
@JSONField(name = "PJ_P") @JSONField(name = "pJ_P")
private BigDecimal meterPower; private BigDecimal meterPower;
} }
...@@ -33,5 +33,5 @@ public class GetThirdCurrentWellConditionViewOutput { ...@@ -33,5 +33,5 @@ public class GetThirdCurrentWellConditionViewOutput {
@XText("开井时长(h)") @XText("开井时长(h)")
@JSONField(name = "starthours") @JSONField(name = "starthours")
private Integer runningTime; private BigDecimal runningTime;
} }
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<result column="next_time" property="nextTime" jdbcType="DATE"/> <result column="next_time" property="nextTime" jdbcType="DATE"/>
<result column="well_status" property="wellStatus" jdbcType="VARCHAR"/> <result column="well_status" property="wellStatus" jdbcType="VARCHAR"/>
<result column="cumulative_production" property="cumulativeProduction" jdbcType="DECIMAL"/> <result column="cumulative_production" property="cumulativeProduction" jdbcType="DECIMAL"/>
<result column="running_time" property="runningTime" jdbcType="INTEGER"/> <result column="running_time" property="runningTime" jdbcType="DECIMAL"/>
<result column="system_source" property="systemSource" jdbcType="VARCHAR"/> <result column="system_source" property="systemSource" jdbcType="VARCHAR"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment