Files
geg-gas-pcitc/itc-pcitc-demo/itc-pcitc-demo-service/src/test/java/com/xjrsoft/TJarInfo.java

20 lines
283 B
Java
Raw Normal View History

2026-01-23 09:54:38 +08:00
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;
}
}