视频上传
This commit is contained in:
@ -221,7 +221,13 @@
|
|||||||
tp.ebp_parent_project_number as project_num,
|
tp.ebp_parent_project_number as project_num,
|
||||||
bs.bid_sect_name as section_name,
|
bs.bid_sect_name as section_name,
|
||||||
a.real_open_time as real_start_date,
|
a.real_open_time as real_start_date,
|
||||||
a.end_time as real_end_date
|
a.end_time as real_end_date,
|
||||||
|
a.room_name as roomName,
|
||||||
|
a.room_type as roomType,
|
||||||
|
a.room_sort as roomSort,
|
||||||
|
a.review_mark as reviewMark,
|
||||||
|
a.review_sort as reviewSort,
|
||||||
|
a.status as roomStatus
|
||||||
FROM
|
FROM
|
||||||
biz_assess_room a,
|
biz_assess_room a,
|
||||||
biz_project_section bs,
|
biz_project_section bs,
|
||||||
|
@ -77,7 +77,33 @@ public class BidElecEvalVideUploadVo extends BasePageRequest implements Serializ
|
|||||||
* 评标室名称
|
* 评标室名称
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "评标室名称")
|
@ApiModelProperty(value = "评标室名称")
|
||||||
private String areaName;
|
private String roomName;
|
||||||
|
/**
|
||||||
|
* 评审室类型:1-资审,2-评标
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "评审室类型:1-资审,2-评标")
|
||||||
|
private String roomType;
|
||||||
|
/**
|
||||||
|
* 评审室排序
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "评审室排序")
|
||||||
|
private String roomSort;
|
||||||
|
/**
|
||||||
|
* 重新评审标识:0-正常评审(默认),1-重新评审
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "重新评审标识:0-正常评审(默认),1-重新评审")
|
||||||
|
private String reviewMark;
|
||||||
|
/**
|
||||||
|
* 重新评审排序
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "重新评审排序")
|
||||||
|
private String reviewSort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态:0-初始状态,1-已保存,2-已开启评审室,3-已关闭评审室
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "状态:0-初始状态,1-已保存,2-已开启评审室,3-已关闭评审室")
|
||||||
|
private String roomStatus;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 评标区域地址
|
* 评标区域地址
|
||||||
|
Reference in New Issue
Block a user