视频上传

This commit is contained in:
zhangqinbin
2023-12-27 09:44:50 +08:00
parent f43f806e46
commit 63d2af849e
2 changed files with 38 additions and 6 deletions

View File

@ -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,

View File

@ -24,11 +24,11 @@ import java.time.LocalDateTime;
@ApiModel @ApiModel
public class BidElecEvalVideUploadVo extends BasePageRequest implements Serializable { public class BidElecEvalVideUploadVo extends BasePageRequest implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 主键 * 主键
*/ */
@ApiModelProperty(value = "主键") @ApiModelProperty(value = "主键")
private String id; private String id;
@ -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;
/** /**
* 评标区域地址 * 评标区域地址