You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
546 B
Java
39 lines
546 B
Java
6 months ago
|
package com.supervision.police.dto;
|
||
|
|
||
|
import cn.hutool.core.lang.Pair;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 值域计算范围
|
||
|
*/
|
||
|
@Data
|
||
|
public class ValueCalculateScopeDTO {
|
||
|
|
||
|
/**
|
||
|
* 值
|
||
|
*/
|
||
|
private String value;
|
||
|
|
||
|
/**
|
||
|
* 值类型
|
||
|
*/
|
||
|
private String valueType;
|
||
|
|
||
|
/**
|
||
|
* 值类型描述
|
||
|
*/
|
||
|
private String valueTypeDesc;
|
||
|
|
||
|
/**
|
||
|
* 操作符
|
||
|
*/
|
||
|
private List<String> operatorList;
|
||
|
|
||
|
/**
|
||
|
* 聚合函数
|
||
|
*/
|
||
|
private List<Pair<String,String>> aggregateList;
|
||
|
}
|