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.
36 lines
754 B
Java
36 lines
754 B
Java
package com.glxp.api.entity.thrsys;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ThrSystemDetailEntity {
|
|
|
|
private Integer id;
|
|
private String key;
|
|
private String value;
|
|
private Boolean enabled;
|
|
private Boolean itrCache;
|
|
private String guideUrl;
|
|
private String thridUrl;
|
|
private String remark;
|
|
private String thirdSysFk;
|
|
private String name;
|
|
private Integer fromType;
|
|
private String localAction;
|
|
private String thirdAction;
|
|
|
|
/**
|
|
* 请求时间,单位:分钟
|
|
*/
|
|
private Integer time;
|
|
|
|
public String getValue() {
|
|
if (value == null)
|
|
return null;
|
|
else if (thridUrl != null)
|
|
return thridUrl + value;
|
|
else
|
|
return value;
|
|
}
|
|
}
|