Browse Source
# Conflicts: # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/screen/impl/ScreenDifficultyDataServiceImpl.javadev_shibei_match
12 changed files with 294 additions and 275 deletions
@ -0,0 +1,156 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.epmet.entity.evaluationindex.extract; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 项目主表_日统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2020-09-16 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class FactOriginProjectMainAndPeriodDTO extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 项目的发布日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 周ID |
||||
|
*/ |
||||
|
private String weekId; |
||||
|
|
||||
|
/** |
||||
|
* 月份ID |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 季度ID |
||||
|
*/ |
||||
|
private String quarterId; |
||||
|
|
||||
|
/** |
||||
|
* 年度ID |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 转议题用户ID |
||||
|
*/ |
||||
|
private String issueCreatorId; |
||||
|
|
||||
|
/** |
||||
|
* 转为项目的议题ID |
||||
|
*/ |
||||
|
private String issueId; |
||||
|
|
||||
|
/** |
||||
|
* 转为议题的话题ID |
||||
|
*/ |
||||
|
private String topicId; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 上级ID |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* 所有上级Id集合 (项目来源) |
||||
|
* */ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 组织ID(网格所属组织ID) |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
|
||||
|
/** |
||||
|
* 来源:议题issue |
||||
|
*/ |
||||
|
private String origin; |
||||
|
|
||||
|
/** |
||||
|
* 来源ID |
||||
|
*/ |
||||
|
private String originId; |
||||
|
|
||||
|
/** |
||||
|
* 状态 |
||||
|
*/ |
||||
|
private String projectStatus; |
||||
|
|
||||
|
/** |
||||
|
* resolved unresolved |
||||
|
* */ |
||||
|
private String isResolved; |
||||
|
|
||||
|
/** |
||||
|
* 创建话题用户的ID |
||||
|
*/ |
||||
|
private String topicCreatorId; |
||||
|
|
||||
|
/** |
||||
|
* 是否是党员 1:是 |
||||
|
*/ |
||||
|
private String isParty; |
||||
|
|
||||
|
/** |
||||
|
* 是否超期 1:是 |
||||
|
*/ |
||||
|
private String isOverdue; |
||||
|
|
||||
|
/** |
||||
|
* 是否满意 1:是 |
||||
|
*/ |
||||
|
private Integer isSatisfied; |
||||
|
|
||||
|
/** |
||||
|
* 办结组织Ids(:隔开,有可能是社区id可能是网格id,无需区分级别,在统计时模糊查询) |
||||
|
*/ |
||||
|
private String finishOrgIds; |
||||
|
|
||||
|
/** |
||||
|
* 项目创建人(议题转项目或立项人) |
||||
|
*/ |
||||
|
private String projectCreator; |
||||
|
|
||||
|
/** |
||||
|
* 项目处理时间节点 |
||||
|
*/ |
||||
|
private List<FactOriginProjectOrgPeriodDailyEntity> periodList; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue