com.ape9527.core.entity.SysDictDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ape-core Show documentation
Show all versions of ape-core Show documentation
Ape low code platform core module
The newest version!
package com.ape9527.core.entity;
import com.ape9527.core.entity.BaseEntity;
import lombok.Data;
/**
* @author YuanShuai[[email protected]]
*/
@Data
public class SysDictDetail extends BaseEntity {
private String dictName;
private String dictLabel;
private String dictValue;
}