/** * Copyright (c) 2019 人人开源 All rights reserved. *
* https://www.renren.io *
* 版权所有,侵权必究! */ package com.zt.modules.sys.dto; import com.zt.core.sys.dto.DictItemDto; import lombok.Data; /** * 字典数据 * * @author hehz */ @Data public class DictEnumItemDto extends DictItemDto { private String name; private Object value; public DictEnumItemDto(String name, String dictLabel, Object value) { this.name = name; this.value = value; this.setDictLabel(dictLabel); this.setDictValue(String.valueOf(value)); } }