ifnluxdb模块代码重构

This commit is contained in:
hzj
2024-01-24 15:06:56 +08:00
parent 8b43be0345
commit 4fbf73af40
5 changed files with 68 additions and 81 deletions

View File

@@ -0,0 +1,24 @@
package com.njcn.influx.pojo.bo;
import lombok.Data;
/**
* Description:
* Date: 2024/1/24 9:05【需求编号】
*
* @author clam
* @version V1.0.0
*/
@Data
public class CommonQueryParam {
private String lineId;
private String tableName;
private String columnName;
private String phasic;
private String startTime;
private String endTime;
private String dataType;
private String process;
private String clDid;
}