package com.xcong.farmer.cms.modules.system.entity; import com.baomidou.mybatisplus.annotation.TableName; import com.xcong.farmer.cms.common.system.base.BaseEntity; import lombok.Data; /** * @author wzy * @date 2021-09-25 **/ @Data @TableName("data_dictionary_custom") public class DataDictionaryCustom extends BaseEntity { private String type; private String code; private String value; private String description; }