diff --git a/business-service-api/src/main/java/com/ho/business/entity/StationRemoteControl.java b/business-service-api/src/main/java/com/ho/business/entity/StationRemoteControl.java index 29fc94f..ffe239f 100644 --- a/business-service-api/src/main/java/com/ho/business/entity/StationRemoteControl.java +++ b/business-service-api/src/main/java/com/ho/business/entity/StationRemoteControl.java @@ -32,6 +32,9 @@ public class StationRemoteControl implements Serializable { @ApiModelProperty(value = "内网ip") private String intranetIp; + @ApiModelProperty(value = "ems页面类型") + private Integer type; + @JsonFormat(pattern = CommonConstant.DATE) @ApiModelProperty(value = "创建时间") private Date createTime; diff --git a/business-service-dao/src/main/resources/mapper/StationRemoteControlMapper.xml b/business-service-dao/src/main/resources/mapper/StationRemoteControlMapper.xml index 800a0bb..482cecd 100644 --- a/business-service-dao/src/main/resources/mapper/StationRemoteControlMapper.xml +++ b/business-service-dao/src/main/resources/mapper/StationRemoteControlMapper.xml @@ -16,6 +16,7 @@ user_name, password, intranet_ip, + type, create_time, update_time, @@ -27,6 +28,7 @@ #{entity.userName,jdbcType=VARCHAR}, #{entity.password,jdbcType=VARCHAR}, #{entity.intranetIp,jdbcType=VARCHAR}, + #{entity.type,jdbcType=INTEGER}, #{entity.createTime,jdbcType=TIMESTAMP}, #{entity.updateTime,jdbcType=TIMESTAMP}, @@ -49,6 +51,9 @@ intranet_ip = #{entity.intranetIp,jdbcType=VARCHAR}, + + type = #{entity.type,jdbcType=VARCHAR}, + update_time = #{entity.updateTime,jdbcType=VARCHAR},