Commit f0ff946b authored by 徐俊's avatar 徐俊

xujun

parent f0df4d63
No related merge requests found
......@@ -9,6 +9,7 @@ import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
import java.util.Date;
import java.util.List;
/**
* 附件表DTO
......@@ -45,4 +46,6 @@ public class ComDownloadDTO extends BaseDTO {
/** 附件说明 */
@ApiModelProperty(value = "附件说明", position = 3)
private String fileExplain;
/** 批量审核Id */
List<String> idList;
}
\ No newline at end of file
......@@ -60,4 +60,13 @@ public class ComDownloadController extends BaseController<ComDownloadService, Co
return ResponseDataModel.ok(page);
}
@ApiOperation(value = "申报书文件word转pdf", httpMethod = "GET", notes = "申报书文件word转pdf")
@GetMapping
@RequestMapping("/getAllListByPage")
@PreAuthorize("hasAnyRole('ADMIN')")
public ResponseDataModel<String> fileConvert(@Validated ComDownloadQueryVO vo, BindingResult bindingResult) {
return ResponseDataModel.ok("");
}
}
\ No newline at end of file
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