package model; /** * @author duh * @create 2018/7/17 15:00 * @email duh@elab-plus.com **/ public class Template { protected String name; //x坐标 protected int x; //y坐标 protected int y; //旋转角度 protected int scale; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } public int getScale() { return scale; } public void setScale(int scale) { this.scale = scale; } }