copy from src/main/java/com/xcong/excoin/modules/authentication/entity/MemberAuthenticationEntity.java
copy to src/main/java/com/xcong/excoin/modules/member/vo/MemberAuthenticationVo.java
File was copied from src/main/java/com/xcong/excoin/modules/authentication/entity/MemberAuthenticationEntity.java |
| | |
| | | package com.xcong.excoin.modules.authentication.entity;
|
| | | package com.xcong.excoin.modules.member.vo;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | import com.xcong.excoin.common.entity.BaseEntity;
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | |
|
| | | import lombok.Data;
|
| | |
|
| | | @Data
|
| | | @TableName("member_authentication")
|
| | | public class MemberAuthenticationEntity extends BaseEntity{
|
| | | public class MemberAuthenticationVo {
|
| | |
|
| | | @TableId(value = "id",type = IdType.AUTO)
|
| | | private Long id;
|
| | | |
| | | /**
|
| | | * |
| | | * 实名认证状态 0-审核未通过 1-审核通过 2-等待审核
|
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | private Integer certifyStatus;
|
| | | |
| | | /**
|
| | | * 用户ID
|
| | | */
|