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