代码升级
This commit is contained in:
@ -8,13 +8,20 @@ import io.swagger.annotations.ApiModelProperty;
|
|||||||
public class ExportParame {
|
public class ExportParame {
|
||||||
|
|
||||||
private String assessRoomId;
|
private String assessRoomId;
|
||||||
|
|
||||||
private String reviewTurnId;
|
private String reviewTurnId;
|
||||||
|
|
||||||
|
private String reviewTurnSort;
|
||||||
|
|
||||||
private String projectId;
|
private String projectId;
|
||||||
@ApiModelProperty(value = "标段id")
|
@ApiModelProperty(value = "标段id")
|
||||||
private String sectionId;
|
private String sectionId;
|
||||||
|
@ApiModelProperty(value="类型id")
|
||||||
private String reviewType;
|
private String reviewType;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public String getAssessRoomId() {
|
public String getAssessRoomId() {
|
||||||
return assessRoomId;
|
return assessRoomId;
|
||||||
}
|
}
|
||||||
@ -54,4 +61,12 @@ public class ExportParame {
|
|||||||
public void setReviewType(String reviewType) {
|
public void setReviewType(String reviewType) {
|
||||||
this.reviewType = reviewType;
|
this.reviewType = reviewType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getReviewTurnSort() {
|
||||||
|
return reviewTurnSort;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReviewTurnSort(String reviewTurnSort) {
|
||||||
|
this.reviewTurnSort = reviewTurnSort;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -36,7 +36,6 @@ public interface ExportServiceOpen {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@ApiOperation("查询数据")
|
@ApiOperation("查询数据")
|
||||||
// @GetMapping("/v1/bizbidopenroom/list")
|
|
||||||
@PostMapping ("/v1/bizbidopenroom/getPostlist")
|
@PostMapping ("/v1/bizbidopenroom/getPostlist")
|
||||||
BaseResponse<List<BizBidOpenroom>> list(@ApiParam(value = "查询对象数据", required = false) BizBidOpenroom bizBidOpenroom);
|
BaseResponse<List<BizBidOpenroom>> list(@ApiParam(value = "查询对象数据", required = false) BizBidOpenroom bizBidOpenroom);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user