Skip to content

Commit

Permalink
add Tianye (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangmin9 authored Apr 7, 2024
1 parent 4992dda commit 84e0ed4
Show file tree
Hide file tree
Showing 198 changed files with 64,097 additions and 0 deletions.
26 changes: 26 additions & 0 deletions m78-all/Tianye/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
*.bak
build_info.properties
.classpath
dependency-reduced-pom.xml
*.diff
.DS_Store
.java-version
*.db

# IDEA
.idea/
*.iml
logs/
log/

# eclipse (Scala IDE)
.project
.settings/
.tags*
target/
test-output/
nohup*
*.log
*.swp
*.pyc
.sbtserver*
2 changes: 2 additions & 0 deletions m78-all/Tianye/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Tianye
jvm参数:--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.math=ALL-UNNAMED --add-opens=java.base/sun.reflect=ALL-UNNAMED --add-exports=java.base/sun.reflect.annotation=ALL-UNNAMED --add-exports=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED --enable-preview
41 changes: 41 additions & 0 deletions m78-all/Tianye/Tianye-api/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<parent>
<artifactId>Tianye</artifactId>
<groupId>run.mone.local.docean</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>Tianye-api</artifactId>

<dependencies>

<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.21.8</version>
</dependency>

</dependencies>


<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
<fork>true</fork>
<verbose>true</verbose>
<encoding>UTF-8</encoding>
</configuration>
</plugin>

</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package run.mone.local.docean.api.service;


public interface DubboTestService {
String test();
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package run.mone.local.docean.api.service;

/**
* @author wmin
* @date 2024/3/4
*/
public interface TYFlowService {
Integer execFlow(String botReqStr);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package run.mone.local.docean.dto;

import java.io.Serializable;
import java.util.List;

public class ExecCommandResult implements Serializable {


private Integer resultCode;
private List<String> resultData;
public Integer getResultCode() {
return resultCode;
}

public void setResultCode(Integer resultCode) {
this.resultCode = resultCode;
}

public void setResultData(List<String> resultData) {
this.resultData = resultData;
}

public List<String> getResultData() {
return resultData;
}

}
Loading

0 comments on commit 84e0ed4

Please sign in to comment.