首页 > 其他 > 详细

maven构建SSM工程[应用]3

时间:2019-06-15 12:50:42      阅读:86      评论:0      收藏:0      [点我收藏+]

4.Dao

4.1先编写pojo模型类

 

public class Items {
private Integer id;
private String name;
private Double price;
private String pic;
private Date createtime;
private String detail;

public Items() {
}

public Items(Integer id, String name, Double price, String pic, Date createtime, String detail) {
this.id = id;
this.name = name;
this.price = price;
this.pic = pic;
this.createtime = createtime;
this.detail = detail;
}

public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public Double getPrice() {
return price;
}

public void setPrice(Double price) {
this.price = price;
}

public String getPic() {
return pic;
}

public void setPic(String pic) {
this.pic = pic;
}

public Date getCreatetime() {
return createtime;
}

public void setCreatetime(Date createtime) {
this.createtime = createtime;
}

public String getDetail() {
return detail;
}

public void setDetail(String detail) {
this.detail = detail;
}

@Override
public String toString() {
return "Items{" +
"id=" + id +
", name=‘" + name + ‘\‘‘ +
", price=" + price +
", pic=‘" + pic + ‘\‘‘ +
", createtime=" + createtime +
", detail=‘" + detail + ‘\‘‘ +
‘}‘;
}
}
Dao层代码接口
public interface ItemsDao {
@Select("select * from items where id=#{id}")
public Items findById(Integer id);
}

 

maven构建SSM工程[应用]3

原文:https://www.cnblogs.com/duansuzhexie/p/11027086.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!