package org.jeecg.modules.eam.dto; import lombok.Data; import lombok.experimental.Accessors; /** * @Description: EchartsDto * @Date:2021/5/20 * @Version:V1.0 */ @Data @Accessors(chain = true) public class EchartsDto { public EchartsDto() { } public EchartsDto(String code, String name, String value, String total, String percentage) { this.code = code; this.name = name; this.value = value; this.total = total; this.percentage = percentage; } /** * code */ private String code; /** * name */ private String name; /** * 值 */ private String value; /** * 总数 */ private String total; /** * 占比 */ private String percentage; }