package com.glxp.api.res.thrsys; import lombok.Data; @Data public class BasicThirdSysResponse { public BasicThirdSysResponse() { } public BasicThirdSysResponse(String thirdId, String thirdName) { this.thirdId = thirdId; this.thirdName = thirdName; } private String thirdId; private String thirdName; }