Files
geg-gas-pcitc/itc-pcitc-demo/itc-pcitc-demo-service/src/test/java/com/xjrsoft/TJarInfo.java
2026-01-23 09:54:38 +08:00

20 lines
283 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}
}