5 changed files with 48 additions and 16 deletions
@ -0,0 +1,24 @@
|
||||
package com.logpm.supervise.vo.api; |
||||
|
||||
import com.logpm.supervise.entity.IndicatorsAnnexEntity; |
||||
import com.logpm.supervise.entity.IndicatorsEntity; |
||||
import com.logpm.supervise.vo.IndicatorsVO; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class BeIndicatorsVO { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
private Integer bonusPoin; |
||||
|
||||
private Integer deductionPoints; |
||||
|
||||
private List<IndicatorsVO> indicatorsVOS; |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue