You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
631 B
Java
39 lines
631 B
Java
package com.ipsos.base.domain;
|
|
|
|
import java.io.Serializable;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class MyPlugin implements Serializable {
|
|
private Long pluginId;
|
|
|
|
private String name;
|
|
|
|
private String store;
|
|
|
|
private Boolean free;
|
|
|
|
private Integer cost;
|
|
|
|
private String category;
|
|
|
|
private String descript;
|
|
|
|
private String version;
|
|
|
|
private Integer installType;
|
|
|
|
private String creator;
|
|
|
|
private Boolean loadMybatis;
|
|
|
|
private Long releaseTime;
|
|
|
|
private Long installTime;
|
|
|
|
private String moduleName;
|
|
|
|
private String icon;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
} |