Commit 6017bf17 by chenweisong

更新

parent a240198c
...@@ -19,7 +19,7 @@ public class ExcelService { ...@@ -19,7 +19,7 @@ public class ExcelService {
public Excel save(ExcelForm form) { public Excel save(ExcelForm form) {
Excel excel = new Excel(); Excel excel = new Excel();
excel.setName(form.getName()); excel.setName(form.getName());
excel.setDataAt(form.getDataAt()); excel.setDataAt(1);
excel.setConfig(form.getConfig()); excel.setConfig(form.getConfig());
excel.setRemark(form.getRemark()); excel.setRemark(form.getRemark());
excel.setJob(form.getJob()); excel.setJob(form.getJob());
......
...@@ -31,7 +31,7 @@ public class ExcelForm { ...@@ -31,7 +31,7 @@ public class ExcelForm {
@ApiModelProperty(name = "remark", value = "表格描述") @ApiModelProperty(name = "remark", value = "表格描述")
private String remark; private String remark;
@ApiModelProperty(name = "dataAt", value = "数据开始", required = true, example = "1") @ApiModelProperty(name = "dataAt", value = "数据开始", example = "1")
private Integer dataAt; private Integer dataAt;
@JsonIgnore @JsonIgnore
......
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