import lombok.ToString;
@ToString(callSuper = true) // 使用 @ToString(callSuper = true)
@Data
public class 子类 extends 父类 {
private String startTime;
private String endTime;
}
子类 c = new 子类(); System.out.print(c.toString());

import lombok.ToString;
@ToString(callSuper = true) // 使用 @ToString(callSuper = true)
@Data
public class 子类 extends 父类 {
private String startTime;
private String endTime;
}
子类 c = new 子类(); System.out.print(c.toString());