Merge pull request '历史周报中个人/项目组工作项列表加时间区间入参' (#913) from wanjia9506/microservices:master into master
This commit is contained in:
commit
6dfe866c93
36
README.md
36
README.md
|
@ -0,0 +1,36 @@
|
||||||
|
## 系统模块
|
||||||
|
|
||||||
|
~~~
|
||||||
|
com.microservices
|
||||||
|
├── microservices-ui // 前端框架
|
||||||
|
├── microservices-gateway // 网关模块
|
||||||
|
├── microservices-auth // 认证中心
|
||||||
|
├── microservices-api // 接口模块
|
||||||
|
│ └── microservices-api-system // 系统接口
|
||||||
|
├── microservices-common // 通用模块
|
||||||
|
│ └── microservices-common-async // 异步线程池配置
|
||||||
|
│ └── microservices-common-core // 核心模块
|
||||||
|
│ └── microservices-common-datascope // 权限范围
|
||||||
|
│ └── microservices-common-datasource // 多数据源
|
||||||
|
│ └── microservices-common-httpClient // http调用
|
||||||
|
│ └── microservices-common-log // 日志记录
|
||||||
|
│ └── microservices-common-redis // 缓存服务
|
||||||
|
│ └── microservices-common-seata // seata分布式事务
|
||||||
|
│ └── microservices-common-security // 安全模块
|
||||||
|
│ └── microservices-common-swagger // 系统接口
|
||||||
|
├── microservices-modules // 业务模块
|
||||||
|
│ └── microservices-cms // 内容管理模块
|
||||||
|
│ └── microservices-dms // 数据管理体系模块
|
||||||
|
│ └── microservices-dss // 数据统计系统模块
|
||||||
|
│ └── microservices-file // 文件服务
|
||||||
|
│ └── microservices-gen // 代码生成
|
||||||
|
│ └── microservices-job // 定时任务
|
||||||
|
│ └── microservices-pms // 项目管理系统模块
|
||||||
|
│ └── microservices-system // 系统模块
|
||||||
|
│ └── microservices-wiki // Wiki模块
|
||||||
|
│ └── microservices-zone // 特色专区系统模块
|
||||||
|
├── microservices-visual // 图形化管理模块
|
||||||
|
│ └── microservices-visual-monitor // 监控中心
|
||||||
|
├──pom.xml // 公共依赖
|
||||||
|
~~~
|
||||||
|
|
|
@ -40,6 +40,12 @@ public class PmsPersonalWeeklyIssuesSearchVo {
|
||||||
@ApiModelProperty(value = "分页数")
|
@ApiModelProperty(value = "分页数")
|
||||||
private String nextWeekLimit;
|
private String nextWeekLimit;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "周工作项统计开始时间")
|
||||||
|
private String weeklyBeginDate;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "周工作项统计结束时间")
|
||||||
|
private String weeklyEndDate;
|
||||||
|
|
||||||
public void setKeyword(String keyword) {
|
public void setKeyword(String keyword) {
|
||||||
this.keyword = ServletUtils.urlDecode(keyword);
|
this.keyword = ServletUtils.urlDecode(keyword);
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,6 +93,12 @@ public class PmsProjectIssuesSearchVo {
|
||||||
@ApiModelProperty(value = "与用户ID相关(gitlinkUserId)")
|
@ApiModelProperty(value = "与用户ID相关(gitlinkUserId)")
|
||||||
private String participatorId;
|
private String participatorId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "周工作项统计开始时间")
|
||||||
|
private String weeklyBeginDate;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "周工作项统计结束时间")
|
||||||
|
private String weeklyEndDate;
|
||||||
|
|
||||||
public void setKeyword(String keyword) {
|
public void setKeyword(String keyword) {
|
||||||
this.keyword = ServletUtils.urlDecode(keyword);
|
this.keyword = ServletUtils.urlDecode(keyword);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue