-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
199 changed files
with
748 additions
and
1,030 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...e/dal/converter/DisplayMenuConverter.java → ...n/dao/converter/DisplayMenuConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...l/converter/DisplayTemplateConverter.java → ...o/converter/DisplayTemplateConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...verter/IntegrationGeneratedConverter.java → ...verter/IntegrationGeneratedConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...onverter/IntegrationProductConverter.java → ...onverter/IntegrationProductConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...converter/MarketplacePluginConverter.java → ...converter/MarketplacePluginConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
...onverter/MarketplaceProductConverter.java → ...onverter/MarketplaceProductConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ome/dal/converter/MetaTableConverter.java → ...mon/dao/converter/MetaTableConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ome/dal/converter/TenantOpsConverter.java → ...mon/dao/converter/TenantOpsConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...dal/model/dto/CustomPluginPeriodType.java → ...mon/dao/emuns/CustomPluginPeriodType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...home/dal/model/dto/CloudMonitorRange.java → .../common/dao/entity/CloudMonitorRange.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ight/server/home/dal/model/Dashboard.java → ...t/server/common/dao/entity/Dashboard.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ht/server/home/dal/model/DisplayMenu.java → ...server/common/dao/entity/DisplayMenu.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...erver/home/dal/model/DisplayTemplate.java → ...er/common/dao/entity/DisplayTemplate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...insight/server/home/dal/model/Folder.java → ...ight/server/common/dao/entity/Folder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...on/common-dao/src/main/java/io/holoinsight/server/common/dao/entity/GaeaCollectRange.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright 2022 Holoinsight Project Authors. Licensed under Apache-2.0. | ||
*/ | ||
|
||
package io.holoinsight.server.common.dao.entity; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* @author jsy1001de | ||
* @version 1.0: GaeaCollectRange.java, Date: 2024-06-14 Time: 14:20 | ||
*/ | ||
|
||
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class GaeaCollectRange implements Serializable { | ||
private static final long serialVersionUID = -2140563386879600142L; | ||
|
||
public String type; | ||
public CloudMonitorRange cloudmonitor; | ||
|
||
public boolean isEqual(GaeaCollectRange originalRecord) { | ||
if ((originalRecord == null) | ||
|| (this.cloudmonitor == null && originalRecord.cloudmonitor != null) | ||
|| (this.cloudmonitor != null && originalRecord.cloudmonitor == null)) { | ||
return false; | ||
} | ||
return this.cloudmonitor.isEqual(originalRecord.cloudmonitor); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
.../home/dal/model/IntegrationGenerated.java → ...mmon/dao/entity/IntegrationGenerated.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ver/home/dal/model/IntegrationPlugin.java → .../common/dao/entity/IntegrationPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...er/home/dal/model/IntegrationProduct.java → ...common/dao/entity/IntegrationProduct.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ver/home/dal/model/MarketplacePlugin.java → .../common/dao/entity/MarketplacePlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...er/home/dal/model/MarketplaceProduct.java → ...common/dao/entity/MarketplaceProduct.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 1 addition & 8 deletions
9
...er/home/dal/model/TraceAgentConfProp.java → ...common/dao/entity/TraceAgentConfProp.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,21 @@ | ||
/* | ||
* Copyright 2022 Holoinsight Project Authors. Licensed under Apache-2.0. | ||
*/ | ||
package io.holoinsight.server.home.dal.model; | ||
package io.holoinsight.server.common.dao.entity; | ||
|
||
import com.baomidou.mybatisplus.annotation.TableName; | ||
import lombok.Data; | ||
|
||
import javax.persistence.Column; | ||
|
||
@Data | ||
@TableName("trace_agent_configuration_properties") | ||
public class TraceAgentConfProp { | ||
private String type; | ||
private String language; | ||
@Column(name = "prop_key") | ||
private String propKey; | ||
private String name; | ||
@Column(name = "c_name") | ||
private String cName; | ||
private String description; | ||
@Column(name = "c_description") | ||
private String cDescription; | ||
@Column(name = "check_expression") | ||
private String checkExpression; | ||
|
||
|
||
} |
Oops, something went wrong.