| | |
| | | package com.mzl.flower.entity.wallet; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import com.mzl.flower.base.BaseEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @TableName("t_wallet_bill_record") |
| | | public class WalletBillRecordDO extends BaseEntity { |
| | | |
| | | |
| | | @ApiModelProperty(value = "供应商Id") |
| | | private Long supplierId; |
| | | |
| | |
| | | private Long walletId; |
| | | |
| | | @ApiModelProperty(value = "账单变动类型(提现,结算)") |
| | | private Integer type; |
| | | private String type; |
| | | |
| | | @ApiModelProperty(value = "类型明细") |
| | | private Integer typeDetail; |
| | | private String typeDetail; |
| | | |
| | | @ApiModelProperty(value = "结算单id") |
| | | private String settlementId; |
| | | |
| | | @ApiModelProperty(value = "转账Id") |
| | | private String transferId; |
| | | |
| | | @ApiModelProperty(value = "变动方式(增加、减少") |
| | | private Integer method; |
| | | private String method; |
| | | |
| | | @ApiModelProperty(value = "原金额") |
| | | private BigDecimal originalAmount; |
| | |
| | | @ApiModelProperty(value = "余额") |
| | | private BigDecimal balance; |
| | | |
| | | @ApiModelProperty(value = "转账明细id") |
| | | private String transferDetailId; |
| | | |
| | | @ApiModelProperty(value = "openId") |
| | | private String openId; |
| | | |
| | | } |