Vo修改
All checks were successful
类变更检测 / class-change-check (push) Successful in 4m0s

This commit is contained in:
2026-06-05 18:25:31 +08:00
parent 13e067f2e2
commit c5bc52911b
2 changed files with 13 additions and 6 deletions

View File

@@ -24,11 +24,18 @@ jobs:
exit 1
fi
- name: 设置 JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- name: 安装 JDK 和 Maven
run: |
if ! command -v java >/dev/null 2>&1; then
apt-get update -qq
apt-get install -y openjdk-11-jdk
fi
if ! command -v mvn >/dev/null 2>&1; then
apt-get update -qq
apt-get install -y maven
fi
echo "Java: $(java -version 2>&1 | head -1)"
echo "Maven: $(mvn -version 2>&1 | head -1)"
- name: 编译检测工具
run: mvn -q -f .gitea/class-checker/pom.xml package -DskipTests

View File

@@ -19,7 +19,7 @@ public class ContractInfoVO {
private String contractName;
@Schema(description ="手机号")
private Integer mytelePhone;
private String mytelePhone;
@Schema(description ="文件")
private String fileJson;