feat:密品权限

new-exam
wangxy 5 months ago
parent 2dda0ad325
commit de3008f934

@ -4,6 +4,7 @@ import java.util.Collections;
import java.util.List;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.ruoyi.common.utils.ShiroUtils;
import com.ruoyi.common.utils.uuid.Seq;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.service.ITdPropertyInfoService;
@ -104,6 +105,7 @@ public class TdPropertyManagerController extends BaseController {
@ResponseBody
public AjaxResult addSave(TdPropertyManager tdPropertyManager) {
tdPropertyManager.setUseId("Property_" + Seq.getId(Seq.commSeqType));
tdPropertyManager.setDeptId(ShiroUtils.getSysUser().getDeptId());
return toAjax(tdPropertyManagerService.insertTdPropertyManager(tdPropertyManager));
}
@ -126,6 +128,7 @@ public class TdPropertyManagerController extends BaseController {
@PostMapping("/edit")
@ResponseBody
public AjaxResult editSave(TdPropertyManager tdPropertyManager) {
tdPropertyManager.setDeptId(ShiroUtils.getSysUser().getDeptId());
return toAjax(tdPropertyManagerService.updateTdPropertyManager(tdPropertyManager));
}

@ -71,6 +71,8 @@ public class TdPropertyManager extends BaseEntity
@Excel(name = "密品类型" ,readConverterExp = "1=涉密信息设备,2=涉密设备")
private String secretsType;
private Long deptId;
public void setUseId(String useId)
@ -190,6 +192,14 @@ public class TdPropertyManager extends BaseEntity
this.secretsType = secretsType;
}
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)
@ -206,6 +216,7 @@ public class TdPropertyManager extends BaseEntity
.append("areaId", getAreaId())
.append("propertyNum", getPropertyNum())
.append("secretsType", getSecretsType())
.append("deptId", getDeptId())
.toString();
}
}

@ -4,6 +4,7 @@ import java.util.Date;
import java.util.List;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.common.annotation.DataScope;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.domain.count.PropertyManagerDTO;
import com.ruoyi.system.mapper.TdPropertyInfoMapper;
@ -45,6 +46,7 @@ public class TdPropertyManagerServiceImpl extends ServiceImpl<TdPropertyManagerM
* @param tdPropertyManager
* @return
*/
@DataScope(deptAlias = "d")
@Override
public List<TdPropertyManager> selectTdPropertyManagerList(TdPropertyManager tdPropertyManager)
{

@ -18,10 +18,11 @@
<result property="areaId" column="area_id" />
<result property="propertyNum" column="property_num" />
<result property="secretsType" column="secrets_type" />
<result property="deptId" column="dept_id" />
</resultMap>
<sql id="selectTdPropertyManagerVo">
select use_id, use_depart, user_name, use_date, framework_id, recover_depart, recover_name, recover_date, shemichengdu, part, area_id, property_num,secrets_type from td_property_manager
select use_id, use_depart, user_name, use_date, framework_id, recover_depart, recover_name, recover_date, shemichengdu, part, area_id, property_num,secrets_type,dept_id from td_property_manager d
</sql>
<select id="selectTdPropertyManagerList" parameterType="TdPropertyManager" resultMap="TdPropertyManagerResult">
@ -40,6 +41,8 @@
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
<if test="propertyNum != null "> and property_num = #{propertyNum}</if>
<if test="secretsType != null and secretsType != '' " > and secrets_type = #{secretsType}</if>
<!-- 数据范围过滤 -->
${params.dataScope}
</where>
</select>
@ -64,6 +67,7 @@
<if test="areaId != null">area_id,</if>
<if test="propertyNum != null">property_num,</if>
<if test="secretsType != null">secrets_type,</if>
<if test="deptId != null">dept_id,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="useId != null">#{useId},</if>
@ -79,6 +83,7 @@
<if test="areaId != null">#{areaId},</if>
<if test="propertyNum != null">#{propertyNum},</if>
<if test="secretsType != null">#{secretsType},</if>
<if test="deptId != null">#{deptId},</if>
</trim>
</insert>
@ -97,6 +102,7 @@
<if test="areaId != null">area_id = #{areaId},</if>
<if test="propertyNum != null">property_num = #{propertyNum},</if>
<if test="secretsType != null">secrets_type = #{secretsType},</if>
<if test="deptId != null">dept_id = #{deptId},</if>
</trim>
where use_id = #{useId}
</update>

Loading…
Cancel
Save