package com.zy.common.model; import java.util.List; /** * Created by vincent on 2020-05-12 */ public class PowerDto { private String two; private List three; public String getTwo() { return two; } public void setTwo(String two) { this.two = two; } public List getThree() { return three; } public void setThree(List three) { this.three = three; } }