文件名从 src/main/java/com/mzl/flower/entity/wallet/WithdrawRecordDO.java 修改 |
| | |
| | | import java.time.LocalDateTime; |
| | | |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import com.mzl.flower.base.BaseEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("t_withdraw_record") |
| | | public class WithdrawRecordDO extends BaseAutoEntity { |
| | | @TableName("t_wallet_withdraw_record") |
| | | public class WalletWithdrawRecordDO extends BaseAutoEntity { |
| | | |
| | | |
| | | /** |
| | |
| | | * 审核状态 |
| | | */ |
| | | @ApiModelProperty(value = "审核状态(待审核、审核通过、审核不通过)") |
| | | private Integer approverState; |
| | | private Integer approveState; |
| | | |
| | | /** |
| | | * 不通过原因 |