package com.doumee.dao.business.vo;
|
|
import com.doumee.dao.business.model.YwContractBill;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2025/1/8 15:32
|
*/
|
@Data
|
public class YwContractBillDataVO {
|
|
@ApiModelProperty(value = "收款账单数", example = "1")
|
private Integer inAmount;
|
|
@ApiModelProperty(value = "收款账单金额", example = "1")
|
private BigDecimal inFee;
|
|
@ApiModelProperty(value = "付款账单数", example = "1")
|
private Integer payAmount;
|
|
@ApiModelProperty(value = "付款账单金额", example = "1")
|
private BigDecimal payFee;
|
|
@ApiModelProperty(value = "账单列表", example = "1")
|
private List<YwContractBill> ywContractBillList;
|
|
}
|