196 changed files with 4324 additions and 1798 deletions
@ -0,0 +1,44 @@ |
|||
package com.epmet.evaluationindex.screen.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 5、下级部门指数排行(安宁数据段用) 入参 |
|||
* @Author zhangyong |
|||
* @DateTime 2020/09/08 9:54 |
|||
*/ |
|||
@Data |
|||
public class AnNingSubAgencyIndexRankFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -2920561669035794486L; |
|||
|
|||
public interface SubAgencyIndexRank{} |
|||
|
|||
/** |
|||
* 机关ID |
|||
*/ |
|||
@NotBlank(message = "组织id不能为空",groups = {SubAgencyIndexRank.class}) |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 默认查询前几名 |
|||
*/ |
|||
@NotNull(message = "默认查询名次不能为空",groups = {SubAgencyIndexRank.class}) |
|||
private Integer topNum; |
|||
|
|||
/** |
|||
* asc 正序, desc 降序 |
|||
*/ |
|||
@NotNull(message = "排序方式不能为空",groups = {SubAgencyIndexRank.class}) |
|||
private String sort; |
|||
|
|||
/** |
|||
* 年度:year 月度:month |
|||
*/ |
|||
@NotNull(message = "年度、月度不能为空",groups = {SubAgencyIndexRank.class}) |
|||
private String type; |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 8、治理能力-部门相关指标 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class DeptGovrnAbilityDataFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<DeptGovrnAbilityFormDTO> dataList; |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 6、治理能力-网格相关指标 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class GridGovrnAbilityDataFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<GridGovrnAbilityFormDTO> dataList; |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 2、党建能力-网格相关指标上报(按照月份) 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class GridPartyAbilityDataFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<GridPartyAbilityFormDTO> dataList; |
|||
} |
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 4、服务能力-网格相关指标 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class GridServiceAbilityDataFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<GridServiceAbilityFormDTO> dataList; |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 7、治理能力-街道及社区相关指标 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class OrgGovrnAbilityDataFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<OrgGovrnAbilityFormDTO> dataList; |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 3、党建能力-街道及社区相关指标 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class OrgPartyAbilityDataFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<OrgPartyAbilityFormDTO> dataList; |
|||
|
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 5、服务能力-组织(街道|社区|全区)相关指标 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class OrgServiceAbilityDataFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<OrgServiceAbilityFormDTO> dataList; |
|||
} |
@ -0,0 +1,48 @@ |
|||
package com.epmet.dto.screencoll; |
|||
|
|||
import com.alibaba.fastjson.JSON; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 大屏采集通用入参 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/9/9 10:25 |
|||
*/ |
|||
@Data |
|||
public class ScreenCollFormDTO<T> implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 4605543711669000348L; |
|||
/** |
|||
* 当为true时后台将先删除当前维度的数据,后新增 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* 日期Id, 数据更新至:yyyyMMdd |
|||
*/ |
|||
private String dateId; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
/** |
|||
* yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 数据集合 |
|||
*/ |
|||
private List<T> dataList; |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return JSON.toJSONString(this); |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 2、党员基本情况 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class CpcBaseDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
|
|||
private List<CpcBaseDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,25 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 14、组织层级 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class CustomerAgencyListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
|
|||
private List<CustomerAgencyFormDTO> dataList; |
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 16、部门信息上传 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class CustomerDeptListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<CustomerDeptFormDTO> dataList; |
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 15、网格信息上传 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class CustomerGridListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<CustomerGridFormDTO> dataList; |
|||
} |
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import com.epmet.dto.indexcollect.form.GridPartyAbilityFormDTO; |
|||
import com.epmet.dto.screencoll.ImgDataListDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 4、事件数据(中央区-事件数据) 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class EventDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<EventDataFormDTO> dataList; |
|||
|
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 5、基层治理-治理能力数据 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class GovernRankDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<GovernRankDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 1、指数_按月统计 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class IndexDataListMonthlyFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<IndexDataMonthlyFormDTO> dataList; |
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 17、指数_按年统计 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class IndexDataListYearlyFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
private List<IndexDataYearlyFormDTO> dataList; |
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 6、党建引领-组织排行 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class OrgRankDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<OrgRankDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 7、基层党建-建设情况数据(支部、联建、志愿) 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class PartyBranchDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<PartyBranchDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 8、党建引领-党员联系群众数据 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class PartyLinkMassesDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<PartyLinkMassesDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 9、党建引领|基层治理-居民(党员)积分排行榜 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-21 09:59 |
|||
*/ |
|||
@Data |
|||
public class PartyUserRankDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<PartyUserRankDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,25 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 10、党建引领-先锋模范数据 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class PioneerDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<PioneerDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,25 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 18、公众参与各类总数 入参 |
|||
* 公众参与-各类(用户|党员|党群|话题|议题|项目|注册人数|参与人数)总数 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class PublicPartiTotalDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<PublicPartiTotalDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 11、基层治理-公众参与 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class UserJoinListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
private List<UserJoinFormDTO> dataList; |
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 12、中央区各类总数 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class UserTotalDataListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 当为true时后台将删除本月数据 |
|||
*/ |
|||
private Boolean isFirst; |
|||
|
|||
private List<UserTotalDataFormDTO> dataList; |
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* 孔村大屏数据采集api |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/9/9 10:18 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("kcscreencoll") |
|||
public class KcScreenCollController { |
|||
} |
@ -0,0 +1,107 @@ |
|||
/** |
|||
* 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.dao.evaluationindex.indexcal; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.indexcal.AgencyScoreDTO; |
|||
import com.epmet.dto.indexcal.SubAgencyScoreAvgResultDTO; |
|||
import com.epmet.entity.evaluationindex.indexcal.AgencyScoreEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 区/街道相关分数表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-02 |
|||
*/ |
|||
@Mapper |
|||
public interface AgencySubScoreDao extends BaseDao<AgencyScoreEntity> { |
|||
|
|||
/** |
|||
* @param lists |
|||
* @Description 【街道】中间表插入 |
|||
* @author zxc |
|||
* @date 2020/8/27 5:05 下午 |
|||
*/ |
|||
void insertStreetRecord(@Param("lists") List<AgencyScoreDTO> lists); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @param indexCode |
|||
* @Description 删除旧记录 |
|||
* @author zxc |
|||
* @date 2020/9/2 15:47 |
|||
*/ |
|||
void deleteOldRecord(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("indexCode") String indexCode, @Param("dataType") String dataType); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @Description 查询【fact_index_agency_score】相关信息 |
|||
* @author zxc |
|||
* @date 2020/9/1 9:41 上午 |
|||
*/ |
|||
List<AgencyScoreDTO> selectAgencyScoreInfo(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("dataType") String dataType); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @Description 区下级街道得分平均值 |
|||
* @author zxc |
|||
* @date 2020/8/31 1:51 下午 |
|||
*/ |
|||
List<SubAgencyScoreAvgResultDTO> selectAgencyScoreAvg(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("indexCode") String indexCode, @Param("dataType") String dataType); |
|||
|
|||
|
|||
/** |
|||
* 根据入参查询 区/街道相关分数表 记录 |
|||
* |
|||
* @param customerId |
|||
* @param monthId |
|||
* @return java.util.List<com.epmet.dto.indexcal.AgencyScoreDTO> |
|||
* @Author zhangyong |
|||
* @Date 10:43 2020-09-03 |
|||
**/ |
|||
List<AgencyScoreDTO> selectListAgencyScore(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入区/街道相关分数表 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 11:11 2020-09-04 |
|||
**/ |
|||
void batchInsertAgencyScoreData(@Param("list") List<AgencyScoreEntity> list, @Param("customerId") String customerId); |
|||
|
|||
/** |
|||
* 根据入参查询 区/街道相关分数表id |
|||
* |
|||
* @param customerId |
|||
* @param monthId |
|||
* @return java.util.List<java.lang.String> |
|||
* @Author zhangyong |
|||
* @Date 10:43 2020-09-03 |
|||
**/ |
|||
List<String> selectListAgencyId(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
} |
@ -0,0 +1,105 @@ |
|||
/** |
|||
* 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.dao.evaluationindex.indexcal; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.indexcal.SubCommunityAvgResultDTO; |
|||
import com.epmet.dto.screen.FactIndexCommunityScoreDTO; |
|||
import com.epmet.entity.evaluationindex.screen.FactIndexCommunityScoreEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 社区相关分数表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-08-31 |
|||
*/ |
|||
@Mapper |
|||
public interface CommunitySubScoreDao extends BaseDao<FactIndexCommunityScoreEntity> { |
|||
|
|||
/** |
|||
* @param lists |
|||
* @Description 【社区】中间表插入 |
|||
* @author zxc |
|||
* @date 2020/8/27 5:05 下午 |
|||
*/ |
|||
void insertCommunityPartyRecord(@Param("lists") List<FactIndexCommunityScoreDTO> lists); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @Description 删除旧记录 |
|||
* @author zxc |
|||
* @date 2020/9/1 9:03 上午 |
|||
*/ |
|||
void deleteOldRecord(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @Description 查询社区相关信息 |
|||
* @author zxc |
|||
* @date 2020/9/1 9:41 上午 |
|||
*/ |
|||
List<FactIndexCommunityScoreDTO> selectCommunityInfo(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 根据入参查询 查询社区相关信息 |
|||
* |
|||
* @param customerId |
|||
* @param monthId |
|||
* @return java.util.List<com.epmet.dto.screen.FactIndexCommunityScoreDTO> |
|||
* @Author zhangyong |
|||
* @Date 10:43 2020-09-03 |
|||
**/ |
|||
List<FactIndexCommunityScoreDTO> selectListCommunityScore(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @Description 街道下级所有社区得分平均值 |
|||
* @author zxc |
|||
* @date 2020/8/31 1:51 下午 |
|||
*/ |
|||
List<SubCommunityAvgResultDTO> selectSubCommAvgScore(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("indexCode") String indexCode); |
|||
|
|||
/** |
|||
* 批量插入 社区相关分数表 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 11:11 2020-09-04 |
|||
**/ |
|||
void batchInsertCommunityScoreData(@Param("list") List<FactIndexCommunityScoreEntity> list, @Param("customerId") String customerId); |
|||
|
|||
/** |
|||
* 根据入参查询 查询社区id |
|||
* |
|||
* @param customerId |
|||
* @param monthId |
|||
* @return java.util.List<java.util.String> |
|||
* @Author zhangyong |
|||
* @Date 10:43 2020-09-03 |
|||
**/ |
|||
List<String> selectListCommunityId(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
} |
@ -0,0 +1,87 @@ |
|||
/** |
|||
* 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.dao.evaluationindex.indexcal; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.indexcal.CalculateCommonFormDTO; |
|||
import com.epmet.entity.evaluationindex.indexcal.CpcScoreEntity; |
|||
import com.epmet.entity.evaluationindex.indexcal.CpcSubScoreEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.math.BigDecimal; |
|||
import java.util.Collection; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 党员相关分值 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-08-31 |
|||
*/ |
|||
@Mapper |
|||
public interface CpcSubScoreDao extends BaseDao<CpcScoreEntity> { |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @param gridId |
|||
* @return java.math.BigDecimal |
|||
* @author yinzuomei |
|||
* @description 获取网格内党员的联系群众能力考评分(平均值) |
|||
* @Date 2020/8/31 10:56 |
|||
**/ |
|||
BigDecimal selectGridContactMassesAvgValue(@Param("customerId") String customerId, |
|||
@Param("monthId") String monthId, |
|||
@Param("gridId") String gridId); |
|||
|
|||
/** |
|||
* @param formDTO |
|||
* @return java.util.List<java.math.BigDecimal> |
|||
* @author yinzuomei |
|||
* @description 获取网格内党员的联系群众能力考评分(平均值)的最大值,最小值 |
|||
* @Date 2020/8/31 12:10 |
|||
**/ |
|||
List<BigDecimal> selectListGridContactMassesAvgValue(CalculateCommonFormDTO formDTO); |
|||
|
|||
/** |
|||
* @param calculateCommonFormDTO |
|||
* @return java.util.List<java.math.BigDecimal> |
|||
* @author yinzuomei |
|||
* @description 网格内党员的参与议事能力考评分(平均值) 最大值最小值 |
|||
* @Date 2020/8/31 14:42 |
|||
**/ |
|||
List<BigDecimal> selectListJoinIssueAvgValue(CalculateCommonFormDTO calculateCommonFormDTO); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @param gridId |
|||
* @return java.math.BigDecimal |
|||
* @author yinzuomei |
|||
* @description 组织内党员的参与议事能力考评分(平均值) |
|||
* @Date 2020/8/31 15:51 |
|||
**/ |
|||
BigDecimal selectGridJoinIssueAvgValue(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("gridId") String gridId); |
|||
|
|||
int deleteByMonthId(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("allParentCode") String allParentCode); |
|||
|
|||
List<CpcScoreEntity> getPartScore(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("allParentCode") String allParentCode); |
|||
|
|||
int insertBatch(@Param("list") Collection<CpcSubScoreEntity> values); |
|||
} |
@ -0,0 +1,92 @@ |
|||
/** |
|||
* 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.dao.evaluationindex.indexcal; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.indexcal.DeptScoreDTO; |
|||
import com.epmet.dto.indexcal.SubAgencyScoreAvgResultDTO; |
|||
import com.epmet.entity.evaluationindex.indexcal.DeptScoreEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 区直部门分值表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-02 |
|||
*/ |
|||
@Mapper |
|||
public interface DeptSubScoreDao extends BaseDao<DeptScoreEntity> { |
|||
|
|||
/** |
|||
* 根据入参查询 区直部门分值表 记录 |
|||
* |
|||
* @param customerId |
|||
* @param monthId |
|||
* @return java.util.List<com.epmet.dto.indexcal.DeptScoreDTO> |
|||
* @Author zhangyong |
|||
* @Date 10:43 2020-09-03 |
|||
**/ |
|||
List<DeptScoreDTO> selectListDeptScore(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入 区直部门分值表 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 11:11 2020-09-04 |
|||
**/ |
|||
void batchInsertDeptScoreData(@Param("list") List<DeptScoreEntity> list, @Param("customerId") String customerId); |
|||
|
|||
/** |
|||
* 根据入参查询 区直部门分值表id |
|||
* |
|||
* @param customerId |
|||
* @param monthId |
|||
* @return java.lang.String |
|||
* @Author zhangyong |
|||
* @Date 10:43 2020-09-03 |
|||
**/ |
|||
List<String> selectListDeptId(@Param("customerId") String customerId, @Param("monthId") String monthId); |
|||
|
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @param indexCode |
|||
* @Description 所有直属部门治理能力平均值 |
|||
* @author zxc |
|||
* @date 2020/9/4 10:53 上午 |
|||
*/ |
|||
List<SubAgencyScoreAvgResultDTO> selectGovernDeptScoreAvg(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("indexCode") String indexCode); |
|||
|
|||
/** |
|||
* @param customerId |
|||
* @param monthId |
|||
* @param deptId |
|||
* @return int |
|||
* @author yinzuomei |
|||
* @description |
|||
* @Date 2020/9/7 14:30 |
|||
**/ |
|||
int deleteByDeptIdAndMonthId(@Param("customerId") String customerId, @Param("monthId") String monthId, @Param("deptId") String deptId); |
|||
} |
@ -0,0 +1,90 @@ |
|||
/** |
|||
* 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.indexcal; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 区/街道相关分数表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-02 |
|||
*/ |
|||
@Data |
|||
@EqualsAndHashCode(callSuper = false) |
|||
@TableName("fact_index_sub_agency_score") |
|||
public class AgencySubScoreEntity extends BaseEpmetEntity { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 组织id(eg:社区或者街道id) |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 上级组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 年度ID: yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 季度id: yyyyQ1、yyyyQ2、yyyyQ3、yyyyQ4 |
|||
*/ |
|||
private String quarterId; |
|||
|
|||
/** |
|||
* 月维度Id: yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
/** |
|||
* 1:总分;0不是;默认0 |
|||
*/ |
|||
private String isTotal; |
|||
|
|||
/** |
|||
* 分值 |
|||
*/ |
|||
private BigDecimal score; |
|||
|
|||
/** |
|||
* 党建能力:dangjiannengli;治理能力:zhilinengli;服务能力:fuwunengli;街道相关:jiedaoxiangguan;全区相关:quanquxiangguan |
|||
*/ |
|||
private String indexCode; |
|||
|
|||
/** |
|||
* 数据类型 district :全区;street:街道 |
|||
*/ |
|||
private String dataType; |
|||
|
|||
} |
@ -0,0 +1,90 @@ |
|||
/** |
|||
* 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.indexcal; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 党员相关分值 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-08-31 |
|||
*/ |
|||
@Data |
|||
@EqualsAndHashCode(callSuper = false) |
|||
@TableName("fact_index_sub_cpc_score") |
|||
public class CpcSubScoreEntity extends BaseEpmetEntity { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 网格所属的机关Id |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 网格Id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
|
|||
/** |
|||
* 年维度Id: yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 月维度Id: yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 分值 |
|||
*/ |
|||
private BigDecimal score; |
|||
|
|||
/** |
|||
* 指标code |
|||
*/ |
|||
private String indexCode; |
|||
|
|||
/** |
|||
* 所有指标code拼接的字符串 冒号隔开 |
|||
*/ |
|||
private String allParentIndexCode; |
|||
|
|||
/** |
|||
* 是否是总分 1是0不是 |
|||
*/ |
|||
private String isTotal; |
|||
} |
@ -0,0 +1,90 @@ |
|||
/** |
|||
* 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.indexcal; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 区直部门分值表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-02 |
|||
*/ |
|||
@Data |
|||
@EqualsAndHashCode(callSuper = false) |
|||
@TableName("fact_index_sub_dept_score") |
|||
public class DeptSubScoreEntity extends BaseEpmetEntity { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 部门id |
|||
*/ |
|||
private String deptId; |
|||
|
|||
/** |
|||
* 部门所属的组织id |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 季度id: yyyyQ1、yyyyQ2、yyyyQ3、yyyyQ4 |
|||
*/ |
|||
private String quarterId; |
|||
|
|||
/** |
|||
* 年度ID: yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 月维度Id: yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
/** |
|||
* 1:总分;0不是;默认0 |
|||
*/ |
|||
private String isTotal; |
|||
|
|||
/** |
|||
* 分值 |
|||
*/ |
|||
private BigDecimal score; |
|||
|
|||
/** |
|||
* 治理能力:zhilinengli; |
|||
*/ |
|||
private String indexCode; |
|||
|
|||
/** |
|||
* 所有指标code拼接的字符串 冒号隔开 |
|||
*/ |
|||
private String allParentIndexCode; |
|||
|
|||
} |
@ -0,0 +1,95 @@ |
|||
/** |
|||
* 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.indexcal; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 网格相关分值 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-08-31 |
|||
*/ |
|||
@Data |
|||
@EqualsAndHashCode(callSuper = false) |
|||
@TableName("fact_index_sub_grid_score") |
|||
public class GridSubScoreEntity extends BaseEpmetEntity { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 网格Id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格所属的机关Id |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 季度id: yyyyQ1、yyyyQ2、yyyyQ3、yyyyQ4 |
|||
*/ |
|||
private String quarterId; |
|||
|
|||
/** |
|||
* 年度ID: yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 月维度Id: yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
/** |
|||
* 1:总分;0不是 |
|||
*/ |
|||
private String isTotal; |
|||
|
|||
/** |
|||
* 分值 |
|||
*/ |
|||
private BigDecimal score; |
|||
|
|||
/** |
|||
* 党建能力:dangjiannengli;治理能力:zhilinengli;服务能力:fuwunengli;网格相关:wanggexiangguan |
|||
*/ |
|||
private String indexCode; |
|||
|
|||
/** |
|||
* 所有指标code拼接的字符串 冒号隔开 |
|||
*/ |
|||
private String allParentIndexCode; |
|||
|
|||
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue