Commit 77be5e26 authored by wangxl's avatar wangxl

1

parent 7e746e50
......@@ -88,6 +88,9 @@ public class ComProjectAssign extends BaseEntity {
/** 是否支持立项(0 不支持 1 支持) */
@ApiModelProperty(value = "审核状态(0 不支持 1 支持)", position = 11)
private Integer supportState;
/** 不推荐原因 */
@ApiModelProperty(value = "不推荐原因", position = 11)
private String noSupportReason;
/** 评审类别(A通过(80分及以上)、B返回修改(60分及以上)、C不通过(60分以下)) */
@ApiModelProperty(value = "评审类别", position = 11)
private Integer evaluationType;
......
......@@ -91,6 +91,9 @@ public class ComProjectAssignDTO extends BaseDTO {
/** 是否支持立项(0 不支持 1 支持) */
@ApiModelProperty(value = "审核状态(0 不支持 1 支持)", position = 11)
private Integer supportState;
/** 不推荐原因 */
@ApiModelProperty(value = "不推荐原因", position = 11)
private String noSupportReason;
/** 评审类别(A通过(80分及以上)、B返回修改(60分及以上)、C不通过(60分以下)) */
@ApiModelProperty(value = "评审类别", position = 11)
private Integer evaluationType;
......
......@@ -89,6 +89,9 @@ public class ComProjectAssignQueryVO extends PaginationVO {
/** 是否支持立项(0 不支持 1 支持) */
@ApiModelProperty(value = "审核状态(0 不支持 1 支持)", position = 11)
private Integer supportState;
/** 不推荐原因 */
@ApiModelProperty(value = "不推荐原因", position = 11)
private String noSupportReason;
/** 评审类别(A通过(80分及以上)、B返回修改(60分及以上)、C不通过(60分以下)) */
@ApiModelProperty(value = "评审类别", position = 11)
private Integer evaluationType;
......
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