163 changed files with 7925 additions and 916 deletions
@ -0,0 +1,30 @@ |
|||
package com.epmet.datareport.controller.screen; |
|||
|
|||
import com.epmet.datareport.service.evaluationindex.screen.KcScreenService; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* 孔村大屏api |
|||
* |
|||
* @author zhangyong |
|||
* @date 2020/9/10 10:21 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("kcscreen") |
|||
public class KcScreenController { |
|||
|
|||
@Autowired |
|||
private KcScreenService kcScreenService; |
|||
|
|||
|
|||
// @ExternalAppRequestAuth
|
|||
// @PostMapping("homepage/summary")
|
|||
// public Result<YearAverageIndexResultDTO> yearAverageIndex(){
|
|||
//// ValidatorUtils.validateEntity(yearAverageIndexFormDTO, YearAverageIndexFormDTO.YearAverageIndex.class);
|
|||
//// return new Result<YearAverageIndexResultDTO>().ok(indexService.yearAverageIndex(yearAverageIndexFormDTO));
|
|||
// }
|
|||
|
|||
// @RequestBody
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-活动各类总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcActSummaryDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-活动(次数+时长)趋势(先根据customerId+monthId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcActTrendMonthlyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-小组详情(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcGroupDetailGridDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-小组分析各类总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcGroupSummaryGridDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-议题分析(各类总数) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcIssueSummaryGridDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-议题参与趋势(每天上报当前月)customerId+monthId先删后增 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcIssueTrendGridMonthlyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-新闻-按类别统计(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsCategoryAnalysisDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-热点新闻排行-(先根据customerId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsRankDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-新闻-各类总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsSummaryDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-新闻参与趋势-(先根据customerId+monthId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsTrendMonthlyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-平台各汇总值(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcPlatformSummaryDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-项目按分类统计上报总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcProjectCategoryGridDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-项目满意度分析(customerId+monthId先删除记录,再插入) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcProjectSatisGridMonthlyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-项目分析(各类总数先根据customerId+dateId删除,后插入) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcProjectSummaryGridDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-话题参与趋势(先根据customerId+monthId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcTopicTrendGridMonthlyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-用户公益时长排名(先根据customerId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcUserHeatRankGridDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-用户分析(先根据customerId+dateId删除,后插入) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcUserSummaryDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-用户趋势分析(根据monthId+customerId先删后增) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcUserTrendGridMonthlyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-志愿者公益时长排名(先根据customerId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcVolunteerHeatRankGridDailyDao { |
|||
|
|||
} |
@ -0,0 +1,31 @@ |
|||
/** |
|||
* 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.datareport.dao.evaluationindex.screenkc; |
|||
|
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-志愿者汇总(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcVolunteerSummaryDailyDao { |
|||
|
|||
} |
@ -0,0 +1,12 @@ |
|||
package com.epmet.datareport.service.evaluationindex.screen; |
|||
|
|||
/** |
|||
* 孔村大屏api |
|||
* |
|||
* @author zhangyong |
|||
* @date 2020/9/10 10:21 |
|||
*/ |
|||
public interface KcScreenService { |
|||
|
|||
|
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.epmet.datareport.service.evaluationindex.screen.impl; |
|||
|
|||
import com.epmet.commons.dynamic.datasource.annotation.DataSource; |
|||
import com.epmet.constant.DataSourceConstant; |
|||
import com.epmet.datareport.service.evaluationindex.screen.KcScreenService; |
|||
import com.epmet.datareport.utils.DateUtils; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* 孔村大屏api |
|||
* |
|||
* @author zhangyong |
|||
* @date 2020/9/10 10:21 |
|||
*/ |
|||
@Service |
|||
@DataSource(DataSourceConstant.EVALUATION_INDEX) |
|||
public class KcScreenServiceImpl implements KcScreenService { |
|||
|
|||
@Autowired |
|||
private DateUtils dateUtils; |
|||
|
|||
|
|||
} |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcActSummaryDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcActTrendMonthlyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcGroupDetailGridDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcGroupSummaryGridDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcIssueSummaryGridDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcIssueTrendGridMonthlyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,6 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcNewsCategoryAnalysisDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcNewsRankDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcNewsSummaryDailyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcNewsTrendMonthlyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcPlatformSummaryDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcProjectCategoryGridDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcProjectSatisGridMonthlyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,6 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcProjectSummaryGridDailyDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcTopicTrendGridMonthlyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcUserHeatRankGridDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcUserSummaryDailyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcUserTrendGridMonthlyDao"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcVolunteerHeatRankGridDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,7 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.evaluationindex.screenkc.ScreenKcVolunteerSummaryDailyDao"> |
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,20 @@ |
|||
package com.epmet.dto.indexcal; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/9 5:52 下午 |
|||
*/ |
|||
@Data |
|||
public class AgencyCalResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 2482954776048082386L; |
|||
|
|||
private List<AgencyScoreDTO> oneTwoLevel; |
|||
|
|||
private List<AgencyScoreDTO> fiveLevel; |
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.indexcal; |
|||
|
|||
import com.epmet.dto.screen.FactIndexCommunityScoreDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/10 9:19 上午 |
|||
*/ |
|||
@Data |
|||
public class CommunityCalResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 2482954776048082386L; |
|||
|
|||
private List<FactIndexCommunityScoreDTO> oneLevel; |
|||
|
|||
private List<FactIndexCommunityScoreDTO> fiveLevel; |
|||
} |
@ -0,0 +1,42 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 7、公益互助-活动各类总数 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcActSummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 活动总数 |
|||
*/ |
|||
private Integer actCount; |
|||
|
|||
/** |
|||
* 志愿者总数 |
|||
*/ |
|||
private Integer volunteerCount; |
|||
|
|||
/** |
|||
* 参与人次 |
|||
*/ |
|||
private Integer partiUserCount; |
|||
|
|||
/** |
|||
* 发放积分 |
|||
*/ |
|||
private Integer rewardPointCount; |
|||
|
|||
/** |
|||
* 公益时长单位分钟 |
|||
*/ |
|||
private Integer heartTime; |
|||
} |
@ -0,0 +1,22 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 8、公益互助-活动次数趋势 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcActTrendFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 活动数量(本月举行的活动) |
|||
*/ |
|||
private Integer actCount; |
|||
} |
@ -0,0 +1,52 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 11、项目分析-按分类统计 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcCategorySummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 类别id |
|||
*/ |
|||
private String categoryId; |
|||
|
|||
/** |
|||
* 分类名称 |
|||
*/ |
|||
private String categoryName; |
|||
|
|||
/** |
|||
* 项目数量 |
|||
*/ |
|||
private Integer projectCount; |
|||
} |
@ -0,0 +1,67 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 18、邻里党群-小组详情 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcGroupDetailFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 小组id |
|||
*/ |
|||
private String groupId; |
|||
|
|||
/** |
|||
* 群名称 |
|||
*/ |
|||
private String groupName; |
|||
|
|||
/** |
|||
* 群主名称 |
|||
*/ |
|||
private String groupLeader; |
|||
|
|||
/** |
|||
* 群成员数 |
|||
*/ |
|||
private Integer memberCount; |
|||
|
|||
/** |
|||
* 话题总数 |
|||
*/ |
|||
private Integer topicCount; |
|||
|
|||
/** |
|||
* 转为议题的话题数 |
|||
*/ |
|||
private Integer shifitIssueCount; |
|||
} |
@ -0,0 +1,62 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 17、邻里党群-各类总数汇总 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcGroupSummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 社群总数 |
|||
*/ |
|||
private Integer groupCount; |
|||
|
|||
/** |
|||
* 群成员总数 |
|||
*/ |
|||
private Integer memberCount; |
|||
|
|||
/** |
|||
* 话题数量 |
|||
*/ |
|||
private Integer topicCount; |
|||
|
|||
/** |
|||
* 话题参与量 |
|||
*/ |
|||
private Integer partiCount; |
|||
|
|||
/** |
|||
* 话题转议题总数 |
|||
*/ |
|||
private Integer shiftIssueCount; |
|||
} |
@ -0,0 +1,42 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 19、邻里党群-话题参与趋势 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcGroupTopicTrendFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 话题数量(所在月新增话题数) |
|||
*/ |
|||
private Integer topicCount; |
|||
} |
@ -0,0 +1,77 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 1、首页-平台各类总数上报 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcHomePageFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格总数 |
|||
*/ |
|||
private Integer gridCount; |
|||
|
|||
/** |
|||
* 已开通网格总数 |
|||
*/ |
|||
private Integer openedGridCount; |
|||
|
|||
/** |
|||
* 议题总数 |
|||
*/ |
|||
private Integer issueCount; |
|||
|
|||
/** |
|||
* 项目总数 |
|||
*/ |
|||
private Integer projectCount; |
|||
|
|||
/** |
|||
* 用户总数 |
|||
*/ |
|||
private Integer userCount; |
|||
|
|||
/** |
|||
* 党员用户 |
|||
*/ |
|||
private Integer partyUserCount; |
|||
|
|||
/** |
|||
* 社群总数 |
|||
*/ |
|||
private Integer groupCount; |
|||
|
|||
/** |
|||
* 话题总数 |
|||
*/ |
|||
private Integer topicCount; |
|||
|
|||
/** |
|||
* 新闻数量 |
|||
*/ |
|||
private Integer newsCount; |
|||
|
|||
/** |
|||
* 阅读数量 |
|||
*/ |
|||
private Integer readCount; |
|||
|
|||
/** |
|||
* 公益活动数量 |
|||
*/ |
|||
private Integer actCount; |
|||
|
|||
/** |
|||
* 志愿者总数 |
|||
*/ |
|||
private Integer vounteerCount; |
|||
} |
@ -0,0 +1,92 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 2、议题分析-各类总数 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcIssueSummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 上报总数 |
|||
*/ |
|||
private Integer reportCount; |
|||
|
|||
/** |
|||
* 议题总数 |
|||
*/ |
|||
private Integer issueCount; |
|||
|
|||
/** |
|||
* 待审核数 |
|||
*/ |
|||
private Integer pendingCount; |
|||
|
|||
/** |
|||
* 已驳回数 |
|||
*/ |
|||
private Integer rejectedCount; |
|||
|
|||
/** |
|||
* 处理中数 |
|||
*/ |
|||
private Integer processingCount; |
|||
|
|||
/** |
|||
* 已关闭数 |
|||
*/ |
|||
private Integer closedCount; |
|||
|
|||
/** |
|||
* 议题浏览数 |
|||
*/ |
|||
private Integer issueViewCount; |
|||
|
|||
/** |
|||
* 表态数 |
|||
*/ |
|||
private Integer voteCount; |
|||
|
|||
/** |
|||
* 审核通过数 ?为了算议题效率 |
|||
*/ |
|||
private Integer passedCount; |
|||
|
|||
/** |
|||
* 转化成项目数 ?为了算议题效率 |
|||
*/ |
|||
private Integer shiftToProjectCount; |
|||
|
|||
/** |
|||
* 平均审核时间单位分钟 ? |
|||
*/ |
|||
private Integer avgAuditTime; |
|||
} |
@ -0,0 +1,42 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 3、议题分析-参与趋势 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcIssueTrendFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 议题上报数(本月内上报的议题数量) |
|||
*/ |
|||
private Integer reportCount; |
|||
} |
@ -0,0 +1,47 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 16、党建声音-新闻按类别统计 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcNewsCategoryAnalysisFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 类别id |
|||
*/ |
|||
private String categoryId; |
|||
|
|||
/** |
|||
* 分类名称 |
|||
*/ |
|||
private String categoryName; |
|||
|
|||
/** |
|||
* 新闻的数量 |
|||
*/ |
|||
private Integer newsCount; |
|||
|
|||
/** |
|||
* 阅读的数量 |
|||
*/ |
|||
private Integer readCount; |
|||
|
|||
/** |
|||
* 点赞的数量 |
|||
*/ |
|||
private Integer likeCount; |
|||
|
|||
/** |
|||
* 点踩的数量 |
|||
*/ |
|||
private Integer disLikeCount; |
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 15、党建声音-热度新闻排行 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcNewsHotRankFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 新闻id |
|||
*/ |
|||
private String newsId; |
|||
|
|||
/** |
|||
* 新闻标题 |
|||
*/ |
|||
private String newsTitle; |
|||
|
|||
/** |
|||
* 新闻热点值 |
|||
*/ |
|||
private Integer hotCount; |
|||
} |
@ -0,0 +1,37 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 13、党建声音-新闻各类总数汇总 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcNewsSummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 文章总数 |
|||
*/ |
|||
private Integer newsCount; |
|||
|
|||
/** |
|||
* 阅读量 |
|||
*/ |
|||
private Integer readCount; |
|||
|
|||
/** |
|||
* 点赞量 |
|||
*/ |
|||
private Integer likeCount; |
|||
|
|||
/** |
|||
* 评论量 |
|||
*/ |
|||
private Integer commentCount; |
|||
} |
@ -0,0 +1,27 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 14、党建声音-新闻阅读参与趋势 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcNewsTrendFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 阅读数量 |
|||
*/ |
|||
private Integer readCount; |
|||
|
|||
/** |
|||
* 参与数量 |
|||
*/ |
|||
private Integer partiCount; |
|||
} |
@ -0,0 +1,52 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 12、项目分析-满意度分析 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcProjectSatisanalysisFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 非常满意项目总数 |
|||
*/ |
|||
private Integer greatSatis; |
|||
|
|||
/** |
|||
* 满意项目总数 |
|||
*/ |
|||
private Integer goodSatis; |
|||
|
|||
/** |
|||
* 不满意的项目总数 |
|||
*/ |
|||
private Integer disSatis; |
|||
} |
@ -0,0 +1,77 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 10、项目分析-各类总数 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcProjectSummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 项目总数 |
|||
*/ |
|||
private Integer projectCount; |
|||
|
|||
/** |
|||
* 处理中数 |
|||
*/ |
|||
private Integer processingCount; |
|||
|
|||
/** |
|||
* 已关闭数 |
|||
*/ |
|||
private Integer closedCount; |
|||
|
|||
/** |
|||
* 流转次数 |
|||
*/ |
|||
private Integer moveCount; |
|||
|
|||
/** |
|||
* 已结案数量 |
|||
*/ |
|||
private Integer closedCaseCount; |
|||
|
|||
/** |
|||
* 项目浏览数 |
|||
*/ |
|||
private Integer projectViewCount; |
|||
|
|||
/** |
|||
* 表态数 |
|||
*/ |
|||
private Integer voteCount; |
|||
|
|||
/** |
|||
* 平均结案时间 单位分钟 ? |
|||
*/ |
|||
private Integer avgClosedCaseTime; |
|||
} |
@ -0,0 +1,47 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 6、用户分析-用户趋势 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcUserHeartRankFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 本月内新增用户数量 |
|||
*/ |
|||
private Integer regUserCount; |
|||
|
|||
/** |
|||
* 本月内新增党员数量 |
|||
*/ |
|||
private Integer partyUserCount; |
|||
|
|||
} |
@ -0,0 +1,93 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 4、用户分析-各类总数 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcUserSummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 浏览用户(首页的用户总数,原型上首页是叫注册用户) |
|||
*/ |
|||
private Integer visitorCount; |
|||
|
|||
/** |
|||
* 注册用户=居民数量 |
|||
*/ |
|||
private Integer regUserCount; |
|||
|
|||
/** |
|||
* 党员用户 |
|||
*/ |
|||
private Integer partyUserCount; |
|||
|
|||
/** |
|||
* 小于20岁的党员总人数 |
|||
*/ |
|||
private Integer ageLevel1; |
|||
|
|||
/** |
|||
* 20-30岁的党员总人数 |
|||
*/ |
|||
private Integer ageLevel2; |
|||
|
|||
/** |
|||
* 31-40岁的党员总人数 |
|||
*/ |
|||
private Integer ageLevel3; |
|||
|
|||
/** |
|||
* 41-50岁的党员总人数 |
|||
*/ |
|||
private Integer ageLevel4; |
|||
|
|||
/** |
|||
* 51-60岁的党员总人数 |
|||
*/ |
|||
private Integer ageLevel5; |
|||
|
|||
/** |
|||
* 60+岁的党员总人数 |
|||
*/ |
|||
private Integer ageLevel6; |
|||
|
|||
/** |
|||
* 党员中男性总人数 |
|||
*/ |
|||
private Integer malePartyUserCount; |
|||
|
|||
/** |
|||
* 党员中女性总人数 |
|||
*/ |
|||
private Integer femalePartyUserCount; |
|||
|
|||
} |
@ -0,0 +1,52 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 5、公益互助-志愿者公益时长排名 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcVolunteerHeartRankFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 用户姓名 |
|||
*/ |
|||
private String userName; |
|||
|
|||
/** |
|||
* 爱心时长 单位分钟 |
|||
*/ |
|||
private Integer heartTime; |
|||
} |
@ -0,0 +1,77 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 孔村 |
|||
* 9、公益互助-志愿者画像 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class KcVolunteerSummaryFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 小于20岁的志愿者总人数 |
|||
*/ |
|||
private Integer ageLevel1; |
|||
|
|||
/** |
|||
* 20-30岁的志愿者总人数 |
|||
*/ |
|||
private Integer ageLevel2; |
|||
|
|||
/** |
|||
* 31-40岁的志愿者总人数 |
|||
*/ |
|||
private Integer ageLevel3; |
|||
|
|||
/** |
|||
* 41-50岁的志愿者总人数 |
|||
*/ |
|||
private Integer ageLevel4; |
|||
|
|||
/** |
|||
* 51-60岁的志愿者总人数 |
|||
*/ |
|||
private Integer ageLevel5; |
|||
|
|||
/** |
|||
* 60+岁的志愿者总人数 |
|||
*/ |
|||
private Integer ageLevel6; |
|||
|
|||
/** |
|||
* 志愿者中男性总人数 |
|||
*/ |
|||
private Integer maleCount; |
|||
|
|||
/** |
|||
* 志愿者中女性总人数 |
|||
*/ |
|||
private Integer femaleCount; |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcActSummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcActSummaryDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-活动各类总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcActSummaryDailyDao extends BaseDao<ScreenKcActSummaryDailyEntity> { |
|||
|
|||
/** |
|||
* 根据customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteActSummary(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertActSummary(@Param("list") List<KcActSummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcActTrendFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcActTrendMonthlyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-活动(次数+时长)趋势(先根据customerId+monthId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcActTrendMonthlyDao extends BaseDao<ScreenKcActTrendMonthlyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+monthId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteActTrend(@Param("customerId") String customerId, |
|||
@Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertActTrend (@Param("list") List<KcActTrendFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("monthId")String monthId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcGroupDetailFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcGroupDetailGridDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-小组详情(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcGroupDetailGridDailyDao extends BaseDao<ScreenKcGroupDetailGridDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteGroupDetailGrid(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertGroupDetailGrid(@Param("list") List<KcGroupDetailFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcGroupSummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcGroupSummaryGridDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-小组分析各类总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcGroupSummaryGridDailyDao extends BaseDao<ScreenKcGroupSummaryGridDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteGroupSummaryGrid(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertGroupSummaryGrid(@Param("list") List<KcGroupSummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcIssueSummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcIssueSummaryGridDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-议题分析(各类总数) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcIssueSummaryGridDailyDao extends BaseDao<ScreenKcIssueSummaryGridDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.util.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteIssueSummaryGrid(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertIssueSummaryGrid(@Param("list") List<KcIssueSummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcIssueTrendFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcIssueTrendGridMonthlyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-议题参与趋势(每天上报当前月)customerId+monthId先删后增 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcIssueTrendGridMonthlyDao extends BaseDao<ScreenKcIssueTrendGridMonthlyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+monthId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteIssueTrendGrid(@Param("customerId") String customerId, |
|||
@Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertIssueTrendGrid(@Param("list") List<KcIssueTrendFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("monthId")String monthId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcNewsCategoryAnalysisFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcNewsCategoryAnalysisEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-新闻-按类别统计(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsCategoryAnalysisDao extends BaseDao<ScreenKcNewsCategoryAnalysisEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteNewsCategoryAnalysis(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertNewsCategoryAnalysis(@Param("list") List<KcNewsCategoryAnalysisFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,59 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcNewsHotRankFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcNewsRankEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-热点新闻排行-(先根据customerId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsRankDao extends BaseDao<ScreenKcNewsRankEntity> { |
|||
|
|||
/** |
|||
* 按照customerId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteNewsRank(@Param("customerId") String customerId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertNewsRank(@Param("list") List<KcNewsHotRankFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcNewsSummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcNewsSummaryDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-新闻-各类总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsSummaryDailyDao extends BaseDao<ScreenKcNewsSummaryDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteNewsSummary(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertNewsSummary(@Param("list") List<KcNewsSummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcNewsTrendFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcNewsTrendMonthlyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-新闻参与趋势-(先根据customerId+monthId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcNewsTrendMonthlyDao extends BaseDao<ScreenKcNewsTrendMonthlyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+monthId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteNewsTrend(@Param("customerId") String customerId, |
|||
@Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertNewsTrend(@Param("list") List<KcNewsTrendFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("monthId")String monthId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcHomePageFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcPlatformSummaryDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-平台各汇总值(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcPlatformSummaryDailyDao extends BaseDao<ScreenKcPlatformSummaryDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.util.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deletePlatFormSummary(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertPlatFormSummary(@Param("list") List<KcHomePageFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcCategorySummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcProjectCategoryGridDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-项目按分类统计上报总数(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcProjectCategoryGridDailyDao extends BaseDao<ScreenKcProjectCategoryGridDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteCategoryGrid(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertCategoryGrid(@Param("list") List<KcCategorySummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcProjectSatisanalysisFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcProjectSatisGridMonthlyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-项目满意度分析(customerId+monthId先删除记录,再插入) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcProjectSatisGridMonthlyDao extends BaseDao<ScreenKcProjectSatisGridMonthlyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+monthId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param monthId 例: 202008 |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteProjectSatisGrid(@Param("customerId") String customerId, |
|||
@Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param monthId 例: 202008 |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertProjectSatisGrid(@Param("list") List<KcProjectSatisanalysisFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("monthId")String monthId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcProjectSummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcProjectSummaryGridDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-项目分析(各类总数先根据customerId+dateId删除,后插入) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcProjectSummaryGridDailyDao extends BaseDao<ScreenKcProjectSummaryGridDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteProjectSummary(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertProjectSummary(@Param("list") List<KcProjectSummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,62 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcGroupTopicTrendFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcTopicTrendGridMonthlyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-话题参与趋势(先根据customerId+monthId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcTopicTrendGridMonthlyDao extends BaseDao<ScreenKcTopicTrendGridMonthlyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteTopicTrendGrid(@Param("customerId") String customerId, |
|||
@Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertTopicTrendGrid(@Param("list") List<KcGroupTopicTrendFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("monthId")String monthId); |
|||
|
|||
} |
@ -0,0 +1,33 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcUserHeatRankGridDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
|
|||
/** |
|||
* KC-用户公益时长排名(先根据customerId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcUserHeatRankGridDailyDao extends BaseDao<ScreenKcUserHeatRankGridDailyEntity> { |
|||
|
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcUserSummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcUserSummaryDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-用户分析(先根据customerId+dateId删除,后插入) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcUserSummaryDailyDao extends BaseDao<ScreenKcUserSummaryDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteUserSummary(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertUserSummary(@Param("list") List<KcUserSummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcUserHeartRankFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcUserTrendGridMonthlyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-用户趋势分析(根据monthId+customerId先删后增) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcUserTrendGridMonthlyDao extends BaseDao<ScreenKcUserTrendGridMonthlyEntity> { |
|||
|
|||
/** |
|||
* 根据monthId+customerId先删后增 |
|||
* |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteUserTrendGrid(@Param("customerId") String customerId, |
|||
@Param("monthId") String monthId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param monthId 例:202008 |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertUserTrendGrid(@Param("list") List<KcUserHeartRankFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("monthId")String monthId); |
|||
} |
@ -0,0 +1,59 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcVolunteerHeartRankFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcVolunteerHeatRankGridDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-志愿者公益时长排名(先根据customerId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcVolunteerHeatRankGridDailyDao extends BaseDao<ScreenKcVolunteerHeatRankGridDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteVolunteerHeatRankGrid(@Param("customerId") String customerId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertVolunteerHeatRankGrid(@Param("list") List<KcVolunteerHeartRankFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.screen; |
|||
|
|||
import com.epmet.commons.mybatis.dao.BaseDao; |
|||
import com.epmet.dto.screencoll.form.KcVolunteerSummaryFormDTO; |
|||
import com.epmet.entity.evaluationindex.screen.ScreenKcVolunteerSummaryDailyEntity; |
|||
import org.apache.ibatis.annotations.Mapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* KC-志愿者汇总(先根据customerId+dateId删除) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-09 |
|||
*/ |
|||
@Mapper |
|||
public interface ScreenKcVolunteerSummaryDailyDao extends BaseDao<ScreenKcVolunteerSummaryDailyEntity> { |
|||
|
|||
/** |
|||
* 按照customerId+dateId,清空数据 |
|||
* |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return java.lang.Integer |
|||
* @Author zhangyong |
|||
* @Date 16:14 2020-09-09 |
|||
**/ |
|||
Integer deleteVolunteerSummary(@Param("customerId") String customerId, |
|||
@Param("dateId") String dateId); |
|||
|
|||
/** |
|||
* 批量插入 |
|||
* |
|||
* @param list |
|||
* @param customerId |
|||
* @param dateId 日期Id, 数据更新至:yyyyMMdd |
|||
* @return void |
|||
* @Author zhangyong |
|||
* @Date 16:17 2020-09-09 |
|||
**/ |
|||
void batchInsertVolunteerSummary(@Param("list") List<KcVolunteerSummaryFormDTO> list, @Param("customerId")String customerId, |
|||
@Param("dateId")String dateId); |
|||
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue