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;
|
}
|
}
|