/** 
 | 
 * Copyright (c) 2019 人人开源 All rights reserved. 
 | 
 * <p> 
 | 
 * https://www.renren.io 
 | 
 * <p> 
 | 
 * 版权所有,侵权必究! 
 | 
 */ 
 | 
  
 | 
package com.zt.core.sys.dto; 
 | 
  
 | 
import lombok.Data; 
 | 
  
 | 
import java.io.Serializable; 
 | 
  
 | 
/** 
 | 
 *  字典数据 
 | 
 * 
 | 
 * @author hehz 
 | 
 */ 
 | 
@Data 
 | 
public class DictItemDto implements Serializable { 
 | 
    private String dictLabel; 
 | 
    private String dictValue; 
 | 
  
 | 
    public DictItemDto() { 
 | 
    } 
 | 
  
 | 
    public DictItemDto(String dictLabel, String dictValue) { 
 | 
        this.dictLabel = dictLabel; 
 | 
        this.dictValue = dictValue; 
 | 
    } 
 | 
} 
 |