trick9191 7 роки тому
батько
коміт
86dd6f4997

+ 46 - 0
patient-co-wlyy/src/main/java/com/yihu/wlyy/entity/patient/ServerLabelTree.java

@ -0,0 +1,46 @@
package com.yihu.wlyy.entity.patient;
import java.util.List;
/**
 * Created by Trick on 2017/6/13.
 */
public class ServerLabelTree {
    private String type;
    private String code;
    private String name;
    private List<ServerLabelTree> ch;
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public List<ServerLabelTree> getCh() {
        return ch;
    }
    public void setCh(List<ServerLabelTree> ch) {
        this.ch = ch;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}