package cn.com.goldenwater.dcproj.dto; import io.swagger.annotations.ApiModelProperty; import java.util.List; public class TacObjPblmstbDto { @ApiModelProperty("专业") private String class1Name; @ApiModelProperty("专业标识") private String pblmType; @ApiModelProperty("专业子类型") private String class1; @ApiModelProperty("子类型") private List children; public String getPblmType() { return pblmType; } public void setPblmType(String pblmType) { this.pblmType = pblmType; } public String getClass1Name() { return class1Name; } public void setClass1Name(String class1Name) { this.class1Name = class1Name; } public String getClass1() { return class1; } public void setClass1(String class1) { this.class1 = class1; } public List getChildren() { return children; } public void setChildren(List children) { this.children = children; } }