远程控制修改

This commit is contained in:
2026-01-27 13:59:17 +08:00
parent f417e661ce
commit a0841d75d7
2 changed files with 8 additions and 0 deletions

View File

@ -32,6 +32,9 @@ public class StationRemoteControl implements Serializable {
@ApiModelProperty(value = "内网ip") @ApiModelProperty(value = "内网ip")
private String intranetIp; private String intranetIp;
@ApiModelProperty(value = "ems页面类型")
private Integer type;
@JsonFormat(pattern = CommonConstant.DATE) @JsonFormat(pattern = CommonConstant.DATE)
@ApiModelProperty(value = "创建时间") @ApiModelProperty(value = "创建时间")
private Date createTime; private Date createTime;

View File

@ -16,6 +16,7 @@
<if test="entity.userName != null">user_name,</if> <if test="entity.userName != null">user_name,</if>
<if test="entity.password != null">password,</if> <if test="entity.password != null">password,</if>
<if test="entity.intranetIp != null">intranet_ip,</if> <if test="entity.intranetIp != null">intranet_ip,</if>
<if test="entity.type != null">type,</if>
<if test="entity.createTime != null">create_time,</if> <if test="entity.createTime != null">create_time,</if>
<if test="entity.updateTime != null">update_time,</if> <if test="entity.updateTime != null">update_time,</if>
</trim> </trim>
@ -27,6 +28,7 @@
<if test="entity.userName != null">#{entity.userName,jdbcType=VARCHAR},</if> <if test="entity.userName != null">#{entity.userName,jdbcType=VARCHAR},</if>
<if test="entity.password != null">#{entity.password,jdbcType=VARCHAR},</if> <if test="entity.password != null">#{entity.password,jdbcType=VARCHAR},</if>
<if test="entity.intranetIp != null">#{entity.intranetIp,jdbcType=VARCHAR},</if> <if test="entity.intranetIp != null">#{entity.intranetIp,jdbcType=VARCHAR},</if>
<if test="entity.type != null">#{entity.type,jdbcType=INTEGER},</if>
<if test="entity.createTime != null">#{entity.createTime,jdbcType=TIMESTAMP},</if> <if test="entity.createTime != null">#{entity.createTime,jdbcType=TIMESTAMP},</if>
<if test="entity.updateTime != null">#{entity.updateTime,jdbcType=TIMESTAMP},</if> <if test="entity.updateTime != null">#{entity.updateTime,jdbcType=TIMESTAMP},</if>
</trim> </trim>
@ -49,6 +51,9 @@
<if test="entity.intranetIp != null"> <if test="entity.intranetIp != null">
intranet_ip = #{entity.intranetIp,jdbcType=VARCHAR}, intranet_ip = #{entity.intranetIp,jdbcType=VARCHAR},
</if> </if>
<if test="entity.type != null">
type = #{entity.type,jdbcType=VARCHAR},
</if>
<if test="entity.updateTime != null"> <if test="entity.updateTime != null">
update_time = #{entity.updateTime,jdbcType=VARCHAR}, update_time = #{entity.updateTime,jdbcType=VARCHAR},
</if> </if>