diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdPropertyNet.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdPropertyNet.java index 1d35496..f26f377 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdPropertyNet.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TdPropertyNet.java @@ -60,6 +60,9 @@ public class TdPropertyNet extends BaseEntity @Excel(name = "部门") private String part; + + private Long deptId; + public void setNetId(String netId) { this.netId = netId; @@ -160,6 +163,14 @@ public class TdPropertyNet extends BaseEntity return part; } + public Long getDeptId() { + return deptId; + } + + public void setDeptId(Long deptId) { + this.deptId = deptId; + } + @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) @@ -174,6 +185,7 @@ public class TdPropertyNet extends BaseEntity .append("terminalNum", getTerminalNum()) .append("netRecoverdepart", getNetRecoverdepart()) .append("part", getPart()) + .append("deptId", getDeptId()) .toString(); } } diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java index 388a790..713202e 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyNetServiceImpl.java @@ -2,6 +2,7 @@ package com.ruoyi.system.service.impl; import java.util.List; +import com.ruoyi.common.annotation.DataScope; import com.ruoyi.system.domain.count.PropertyManagerDTO; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -40,6 +41,7 @@ public class TdPropertyNetServiceImpl implements ITdPropertyNetService * @param tdPropertyNet 涉密网络设备 * @return 涉密网络设备 */ + @DataScope(deptAlias = "d") @Override public List selectTdPropertyNetList(TdPropertyNet tdPropertyNet) { diff --git a/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml index b39c0ed..b60c41c 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdPropertyNetMapper.xml @@ -16,10 +16,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + - select net_id, net_depart, net_user, net_date, framework, area, province, net_miji, terminal_num, net_recoverdepart, part from td_property_net + select net_id, net_depart, net_user, net_date, framework, area, province, net_miji, terminal_num, net_recoverdepart, part,dept_id from td_property_net d @@ -57,6 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" terminal_num, net_recoverdepart, part, + dept_id, #{netId}, @@ -70,6 +74,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{terminalNum}, #{netRecoverdepart}, #{part}, + #{deptId}, @@ -86,6 +91,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" terminal_num = #{terminalNum}, net_recoverdepart = #{netRecoverdepart}, part = #{part}, + dept_id = #{deptId}, where net_id = #{netId}