| | |
| | | package com.ruoyi.sales.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.ruoyi.sales.pojo.ReceiptPayment; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | public class ReceiptPaymentDto extends ReceiptPayment { |
| | |
| | | @ApiModelProperty(value = "待回款金额") |
| | | private BigDecimal noReceiptAmount; |
| | | |
| | | @TableField(exist = false) |
| | | private Boolean status; |
| | | |
| | | @TableField(exist = false) |
| | | private String receiptPaymentDateStart; |
| | | @TableField(exist = false) |
| | | private String receiptPaymentDateEnd; |
| | | |
| | | |
| | | } |