| | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class ReceiptPayment { |
| | |
| | | @ApiModelProperty(value = "invoice_ledger开票台账主键ID") |
| | | private Integer invoiceLedgerId; |
| | | |
| | | @ApiModelProperty(value = "sales_ledger销售台账主键ID") |
| | | private Long salesLedgerId; |
| | | |
| | | @ApiModelProperty(value = "sales_ledger_product销售台账产品主键ID") |
| | | private Long salesLedgerProductId; |
| | | |
| | | @ApiModelProperty(value = "来款日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |