package com.ots.project.exam.dto; import lombok.Getter; import lombok.Setter; @Getter @Setter public class WordParam { private double x; private double y; private double picWidth; private double picHeight; private String content; private int topPosition; private boolean isMove = true; public WordParam() { this.x = 0; this.y = 0; this.picWidth = 20; this.picHeight = 20; this.topPosition = 0; } public WordParam(double x, double y, double picWidth, double picHeight, String content) { this.x = x; this.y = y; this.picWidth = picWidth; this.picHeight = picHeight; this.content = content; } }