You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
939 B
58 lines
939 B
|
|
|
|
package com.how2java.tmall.pojo;
|
|
|
|
public class PropertyValue {
|
|
private Integer id;
|
|
|
|
private Integer pid;
|
|
|
|
private Integer ptid;
|
|
|
|
private String value;
|
|
|
|
/*非数据库字段*/
|
|
private Property property;
|
|
|
|
public Property getProperty() {
|
|
return property;
|
|
}
|
|
|
|
public void setProperty(Property property) {
|
|
this.property = property;
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getPid() {
|
|
return pid;
|
|
}
|
|
|
|
public void setPid(Integer pid) {
|
|
this.pid = pid;
|
|
}
|
|
|
|
public Integer getPtid() {
|
|
return ptid;
|
|
}
|
|
|
|
public void setPtid(Integer ptid) {
|
|
this.ptid = ptid;
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
public void setValue(String value) {
|
|
this.value = value == null ? null : value.trim();
|
|
}
|
|
}
|
|
|