| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "销售台账sales_ledger") |
| | | private Integer salesLedgerId; |
| | | |
| | | @ApiModelProperty(value = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @ApiModelProperty(value = "客户名称ID") |
| | | private Integer customerId; |
| | | |
| | | @ApiModelProperty(value = "发票号") |
| | | private String invoiceNo; |
| | | |
| | | @ApiModelProperty(value = "发票金额") |
| | | private BigDecimal invoiceAmount; |
| | | |
| | | @ApiModelProperty(value = "税率") |
| | | private BigDecimal taxRate; |
| | | |
| | | @ApiModelProperty(value = "回款形式 0电汇1承兑") |
| | | private String receiptPaymentType; |
| | |
| | | private Integer invoiceLedgerId; |
| | | |
| | | @ApiModelProperty(value = "来款日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime receiptPaymentDate; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate receiptPaymentDate; |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |