You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

111 lines
2.1 KiB

4 years ago
package xyz.wbsite.module.admin.req;
import xyz.wbsite.frame.base.BaseFindRequest;
import java.util.Date;
import xyz.wbsite.frame.validation.Select;
/**
* ConfigFindRequest -
*
* @author wangbing
* @version 0.0.1
* @since 2021-02-07
*/
public class ConfigFindRequest extends BaseFindRequest {
/**
* .
*/
private String confName;
/**
* .
*/
private String confNameLike;
/**
* .
* HTTP:
* SERVER:
* LOCATION:
*/
@Select({"HTTP", "SERVER", "LOCATION"})
private String confType;
/**
* .
*/
private String confValueLike;
/**
* .
*/
private String confNoteLike;
/**
* .
*/
private Date startDate;
/**
* .
*/
private Date endDate;
public String getConfName() {
return this.confName;
}
public void setConfName(String confName) {
this.confName = confName;
}
public String getConfNameLike() {
return this.confNameLike;
}
public void setConfNameLike(String confNameLike) {
this.confNameLike = confNameLike;
}
public String getConfType() {
return this.confType;
}
public void setConfType(String confType) {
this.confType = confType;
}
public String getConfValueLike() {
return this.confValueLike;
}
public void setConfValueLike(String confValueLike) {
this.confValueLike = confValueLike;
}
public String getConfNoteLike() {
return this.confNoteLike;
}
public void setConfNoteLike(String confNoteLike) {
this.confNoteLike = confNoteLike;
}
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public Date getEndDate() {
return endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
}

Powered by TurnKey Linux.