| | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * 销售台账对象 sales_ledger |
| | |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date entryDate; |
| | | |
| | | /** |
| | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "已开票金额(元)") |
| | | private BigDecimal invoiceTotal; |
| | | |
| | | @ApiModelProperty(value = "付款方式") |
| | | private String paymentMethod; |
| | | } |
| | | |