forked from luyan/epmet-cloud-lingshan
				
			
				 11 changed files with 227 additions and 194 deletions
			
			
		@ -1,100 +0,0 @@ | 
				
			|||
/** | 
				
			|||
 * Copyright 2018 人人开源 https://www.renren.io
 | 
				
			|||
 * <p> | 
				
			|||
 * This program is free software: you can redistribute it and/or modify | 
				
			|||
 * it under the terms of the GNU General Public License as published by | 
				
			|||
 * the Free Software Foundation, either version 3 of the License, or | 
				
			|||
 * (at your option) any later version. | 
				
			|||
 * <p> | 
				
			|||
 * This program is distributed in the hope that it will be useful, | 
				
			|||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
				
			|||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
				
			|||
 * GNU General Public License for more details. | 
				
			|||
 * <p> | 
				
			|||
 * You should have received a copy of the GNU General Public License | 
				
			|||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
				
			|||
 */ | 
				
			|||
 | 
				
			|||
package com.epmet.entity.evaluationindex.indexcal; | 
				
			|||
 | 
				
			|||
import com.baomidou.mybatisplus.annotation.TableName; | 
				
			|||
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; | 
				
			|||
import lombok.Data; | 
				
			|||
import lombok.EqualsAndHashCode; | 
				
			|||
 | 
				
			|||
import java.math.BigDecimal; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * 网格相关自身/下级分值记录表 | 
				
			|||
 * | 
				
			|||
 * @author generator generator@elink-cn.com | 
				
			|||
 * @since v1.0.0 2020-09-21 | 
				
			|||
 */ | 
				
			|||
@Data | 
				
			|||
@EqualsAndHashCode(callSuper = false) | 
				
			|||
@TableName("fact_index_grid_self_sub_score") | 
				
			|||
public class FactIndexGridSelfSubScoreEntity extends BaseEpmetEntity { | 
				
			|||
 | 
				
			|||
	private static final long serialVersionUID = 1L; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 客户Id | 
				
			|||
	 */ | 
				
			|||
	private String customerId; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 网格Id | 
				
			|||
	 */ | 
				
			|||
	private String gridId; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 网格所属的机关Id | 
				
			|||
	 */ | 
				
			|||
	private String agencyId; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 所有上级ID,用英文逗号分开 | 
				
			|||
	 */ | 
				
			|||
	private String allParentIds; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 季度id: yyyyQ1、yyyyQ2、yyyyQ3、yyyyQ4 | 
				
			|||
	 */ | 
				
			|||
	private String quarterId; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 年度ID: yyyy | 
				
			|||
	 */ | 
				
			|||
	private String yearId; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 月维度Id: yyyyMM | 
				
			|||
	 */ | 
				
			|||
	private String monthId; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 分数类型,self:自身得分;sub:下级得分 | 
				
			|||
	 */ | 
				
			|||
	private String scoreType; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 分值 | 
				
			|||
	 */ | 
				
			|||
	private BigDecimal score; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 党建能力:dangjiannengli;治理能力:zhilinengli;服务能力:fuwunengli;网格相关:wanggexiangguan | 
				
			|||
	 */ | 
				
			|||
	private String indexCode; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 所有指标code拼接的字符串 冒号隔开 | 
				
			|||
	 */ | 
				
			|||
	private String allParentIndexCode; | 
				
			|||
 | 
				
			|||
	/** | 
				
			|||
	 * 权重 | 
				
			|||
	 */ | 
				
			|||
	private BigDecimal weight; | 
				
			|||
 | 
				
			|||
} | 
				
			|||
@ -0,0 +1,105 @@ | 
				
			|||
/** | 
				
			|||
 * Copyright 2018 人人开源 https://www.renren.io
 | 
				
			|||
 * <p> | 
				
			|||
 * This program is free software: you can redistribute it and/or modify | 
				
			|||
 * it under the terms of the GNU General Public License as published by | 
				
			|||
 * the Free Software Foundation, either version 3 of the License, or | 
				
			|||
 * (at your option) any later version. | 
				
			|||
 * <p> | 
				
			|||
 * This program is distributed in the hope that it will be useful, | 
				
			|||
 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
				
			|||
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
				
			|||
 * GNU General Public License for more details. | 
				
			|||
 * <p> | 
				
			|||
 * You should have received a copy of the GNU General Public License | 
				
			|||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
				
			|||
 */ | 
				
			|||
 | 
				
			|||
package com.epmet.entity.evaluationindex.indexcal; | 
				
			|||
 | 
				
			|||
import com.baomidou.mybatisplus.annotation.TableName; | 
				
			|||
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; | 
				
			|||
import lombok.Data; | 
				
			|||
import lombok.EqualsAndHashCode; | 
				
			|||
 | 
				
			|||
import java.math.BigDecimal; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * 网格相关自身/下级分值记录表 | 
				
			|||
 * | 
				
			|||
 * @author generator generator@elink-cn.com | 
				
			|||
 * @since v1.0.0 2020-09-23 | 
				
			|||
 */ | 
				
			|||
@Data | 
				
			|||
@EqualsAndHashCode(callSuper = false) | 
				
			|||
@TableName("fact_index_grid_self_sub_score") | 
				
			|||
public class GridSelfSubScoreEntity extends BaseEpmetEntity { | 
				
			|||
 | 
				
			|||
    private static final long serialVersionUID = 1L; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 客户Id | 
				
			|||
     */ | 
				
			|||
    private String customerId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 网格Id | 
				
			|||
     */ | 
				
			|||
    private String gridId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 网格所属的机关Id | 
				
			|||
     */ | 
				
			|||
    private String agencyId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 所有上级ID,用英文逗号分开 | 
				
			|||
     */ | 
				
			|||
    private String allParentIds; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 季度id: yyyyQ1、yyyyQ2、yyyyQ3、yyyyQ4 | 
				
			|||
     */ | 
				
			|||
    private String quarterId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 年度ID: yyyy | 
				
			|||
     */ | 
				
			|||
    private String yearId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 月维度Id: yyyyMM | 
				
			|||
     */ | 
				
			|||
    private String monthId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 自身指标得分 | 
				
			|||
     */ | 
				
			|||
    private BigDecimal selfScore; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 下级指标得分 | 
				
			|||
     */ | 
				
			|||
    private BigDecimal subScore; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 党建能力:dangjiannengli;治理能力:zhilinengli;服务能力:fuwunengli; | 
				
			|||
     */ | 
				
			|||
    private String parentIndexCode; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 所有指标code拼接的字符串 冒号隔开 | 
				
			|||
     */ | 
				
			|||
    private String allParentIndexCode; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 自身指标权重 | 
				
			|||
     */ | 
				
			|||
    private BigDecimal selfWeight; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 下级指标权重 | 
				
			|||
     */ | 
				
			|||
    private BigDecimal subWeight; | 
				
			|||
 | 
				
			|||
} | 
				
			|||
					Loading…
					
					
				
		Reference in new issue