liuyuhang_branch
刘宇航 10 months ago
parent 2f644dbd6f
commit caeb8e118f

@ -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;
}
}
Loading…
Cancel
Save