cloudroam
2024-10-22 b3bc4f358434ec82f90eaa8b87f68b68a2652fa7
src/main/java/com/mzl/flower/entity/wallet/WalletBillRecordDO.java
@@ -2,6 +2,7 @@
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;
@@ -16,26 +17,26 @@
@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;