New file |
| | |
| | | package com.xcong.excoin.modules.member.entity;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Date;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import com.fasterxml.jackson.annotation.JsonFormat;
|
| | |
|
| | | import lombok.Data;
|
| | | /**
|
| | | * 版本表
|
| | | *
|
| | | **/
|
| | | @Data
|
| | | @TableName("app_version")
|
| | | public class AppVersionEntity implements Serializable {
|
| | | /**
|
| | | * 账号状态 - 禁用
|
| | | */
|
| | | public static final Integer type_and = 1;
|
| | |
|
| | | /**
|
| | | * 账号状态 - 启用
|
| | | */
|
| | | public static final Integer type_app = 2;
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | @TableId(value = "id",type = IdType.AUTO)
|
| | | private Long id;
|
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
| | | private Date createtime;
|
| | | |
| | | private String version;
|
| | | private String content;
|
| | | private String address;
|
| | | private Integer type;
|
| | | |
| | |
|
| | | }
|