Commit 6c1d7f07 authored by wangxl's avatar wangxl

1

parent 591a74a6
......@@ -91,4 +91,7 @@ public class ComProjectAssign extends BaseEntity {
/** 评审类别(A通过(80分及以上)、B返回修改(60分及以上)、C不通过(60分以下)) */
@ApiModelProperty(value = "评审类别", position = 11)
private Integer evaluationType;
/** 是否展示(0 不展示 1 展示) */
@ApiModelProperty(value = "是否展示(0 不展示 1 展示)", position = 11)
private Integer isShow;
}
......@@ -94,7 +94,9 @@ public class ComProjectAssignDTO extends BaseDTO {
/** 评审类别(A通过(80分及以上)、B返回修改(60分及以上)、C不通过(60分以下)) */
@ApiModelProperty(value = "评审类别", position = 11)
private Integer evaluationType;
/** 是否展示(0 不展示 1 展示) */
@ApiModelProperty(value = "是否展示(0 不展示 1 展示)", position = 11)
private Integer isShow;
/** 项目总经费(万元) */
@ApiModelProperty(value = "项目总经费(万元)", position = 39)
private BigDecimal totalFunding;
......
......@@ -92,6 +92,9 @@ public class ComProjectAssignQueryVO extends PaginationVO {
/** 评审类别(A通过(80分及以上)、B返回修改(60分及以上)、C不通过(60分以下)) */
@ApiModelProperty(value = "评审类别", position = 11)
private Integer evaluationType;
/** 是否展示(0 不展示 1 展示) */
@ApiModelProperty(value = "是否展示(0 不展示 1 展示)", position = 11)
private Integer isShow;
/** 证件号 */
@ExcelProperty("证件号")
......
......@@ -46,6 +46,7 @@ public class ComProjectAssignController extends BaseController<ComProjectAssignS
@RequestMapping("/getAuditListByPage")
public ResponseDataModel<Pagination<ComProjectAssignDTO>> getAuditListByPage(@Validated ComProjectAssignQueryVO vo, BindingResult bindingResult) {
vo.setExpertId(SecurityUserHolder.getExpertId());
vo.setIsShow(1);
return getPaginationResponseDataModel(vo);
}
......
......@@ -86,7 +86,9 @@ public class ComProjectAssignServiceImpl extends BaseServiceImpl<ComProjectAssig
if (Objects.nonNull(vo.getAppUnitName())) {
criteria.like("i.unit_name", vo.getAppUnitName());
}
if (Objects.nonNull(vo.getIsShow())) {
criteria.eq("a.is_show", vo.getIsShow());
}
}
@Override
......
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