1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.taoke.autopay.vo.admin;
|
| import lombok.Builder;
| import lombok.Data;
| import lombok.experimental.Tolerate;
|
| /**
| * @author hxh
| * @title: OrderSearchVO
| * @description: 订单搜索
| * @date 2024/7/18 22:33
| */
| @Builder
| @Data
| public class AgentSearchVO {
| @Tolerate
| public AgentSearchVO(){
|
| }
| private String key;
| private String startDate;
| private String endDate;
| }
|
|