admin
2021-09-24 881f273bca0f94345efb2c0cac52279af4a7f4e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package org.yeshi.utils.generater.entity;
 
import org.yeshi.utils.generater.annotation.admin.form.Text;
 
/**
 * @author Administrator
 * @title: CommonSearchForm
 * @description: 搜索表单
 * @date 2021/9/23 16:12
 */
public class CommonSearchForm {
 
    @Text(title = "开始日期", inputType = Text.Type.DATE)
    private String startDate;
    @Text(title = "结束日期", inputType = Text.Type.DATE)
    private String endDate;
    @Text(title = "请输入关键词", inputType = Text.Type.TEXT)
    private String key;
 
 
    public String getStartDate() {
        return startDate;
    }
 
    public void setStartDate(String startDate) {
        this.startDate = startDate;
    }
 
    public String getEndDate() {
        return endDate;
    }
 
    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
}