---优化docker镜像打包

This commit is contained in:
2026-01-23 09:54:38 +08:00
parent f2b874fceb
commit b9aa05e397
11 changed files with 261 additions and 80 deletions

View File

@ -0,0 +1,19 @@
package com.xjrsoft;
import lombok.Data;
@Data
public class TJarInfo {
private String name; //jar名称
private boolean custom;//开发jar包需要强制更新
public TJarInfo(String name, boolean custom) {
super();
this.name = name;
this.custom = custom;
}
}