|
@ -15,7 +15,7 @@ |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
package com.epmet.entity.evaluationindex.screen; |
|
|
package com.epmet.entity.evaluationindex.indexcal; |
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
|
@ -25,51 +25,71 @@ import lombok.EqualsAndHashCode; |
|
|
import java.math.BigDecimal; |
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 社区相关-党建能力【五级权重】分数表 |
|
|
* 社区相关分数表 |
|
|
* |
|
|
* |
|
|
* @author generator generator@elink-cn.com |
|
|
* @author generator generator@elink-cn.com |
|
|
* @since v1.0.0 2020-08-27 |
|
|
* @since v1.0.0 2020-08-31 |
|
|
*/ |
|
|
*/ |
|
|
@Data |
|
|
@Data |
|
|
@EqualsAndHashCode(callSuper=false) |
|
|
@EqualsAndHashCode(callSuper=false) |
|
|
@TableName("fact_index_community_five_score") |
|
|
@TableName("fact_index_community_score") |
|
|
public class FactIndexCommunityFiveScoreEntity extends BaseEpmetEntity { |
|
|
public class FactIndexCommunityScoreEntity extends BaseEpmetEntity { |
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 机关ID |
|
|
* 客户Id |
|
|
|
|
|
*/ |
|
|
|
|
|
private String customerId; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 组织id |
|
|
*/ |
|
|
*/ |
|
|
private String agencyId; |
|
|
private String agencyId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 月度ID |
|
|
* 社区上一级组织id |
|
|
*/ |
|
|
*/ |
|
|
private String monthId; |
|
|
private String parentAgencyId; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 年度ID: yyyy |
|
|
|
|
|
*/ |
|
|
|
|
|
private String yearId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 季度ID |
|
|
* 季度id: yyyyQ1、yyyyQ2、yyyyQ3、yyyyQ4 |
|
|
*/ |
|
|
*/ |
|
|
private String quarterId; |
|
|
private String quarterId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 年度ID |
|
|
* 月维度Id: yyyyMM |
|
|
*/ |
|
|
*/ |
|
|
private String yearId; |
|
|
private String monthId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 指标ID |
|
|
* 1:总分;0不是;默认0 |
|
|
*/ |
|
|
*/ |
|
|
private String indexId; |
|
|
private String isTotal; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 分数 |
|
|
* 分值 |
|
|
*/ |
|
|
*/ |
|
|
private BigDecimal score; |
|
|
private BigDecimal score; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 发文数量:publish_article |
|
|
* 党建能力:dangjiannengli;治理能力:zhilinengli;服务能力:fuwunengli;社区相关:shequxiangguan |
|
|
|
|
|
*/ |
|
|
|
|
|
private String indexCode; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 所有指标code拼接的字符串 冒号隔开 |
|
|
|
|
|
*/ |
|
|
|
|
|
private String allParentIndexCode; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 权重(同一组权重总和=1) |
|
|
*/ |
|
|
*/ |
|
|
private String type; |
|
|
private BigDecimal weight; |
|
|
|
|
|
|
|
|
} |
|
|
} |