package com.kkb.ssm.po;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class ItemExample {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
public ItemExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andIdIsNull() {
addCriterion("id is null");
return (Criteria) this;
}
public Criteria andIdIsNotNull() {
addCriterion("id is not null");
return (Criteria) this;
}
public Criteria andIdEqualTo(Integer value) {
addCriterion("id =", value, "id");
return (Criteria) this;
}
public Criteria andIdNotEqualTo(Integer value) {
addCriterion("id <>", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThan(Integer value) {
addCriterion("id >", value, "id");
return (Criteria) this;
}
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
addCriterion("id >=", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThan(Integer value) {
addCriterion("id <", value, "id");
return (Criteria) this;
}
public Criteria andIdLessThanOrEqualTo(Integer value) {
addCriterion("id <=", value, "id");
return (Criteria) this;
}
public Criteria andIdIn(List<Integer> values) {
addCriterion("id in", values, "id");
return (Criteria) this;
}
public Criteria andIdNotIn(List<Integer> values) {
addCriterion("id not in", values, "id");
return (Criteria) this;
}
public Criteria andIdBetween(Integer value1, Integer value2) {
addCriterion("id between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andIdNotBetween(Integer value1, Integer value2) {
addCriterion("id not between", value1, value2, "id");
return (Criteria) this;
}
public Criteria andNameIsNull() {
addCriterion("name is null");
return (Criteria) this;
}
public Criteria andNameIsNotNull() {
addCriterion("name is not null");
return (Criteria) this;
}
public Criteria andNameEqualTo(String value) {
addCriterion("name =", value, "name");
return (Criteria) this;
}
public Criteria andNameNotEqualTo(String value) {
addCriterion("name <>", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThan(String value) {
addCriterion("name >", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThanOrEqualTo(String value) {
addCriterion("name >=", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThan(String value) {
addCriterion("name <", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThanOrEqualTo(String value) {
addCriterion("name <=", value, "name");
return (Criteria) this;
}
public Criteria andNameLike(String value) {
addCriterion("name like", value, "name");
return (Criteria) this;
}
public Criteria andNameNotLike(String value) {
addCriterion("name not like", value, "name");
return (Criteria) this;
}
public Criteria andNameIn(List<String> values) {
addCriterion("name in", values, "name");
return (Criteria) this;
}
public Criteria andNameNotIn(List<String> values) {
addCriterion("name not in", values, "name");
return (Criteria) this;
}
public Criteria andNameBetween(String value1, String value2) {
addCriterion("name between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andNameNotBetween(String value1, String value2) {
addCriterion("name not between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andPriceIsNull() {
addCriterion("price is null");
return (Criteria) this;
}
public Criteria andPriceIsNotNull() {
addCriterion("price is not null");
return (Criteria) this;
}
public Criteria andPriceEqualTo(Float value) {
addCriterion("price =", value, "price");
return (Criteria) this;
}
public Criteria andPriceNotEqualTo(Float value) {
addCriterion("price <>", value, "price");
return (Criteria) this;
}
public Criteria andPriceGreaterThan(Float value) {
addCriterion("price >", value, "price");
return (Criteria) this;
}
public Criteria andPriceGreaterThanOrEqualTo(Float value) {
addCr
没有合适的资源?快使用搜索试试~ 我知道了~
SpringMVC录播课程资料.zip
共80个文件
xml:22个
class:11个
properties:8个
需积分: 1 0 下载量 150 浏览量
2023-04-23
22:15:33
上传
评论
收藏 2.74MB ZIP 举报
温馨提示
SpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpringMVC录播课程资料.zipSpring
资源推荐
资源详情
资源评论
收起资源包目录
SpringMVC录播课程资料.zip (80个子文件)
SpringMVC录播课程资料
SpringMVC 录播课讲义.pdf 2.14MB
代码
ssm-5
.classpath 1KB
.settings
org.eclipse.wst.jsdt.ui.superType.name 6B
org.eclipse.jdt.core.prefs 430B
org.eclipse.core.resources.prefs 93B
.jsdtscope 639B
org.eclipse.wst.validation.prefs 50B
org.eclipse.wst.common.component 671B
org.eclipse.wst.common.project.facet.core.xml 252B
org.eclipse.wst.jsdt.ui.superType.container 49B
org.eclipse.m2e.core.prefs 90B
pom.xml 5KB
src
main
resources
spring
applicationContext-service.xml 2KB
springmvc.xml 1KB
applicationContext-dao.xml 2KB
db.properties 138B
log4j.properties 287B
java
com
kkb
ssm
mapper
ItemMapper.java 810B
ItemMapper.xml 7KB
controller
ItemController.java 591B
service
ItemServiceImpl.java 564B
ItemService.java 156B
po
Item.java 982B
ItemExample.java 16KB
webapp
WEB-INF
web.xml 1KB
target
classes
spring
applicationContext-service.xml 2KB
springmvc.xml 1KB
applicationContext-dao.xml 2KB
db.properties 138B
log4j.properties 287B
com
kkb
ssm
mapper
ItemMapper.class 915B
ItemMapper.xml 7KB
controller
ItemController.class 908B
service
ItemServiceImpl.class 1KB
ItemService.class 232B
po
ItemExample$Criterion.class 2KB
ItemExample.class 2KB
Item.class 2KB
ItemExample$Criteria.class 7KB
ItemExample$GeneratedCriteria.class 11KB
m2e-wtp
web-resources
META-INF
MANIFEST.MF 107B
maven
com.kkb
ssm-5
pom.properties 262B
pom.xml 5KB
maven-status
maven-compiler-plugin
compile
default-compile
createdFiles.lst 0B
inputFiles.lst 639B
tomcat
logs
access_log.2019-04-02 108B
conf
web.xml 153KB
tomcat-users.xml 1KB
logging.properties 3KB
.project 1KB
springmvc-demo-5
.classpath 1KB
.settings
org.eclipse.wst.jsdt.ui.superType.name 6B
org.eclipse.jdt.core.prefs 430B
org.eclipse.core.resources.prefs 93B
.jsdtscope 639B
org.eclipse.wst.validation.prefs 50B
org.eclipse.wst.common.component 704B
org.eclipse.wst.common.project.facet.core.xml 252B
org.eclipse.wst.jsdt.ui.superType.container 49B
org.eclipse.m2e.core.prefs 90B
pom.xml 2KB
src
main
resources
springmvc.xml 1KB
java
com
kkb
springmvc
controller
HelloController.java 599B
webapp
WEB-INF
web.xml 2KB
jsp
hello.jsp 372B
target
classes
springmvc.xml 1KB
com
kkb
springmvc
controller
HelloController.class 759B
m2e-wtp
web-resources
META-INF
MANIFEST.MF 107B
maven
com.kkb
springmvc-demo-5
pom.properties 295B
pom.xml 2KB
maven-status
maven-compiler-plugin
compile
default-compile
createdFiles.lst 0B
inputFiles.lst 132B
tomcat
work
Tomcat
localhost
_
org
apache
jsp
WEB_002dINF
jsp
hello_jsp.class 4KB
hello_jsp.java 3KB
logs
access_log.2019-04-02 318B
conf
web.xml 153KB
tomcat-users.xml 1KB
logging.properties 3KB
.project 1KB
SERVLET.pdf 811KB
共 80 条
- 1
资源评论
Java码库
- 粉丝: 2226
- 资源: 6176
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 强化大型语言模型作为智能体的能力研究:引入AgentTuning方法及其应用效果评估
- 断裂检测20-YOLO(v5至v9)、COCO、CreateML、Darknet、Paligemma、TFRecord、VOC数据集合集.rar
- AgentOhana统一数据和训练流水线提高自主代理学习效果
- 房屋租赁系统源码 SpringBoot + Vue 实现全功能解析
- 基于大型语言模型的自主智能体研究综述
- 评估生成搜索引擎中的可验证性指标与信任度
- 数点颗粒粒子检测50-YOLO(v5至v9)、COCO、CreateML、Darknet、Paligemma、TFRecord、VOC数据集合集.rar
- Agent-FLAN: 针对大规模语言模型的有效代理调优数据与方法设计
- 大型语言模型与16000多个真实世界API集成的ToolLLM框架
- FPGA使用EMIO实现I2C通信驱动OLED显示屏PS部分(SSD1306)
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功