Commit e2bb2e8d authored by yanzg's avatar yanzg

压缩视频

parent d6e38f0f
...@@ -41,6 +41,28 @@ public class ExportColumn { ...@@ -41,6 +41,28 @@ public class ExportColumn {
@ApiModelProperty(notes = "宽度") @ApiModelProperty(notes = "宽度")
private short width; private short width;
public ExportColumn() {
}
public ExportColumn(String title, String name) {
this.title = title;
this.name = name;
}
public ExportColumn(String title, String name, short width) {
this.title = title;
this.name = name;
this.width = width;
}
public ExportColumn(String title, String name, boolean merger, String megerGroup, short width) {
this.title = title;
this.name = name;
this.merger = merger;
this.megerGroup = megerGroup;
this.width = width;
}
public String getTitle() { public String getTitle() {
return title; return title;
} }
......
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