ci:将公开(内部公开)改为 内部公开
This commit is contained in:
@@ -14,7 +14,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 定时任务,扫描全部报告的 保密到期日期。
|
* 定时任务,扫描全部报告的 保密到期日期。
|
||||||
* 当日日期 = 保密到期日期,则报告涉密等级自动改为 “公开(内部公开)”
|
* 当日日期 = 保密到期日期,则报告涉密等级自动改为 “内部公开”
|
||||||
* @Author: bpx
|
* @Author: bpx
|
||||||
* @Date:2022/4/8;
|
* @Date:2022/4/8;
|
||||||
*/
|
*/
|
||||||
@@ -37,7 +37,7 @@ public class secrecyDDLTimer {
|
|||||||
List<ReportEntity> entity = reportDao.selectDDL();
|
List<ReportEntity> entity = reportDao.selectDDL();
|
||||||
if (CollectionUtils.isNotEmpty(entity)){
|
if (CollectionUtils.isNotEmpty(entity)){
|
||||||
entity.forEach(e -> {
|
entity.forEach(e -> {
|
||||||
e.setConfidentialLevel("公开(内部公开)");
|
e.setConfidentialLevel("内部公开");
|
||||||
});
|
});
|
||||||
iReportService.updateBatchById(entity);
|
iReportService.updateBatchById(entity);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,9 +14,9 @@ public class ReportConstants {
|
|||||||
public static final String FILE_EXTENSIONS_PDF = "pdf";
|
public static final String FILE_EXTENSIONS_PDF = "pdf";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 公开(内部公开)
|
* 内部公开内部公开
|
||||||
*/
|
*/
|
||||||
public static final String PUBLIC_REPORT = "公开(内部公开)";
|
public static final String PUBLIC_REPORT = "内部公开";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 不涉及用户隐私
|
* 不涉及用户隐私
|
||||||
|
|||||||
Reference in New Issue
Block a user