zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.changhong.epc.count.service.count.model;
 
import com.changhong.epc.bean.tenant.norm.AppStanderDef;
import com.changhong.epc.bean.tenant.norm.SuppStander;
import com.changhong.epc.bean.tenant.norm.way.EleType;
import com.changhong.epc.bean.tenant.norm.way.Way;
import com.google.common.base.Objects;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
 
@Data
@EqualsAndHashCode(callSuper=true)
public class SuppStanderCount extends SuppStander{
    
    /**
     * 费用类型名称
     */
    private String mdName = "交通费用";
    
    private Integer mdId;
    
    /**
     * 报销方式名称
     */
    private Way way;
    
    /**
     * 结构为
     *     维度[0][0]  维度[0][1]  维度[0][2]  维度[0][3]
     *     维度[1][0]  维度[1][1]  维度[1][2]  维度[1][3]
     *     维度[2][0]  维度[2][1]  维度[2][2]  维度[2][3]
     *     维度[3][0]  维度[3][1]  维度[3][2]  维度[3][3]
     */
    private MatrixList child;
 
    /**
     * 获得维度二维数组
     * @Title: getMatrix
     
     * @param @return    设定文件
     * @return AppStanderCount[][]    返回类型
     * @throws
     */
    public AppStanderDef[][] getMatrix(){
        return child.toMatrix();
    }
    
    public MatrixList getChild() {
        return child;
    }
 
    public void setChild(MatrixList child) {
        this.child = child;
    }
 
    public String getMdName() {
        return mdName;
    }
 
    public void setMdName(String mdName) {
        this.mdName = mdName;
    }
 
    public Integer getMdId() {
        return mdId;
    }
 
    public void setMdId(Integer mdId) {
        this.mdId = mdId;
    }
 
    public Way getWay() {
        return way;
    }
 
    public void setWayName(Way wayName) {
        this.way = wayName;
    }
    private static String typeOf[] = {"","TJ","BZ","JE"};
    public Boolean isCoverType(Integer type){
        
        for (EleType bxType : way.getEleTypes()) {
            if(Objects.equal(bxType.toString(), typeOf[type])){
                return true;
            }
        }
        return false;
    }
}