zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1  package com.changhong.epc.bean.tenant.norm.extend;
Z 2
3 import lombok.Data;
4 import lombok.EqualsAndHashCode;
5
6 import java.util.List;
7
8 @Data
9 @EqualsAndHashCode(callSuper=true)
10 public class SuppStanderExtend extends SuppStanderCount{
11
12     private static final long serialVersionUID = 1L;
13     
14     /**
15      * 从数据库里查出来的该费用类型的补助标准
16      */
17     private List<AppStanderExtend> appStanderDefs;
18     
19     /**
20      * 转换后的补助标准
21      */
22     private List<List<AppStanderExtend>> appStanderDefMatrix;
23
24     /**
25      * 是否忽略报销费用项
26      */
27     private Integer overlookExpendType;
28
29     public Integer getOverlookExpendType(){
30         return overlookExpendType == null ? 0 : overlookExpendType;
31     }
32
33 }