| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.text.Format; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | |
| | | @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 = "invoice_registration_product表主键") |
| | | private Integer invoiceRegistrationProductId; |
| | | |
| | | @ApiModelProperty(value = "发票号") |
| | | private String invoiceNo; |
| | | |
| | | @ApiModelProperty(value = "发票金额") |
| | | private BigDecimal invoiceAmount; |
| | | |
| | | @ApiModelProperty(value = "税率") |
| | | private BigDecimal taxRate; |
| | | private BigDecimal invoiceTotal; |
| | | |
| | | @ApiModelProperty(value = "开票人") |
| | | private String invoicePerson; |