Commit fc3740dd authored by yanzg's avatar yanzg

压缩视频

parent 58518950
......@@ -45,13 +45,13 @@ public class PrinterPagerItemData extends BaseVo {
* 宽度
*/
@JSONField(name = "Width")
public double width;
public Object width;
/**
* 高度
*/
@JSONField(name = "Height")
public double height;
public Object height;
/**
* 字体名称
......@@ -145,19 +145,19 @@ public class PrinterPagerItemData extends BaseVo {
this.top = top;
}
public double getWidth() {
public Object getWidth() {
return width;
}
public void setWidth(double width) {
public void setWidth(Object width) {
this.width = width;
}
public double getHeight() {
public Object getHeight() {
return height;
}
public void setHeight(double height) {
public void setHeight(Object height) {
this.height = height;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment