Commit 02e6375c authored by wangxl's avatar wangxl

111

parent ac8d99e2
......@@ -382,6 +382,8 @@ public class ComProjectDTO extends BaseDTO {
private List<ComProjectBudgetDTO> budget;
/** 项目课颖设置表 */
private List<ComProjectSubDTO> projectSubList;
/** 单位科研项目及资金管理制度表 */
private List<ComProjectManagementRuleDTO> managementRuleList;
/** 设备仪器经费表 */
private List<ComProjectEquipmentDTO> equipments;
/** 附件列表 */
......
......@@ -47,4 +47,14 @@ public class ComProjectManagementRuleDTO extends BaseDTO {
/** 附件Id */
@ApiModelProperty(value = "附件Id", position = 4 )
private String fileId;
/** 附件Id */
@ApiModelProperty(value = "附件Id", position = 1 )
@Length(max=36, message = "附件Id不能大于36")
private String downloadId;
/** 附件名 */
@ApiModelProperty(value = "附件名", position = 6)
private String fileName;
/** URL */
@ApiModelProperty(value = "URL", position = 7)
private String downloadUrl;
}
\ No newline at end of file
......@@ -58,4 +58,14 @@ public class ComProjectSubDTO extends BaseDTO {
/** 附件Id */
@ApiModelProperty(value = "附件Id", position = 4 )
private String fileId;
/** 附件Id */
@ApiModelProperty(value = "附件Id", position = 1 )
@Length(max=36, message = "附件Id不能大于36")
private String downloadId;
/** 附件名 */
@ApiModelProperty(value = "附件名", position = 6)
private String fileName;
/** URL */
@ApiModelProperty(value = "URL", position = 7)
private String downloadUrl;
}
\ No newline at end of file
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