DictSelf.java
352 Bytes
package com.lhcredit.project.websystem.domain;
import lombok.Data;
@Data
public class DictSelf {
/**
* 字典标签
*/
private String dictLabel;
/**
* 字典键值
*/
private String dictValue;
/**
* 是否vip
*/
private Integer ifVip;
/**
* 排序
*/
private Long dictSort;
}