| | |
| | | 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; |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("t_wallet_bill_record") |
| | | public class WalletBillRecordDO extends BaseAutoEntity { |
| | | |
| | | public class WalletBillRecordDO extends BaseEntity { |
| | | |
| | | @ApiModelProperty(value = "供应商Id") |
| | | private Long supplierId; |
| | |
| | | |
| | | @ApiModelProperty(value = "类型明细") |
| | | private String typeDetail; |
| | | |
| | | @ApiModelProperty(value = "结算单id") |
| | | private String settlementId; |
| | | |
| | | @ApiModelProperty(value = "转账Id") |
| | | private String transferId; |
| | |
| | | @ApiModelProperty(value = "余额") |
| | | private BigDecimal balance; |
| | | |
| | | @ApiModelProperty(value = "转账明细id") |
| | | private String transferDetailId; |
| | | |
| | | @ApiModelProperty(value = "openId") |
| | | private String openId; |
| | | |
| | | } |