修改网络监测字段

main
杜函宇 12 months ago
parent 7178e8e0d1
commit 873f8fd6de

@ -68,17 +68,17 @@ public class TcWljg extends BaseEntity {
private String attackType; private String attackType;
/** /**
* IP * IP
*/ */
@Excel(name = "攻击源IP区域") @Excel(name = "攻击源IP国家")
@ApiModelProperty(value = "攻击源IP区域") @ApiModelProperty(value = "攻击源IP国家")
private String attackIpArea; private String attackIpArea;
/** /**
* * IP
*/ */
@Excel(name = "受攻击目标类型") @Excel(name = "攻击源IP省份")
@ApiModelProperty(value = "受攻击目标类型") @ApiModelProperty(value = "攻击源IP省份")
private String type; private String type;
/** /**
@ -89,38 +89,38 @@ public class TcWljg extends BaseEntity {
private String sAttackIp; private String sAttackIp;
/** /**
* IP * IP
*/ */
@ApiModelProperty(value = "受攻击IP区域") @ApiModelProperty(value = "受攻击IP国家")
@Excel(name = "受攻击IP区域") @Excel(name = "受攻击IP国家")
private String sAttackIpArea; private String sAttackIpArea;
/** /**
* *
*/ */
@ApiModelProperty(value = "网站安全等级") @ApiModelProperty(value = "攻击等级")
@Excel(name = "网站安全等级") @Excel(name = "攻击等级")
private String netLevel; private String netLevel;
/** /**
* *
*/ */
@ApiModelProperty(value = "所属单位") @ApiModelProperty(value = "攻击状态")
@Excel(name = "所属单位") @Excel(name = "攻击状态")
private String affUnit; private String affUnit;
/** // /**
* // * 联系电话
*/ // */
@ApiModelProperty(value = "联系电话") // @ApiModelProperty(value = "联系电话")
@Excel(name = "联系电话") // @Excel(name = "联系电话")
private String linkTel; // private String linkTel;
//
/** // /**
* // * 联系人
*/ // */
@ApiModelProperty(value = "联系人") // @ApiModelProperty(value = "联系人")
@Excel(name = "联系人") // @Excel(name = "联系人")
private String linkMan; // private String linkMan;
} }

@ -17,8 +17,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="sAttackIpArea" column="s_attack_ip_area" /> <result property="sAttackIpArea" column="s_attack_ip_area" />
<result property="netLevel" column="net_level" /> <result property="netLevel" column="net_level" />
<result property="affUnit" column="aff_unit" /> <result property="affUnit" column="aff_unit" />
<result property="linkTel" column="link_tel" /> <!-- <result property="linkTel" column="link_tel" />-->
<result property="linkMan" column="link_man" /> <!-- <result property="linkMan" column="link_man" />-->
<result property="createBy" column="create_by" /> <result property="createBy" column="create_by" />
<result property="createTime" column="create_time" /> <result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" /> <result property="updateBy" column="update_by" />
@ -27,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectTcWljgVo"> <sql id="selectTcWljgVo">
select id, area_id, isStatus, start_time, attacky_ip, attack_type, attack_ip_area, type, s_attack_ip, s_attack_ip_area, net_level, aff_unit, link_tel, link_man, create_by, create_time, update_by, update_time, remark from tc_wljg select id, area_id, isStatus, start_time, attacky_ip, attack_type, attack_ip_area, type, s_attack_ip, s_attack_ip_area, net_level, aff_unit, create_by, create_time, update_by, update_time, remark from tc_wljg
</sql> </sql>
<select id="selectTcWljgList" parameterType="TcWljg" resultMap="TcWljgResult"> <select id="selectTcWljgList" parameterType="TcWljg" resultMap="TcWljgResult">
@ -47,8 +47,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="sAttackIpArea != null and sAttackIpArea != ''">and s_attack_ip_area = #{sAttackIpArea}</if> <if test="sAttackIpArea != null and sAttackIpArea != ''">and s_attack_ip_area = #{sAttackIpArea}</if>
<if test="netLevel != null and netLevel != ''">and net_level = #{netLevel}</if> <if test="netLevel != null and netLevel != ''">and net_level = #{netLevel}</if>
<if test="affUnit != null and affUnit != ''">and aff_unit = #{affUnit}</if> <if test="affUnit != null and affUnit != ''">and aff_unit = #{affUnit}</if>
<if test="linkTel != null and linkTel != ''">and link_tel = #{linkTel}</if> <!-- <if test="linkTel != null and linkTel != ''">and link_tel = #{linkTel}</if>-->
<if test="linkMan != null and linkMan != ''">and link_man = #{linkMan}</if> <!-- <if test="linkMan != null and linkMan != ''">and link_man = #{linkMan}</if>-->
<if test="createBy != null and createBy != ''">and create_by = #{createBy}</if> <if test="createBy != null and createBy != ''">and create_by = #{createBy}</if>
<if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''"> <if test="params.beginCreateTime != null and params.beginCreateTime != '' and params.endCreateTime != null and params.endCreateTime != ''">
and create_time between #{params.beginCreateTime} and #{params.endCreateTime} and create_time between #{params.beginCreateTime} and #{params.endCreateTime}
@ -82,8 +82,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="sAttackIpArea != null">s_attack_ip_area,</if> <if test="sAttackIpArea != null">s_attack_ip_area,</if>
<if test="netLevel != null">net_level,</if> <if test="netLevel != null">net_level,</if>
<if test="affUnit != null">aff_unit,</if> <if test="affUnit != null">aff_unit,</if>
<if test="linkTel != null">link_tel,</if> <!-- <if test="linkTel != null">link_tel,</if>-->
<if test="linkMan != null">link_man,</if> <!-- <if test="linkMan != null">link_man,</if>-->
<if test="createBy != null">create_by,</if> <if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if> <if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if> <if test="updateBy != null">update_by,</if>
@ -102,8 +102,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="sAttackIpArea != null">#{sAttackIpArea},</if> <if test="sAttackIpArea != null">#{sAttackIpArea},</if>
<if test="netLevel != null">#{netLevel},</if> <if test="netLevel != null">#{netLevel},</if>
<if test="affUnit != null">#{affUnit},</if> <if test="affUnit != null">#{affUnit},</if>
<if test="linkTel != null">#{linkTel},</if> <!-- <if test="linkTel != null">#{linkTel},</if>-->
<if test="linkMan != null">#{linkMan},</if> <!-- <if test="linkMan != null">#{linkMan},</if>-->
<if test="createBy != null">#{createBy},</if> <if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if> <if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if> <if test="updateBy != null">#{updateBy},</if>
@ -126,8 +126,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="sAttackIpArea != null">s_attack_ip_area = #{sAttackIpArea},</if> <if test="sAttackIpArea != null">s_attack_ip_area = #{sAttackIpArea},</if>
<if test="netLevel != null">net_level = #{netLevel},</if> <if test="netLevel != null">net_level = #{netLevel},</if>
<if test="affUnit != null">aff_unit = #{affUnit},</if> <if test="affUnit != null">aff_unit = #{affUnit},</if>
<if test="linkTel != null">link_tel = #{linkTel},</if> <!-- <if test="linkTel != null">link_tel = #{linkTel},</if>-->
<if test="linkMan != null">link_man = #{linkMan},</if> <!-- <if test="linkMan != null">link_man = #{linkMan},</if>-->
<if test="createBy != null">create_by = #{createBy},</if> <if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if> <if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if> <if test="updateBy != null">update_by = #{updateBy},</if>

Loading…
Cancel
Save