2 changed files with 26 additions and 1 deletions
@ -0,0 +1,25 @@ |
|||||
|
package com.epmet.support.normalizing.batch; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @author liujianjun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IndexScoreVo implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 65642416224721650L; |
||||
|
/** |
||||
|
* 指标code |
||||
|
*/ |
||||
|
private String indexCode; |
||||
|
/** |
||||
|
* 分值 |
||||
|
*/ |
||||
|
private BigDecimal score; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue