diff --git a/src/main/java/com/wsk/pojo/GoodsCar.java b/src/main/java/com/wsk/pojo/GoodsCar.java new file mode 100644 index 0000000..4516c7a --- /dev/null +++ b/src/main/java/com/wsk/pojo/GoodsCar.java @@ -0,0 +1,66 @@ +package com.wsk.pojo; + +import java.io.Serializable; +import java.util.Date; + +public class GoodsCar implements Serializable { + private Integer id; + + private Date modified; + + private Integer sid; + + private Integer uid; + + private Integer quantity; + + private Integer display; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Date getModified() { + return modified == null ? null : (Date) modified.clone(); + } + + public void setModified(Date modified) { + this.modified = modified == null ? null : (Date) modified.clone(); + } + + public Integer getSid() { + return sid; + } + + public void setSid(Integer sid) { + this.sid = sid; + } + + public Integer getQuantity() { + return quantity; + } + + public void setQuantity(Integer quantity) { + this.quantity = quantity; + } + + public Integer getDisplay() { + return display; + } + + public void setDisplay(Integer display) { + this.display = display; + } + + public Integer getUid() { + return uid; + } + + public void setUid(Integer uid) { + this.uid = uid; + } +} \ No newline at end of file