|
|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.example.demo.domain.vo.cash; |
|
|
|
|
|
|
|
import cn.hutool.core.date.DateTime; |
|
|
|
import com.alibaba.excel.annotation.ExcelIgnore; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
@ -113,10 +114,10 @@ public class CashCollection implements Serializable { |
|
|
|
//搜索筛条件 |
|
|
|
@ExcelIgnore |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
private LocalDateTime startTime; // 付款时间起 |
|
|
|
private DateTime startTime; // 付款时间起 |
|
|
|
@ExcelIgnore |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai") |
|
|
|
private LocalDateTime endTime; // 付款时间止 |
|
|
|
private DateTime endTime; // 付款时间止 |
|
|
|
@ExcelIgnore |
|
|
|
private String sortField; //排序字段 |
|
|
|
@ExcelIgnore |
|
|
|
|