package cc.mrbird.febs.dapp.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author wzy
|
* @date 2022-07-28
|
**/
|
@Data
|
@TableName("dapp_member_box_record")
|
public class DappMemberBoxRecordEntity {
|
|
private Date createTime = new Date();
|
|
@TableId(value = "id",type = IdType.AUTO)
|
private Long id;
|
|
private Long memberId;
|
|
private String address;
|
|
private Long fromMemberId;
|
|
private String fromAddress;
|
}
|