📄 contentquerycriteria.java
字号:
/**
*
*/
package com.sunwah.baseapp.content.criteria;
import com.sunwah.baseapp.common.QueryCriteria;
/**
* @author MARK
*
*/
public class ContentQueryCriteria implements QueryCriteria {
private Long categoryId;
private String contentTitle;
public Long getCategoryId() {
return categoryId;
}
public void setCategoryId(Long categoryId) {
this.categoryId = categoryId;
}
public String getContentTitle() {
return contentTitle;
}
public void setContentTitle(String contentTitle) {
this.contentTitle = contentTitle;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -