fix(周报):历史周报中个人/项目组工作项列表加时间区间入参
This commit is contained in:
parent
cf4c55877c
commit
c41974784b
|
@ -40,6 +40,12 @@ public class PmsPersonalWeeklyIssuesSearchVo {
|
|||
@ApiModelProperty(value = "分页数")
|
||||
private String nextWeekLimit;
|
||||
|
||||
@ApiModelProperty(value = "周工作项统计开始时间")
|
||||
private String weeklyBeginDate;
|
||||
|
||||
@ApiModelProperty(value = "周工作项统计结束时间")
|
||||
private String weeklyEndDate;
|
||||
|
||||
public void setKeyword(String keyword) {
|
||||
this.keyword = ServletUtils.urlDecode(keyword);
|
||||
}
|
||||
|
|
|
@ -93,6 +93,12 @@ public class PmsProjectIssuesSearchVo {
|
|||
@ApiModelProperty(value = "与用户ID相关(gitlinkUserId)")
|
||||
private String participatorId;
|
||||
|
||||
@ApiModelProperty(value = "周工作项统计开始时间")
|
||||
private String weeklyBeginDate;
|
||||
|
||||
@ApiModelProperty(value = "周工作项统计结束时间")
|
||||
private String weeklyEndDate;
|
||||
|
||||
public void setKeyword(String keyword) {
|
||||
this.keyword = ServletUtils.urlDecode(keyword);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue