Commit 44159ed5 authored by wanmin@bu2.cn's avatar wanmin@bu2.cn

dapp增加描述字段

parent ed10449a
...@@ -3,56 +3,58 @@ package com.roo.entity; ...@@ -3,56 +3,58 @@ package com.roo.entity;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import com.baomidou.mybatisplus.annotation.*; import com.baomidou.mybatisplus.annotation.*;
import java.util.Date;
import java.util.Date;
/** /**
* dapp管理 * dapp管理
* *
* @author momin 460363410@qq.com * @author momin 460363410@qq.com
* @since 1.0 2021-07-02 * @since 1.0 2021-07-02
*/ */
@Data @Data
@EqualsAndHashCode(callSuper=false) @EqualsAndHashCode(callSuper = false)
@TableName("roo_wallet.t_dapps") @TableName("roo_wallet.t_dapps")
public class DappsEntity { public class DappsEntity {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@TableId @TableId
private Long id; private Long id;
/** /**
* 名称 * 名称
*/ */
private String name; private String name;
/** /**
* 图标 * 图标
*/ */
private String icon; private String icon;
/** /**
* 类型 * 类型
*/ */
private String type; private String type;
/** /**
* 访问地址 * 访问地址
*/ */
private String links; private String links;
/** private String discription;
* 是否热门(1:热门 0:非热门) /**
*/ * 是否热门(1:热门 0:非热门)
private Integer hots; */
/** private Integer hots;
* dapp所属链 /**
*/ * dapp所属链
private String chain; */
/** private String chain;
* 是否显示(show、hide) /**
*/ * 是否显示(show、hide)
private String display; */
/** private String display;
* 排序(排序,最小靠前) /**
*/ * 排序(排序,最小靠前)
private Integer sort; */
/** private Integer sort;
* 收录时间 /**
*/ * 收录时间
private Date createTime; */
private Date createTime;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment