|
@@ -5,6 +5,9 @@ import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.time.LocalDate;
|
|
|
|
|
|
/**
|
|
|
* @Description: ReturnedBillDTO
|
|
@@ -31,4 +34,15 @@ public class ReturnedBillDTO extends PageRequest {
|
|
|
@ApiModelProperty("排序类型。1日期升序。2日期降序。3总金额升序。4总金额降序")
|
|
|
private Integer sortedType;
|
|
|
|
|
|
+ @ApiModelProperty("到期时间,[1]今天, [2]本周(近7天), [3]本月(近30天), [4]本年")
|
|
|
+ private Integer overdueType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "自定义开始日期yyyy-MM-dd,string")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private LocalDate startDate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "自定义结束日期yyyy-MM-dd,string")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
+ private LocalDate endDate;
|
|
|
+
|
|
|
}
|