20 lines
283 B
Java
20 lines
283 B
Java
|
|
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;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|