@@ -14,21 +14,30 @@ import lombok.EqualsAndHashCode;
public class SysOssBo extends BaseEntity {
/**
+ * ossId
+ */
+ private Long ossId;
+
+ /**
* 文件名
*/
private String fileName;
* 原名
private String originalName;
* 文件后缀名
private String fileSuffix;
* URL地址
private String url;
* 服务商
@@ -236,6 +236,7 @@ public class SysDeptServiceImpl implements ISysDeptService, DeptService {
* @param dept 部门信息
* @return 结果
+ @CacheEvict(cacheNames = CacheNames.SYS_DEPT, key = "#dept.deptId")
@Override
public int updateDept(SysDept dept) {
SysDept newParentDept = baseMapper.selectById(dept.getParentId());