This commit is contained in:
2023-07-05 14:46:26 +08:00
parent 32abe711f5
commit 869cdca18c
2 changed files with 14 additions and 1 deletions

View File

@@ -2,6 +2,8 @@ package com.jsowell.pile.domain;
import com.jsowell.common.annotation.Excel;
import com.jsowell.common.core.domain.BaseEntity;
import lombok.Getter;
import lombok.Setter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
@@ -11,6 +13,8 @@ import org.apache.commons.lang3.builder.ToStringStyle;
* @author jsowell
* @date 2023-06-15
*/
@Getter
@Setter
public class AdapayMemberAccount extends BaseEntity {
private static final long serialVersionUID = 1L;
@@ -19,6 +23,11 @@ public class AdapayMemberAccount extends BaseEntity {
*/
private Long id;
/**
* 状态 0-待审核1-审核通过
*/
private String status;
/**
* 运营商id
*/