Commit 5dfead3c authored by wangxl's avatar wangxl

77

parent 1475ac3a
......@@ -91,4 +91,7 @@ public class ComProject extends BaseEntity {
/** 平均分 */
@ApiModelProperty(value = "平均分", position = 4)
private BigDecimal averageScore;
/** 项目完成状态 */
@ApiModelProperty(value = "项目完成状态", position = 38 )
private String completeStatus;
}
\ No newline at end of file
......@@ -202,6 +202,14 @@ public class ComProjectDTO extends BaseDTO {
@Length(max=65535, message = "备注不能大于65535")
private String remark;
/** 项目完成状态 */
@ApiModelProperty(value = "项目完成状态", position = 38 )
private String completeStatus;
/** 项目步骤 */
@ApiModelProperty(value = "项目步骤", position = 38 )
private Integer step;
/** 项目组成员_总人数 */
@ApiModelProperty(value = "项目组成员_总人数", position = 17 )
private Integer memCount;
......
......@@ -92,6 +92,10 @@ public class ComProjectQueryVO extends PaginationVO{
@ApiModelProperty(value = "平均分", position = 4)
private BigDecimal averageScore;
/** 项目完成状态 */
@ApiModelProperty(value = "项目完成状态", position = 38 )
private String completeStatus;
/** 项目Id */
@ApiModelProperty(value="项目Id")
@Length(max=36, message = "Id不能大于36")
......
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