6 changed files with 156 additions and 21 deletions
@ -0,0 +1,116 @@ |
|||||||
|
package com.biutag.supervision.pojo.vo; |
||||||
|
|
||||||
|
import com.biutag.supervision.pojo.dto.flow.VerifyData; |
||||||
|
import com.biutag.supervision.pojo.entity.ModelGeneration; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class ModelVo { |
||||||
|
|
||||||
|
private Integer id; |
||||||
|
|
||||||
|
private String modelName; |
||||||
|
|
||||||
|
private Integer classId; |
||||||
|
|
||||||
|
private String icon; |
||||||
|
|
||||||
|
private String iconColor; |
||||||
|
|
||||||
|
private String remarks; |
||||||
|
|
||||||
|
// 分发方式
|
||||||
|
private String distributionMethod; |
||||||
|
|
||||||
|
// 分发周期
|
||||||
|
private String distributionCycle; |
||||||
|
|
||||||
|
// 分发周期 周
|
||||||
|
private String distributionCycleDayOfWeek; |
||||||
|
|
||||||
|
// 分发周期 时间
|
||||||
|
private String distributionCycleTime; |
||||||
|
|
||||||
|
// 分发周期,cron 表达式
|
||||||
|
private String distributionCycleExpression; |
||||||
|
|
||||||
|
// 限时
|
||||||
|
private String timeLimit; |
||||||
|
|
||||||
|
private Integer maxSignDuration; |
||||||
|
|
||||||
|
private Integer maxHandleDuration; |
||||||
|
|
||||||
|
private Integer maxExtensionDuration; |
||||||
|
|
||||||
|
private String distributionFlow; |
||||||
|
|
||||||
|
private String approvalFlow; |
||||||
|
|
||||||
|
|
||||||
|
private String createDepartId; |
||||||
|
|
||||||
|
private String createDepartName; |
||||||
|
|
||||||
|
// 建模方式
|
||||||
|
private String modelingMethod; |
||||||
|
|
||||||
|
// 模型数据类型
|
||||||
|
private String modelDataType; |
||||||
|
|
||||||
|
private String modelSql; |
||||||
|
|
||||||
|
private Integer riskScoreRuleId; |
||||||
|
|
||||||
|
// 预警问题处置
|
||||||
|
private String warningHandling; |
||||||
|
|
||||||
|
private String handleDepartId; |
||||||
|
|
||||||
|
// 业务类型
|
||||||
|
private String businessTypeCode; |
||||||
|
|
||||||
|
// 警种
|
||||||
|
private String policeType; |
||||||
|
|
||||||
|
// 模型类型
|
||||||
|
private String modelType; |
||||||
|
|
||||||
|
// 模型结果表名
|
||||||
|
private String clueTableName; |
||||||
|
|
||||||
|
// 同步时间字段名
|
||||||
|
private String clueTimeFieldName; |
||||||
|
|
||||||
|
// 同步唯一字段名
|
||||||
|
private String clueUniqueFieldName; |
||||||
|
|
||||||
|
// 同步周期 day-每天 week-每周
|
||||||
|
private String clueCycle; |
||||||
|
|
||||||
|
// 同步周期 周 MON TUE WED THU FRI SAT SUN
|
||||||
|
private String clueCycleDayOfWeek; |
||||||
|
|
||||||
|
// 同步时间
|
||||||
|
private String clueCycleTime; |
||||||
|
|
||||||
|
private List<String> involveProblem = new ArrayList<>(); |
||||||
|
|
||||||
|
// 问题类型
|
||||||
|
private List<VerifyData.Problem> problems = new ArrayList<>(); |
||||||
|
|
||||||
|
// 预警内容生成器
|
||||||
|
private String thingDescGeneration; |
||||||
|
|
||||||
|
// 结果字段映射
|
||||||
|
private ModelGeneration modelGeneration; |
||||||
|
|
||||||
|
// 同步机构映射
|
||||||
|
private String clueDepartSource; |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue