| | |
| | | |
| | | import java.math.BigDecimal; |
| | | 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; |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("t_wallet_bill_record") |
| | | public class WalletBillRecordDO extends BaseEntity { |
| | | public class WalletBillRecordDO extends BaseAutoEntity { |
| | | |
| | | |
| | | @ApiModelProperty(value = "供应商Id") |
| | | private Long supplierId; |
| | | private String supplierId; |
| | | |
| | | @ApiModelProperty(value = "钱包Id") |
| | | private Long walletId; |
| | | |
| | | @ApiModelProperty(value = "账单变动类型(提现,结算)") |
| | | private Integer type; |
| | | private String type; |
| | | |
| | | @ApiModelProperty(value = "类型明细") |
| | | private Integer typeDetail; |
| | | private String typeDetail; |
| | | |
| | | @ApiModelProperty(value = "转账Id") |
| | | private String transferId; |
| | | |
| | | @ApiModelProperty(value = "变动方式(增加、减少") |
| | | private Integer method; |
| | | private String method; |
| | | |
| | | @ApiModelProperty(value = "原金额") |
| | | private BigDecimal originalAmount; |