package com.java110.po.resourceStoreUseRecord;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class ResourceStoreUseRecordPo implements Serializable {
|
|
private String repairId;
|
private String unitPrice;
|
private String createUserId;
|
private String quantity;
|
private String rsurId;
|
private String createUserName;
|
private String remark;
|
private String storeId;
|
private String resId;
|
private String communityId;
|
|
public String getRepairId() {
|
return repairId;
|
}
|
|
public void setRepairId(String repairId) {
|
this.repairId = repairId;
|
}
|
|
public String getUnitPrice() {
|
return unitPrice;
|
}
|
|
public void setUnitPrice(String unitPrice) {
|
this.unitPrice = unitPrice;
|
}
|
|
public String getCreateUserId() {
|
return createUserId;
|
}
|
|
public void setCreateUserId(String createUserId) {
|
this.createUserId = createUserId;
|
}
|
|
public String getQuantity() {
|
return quantity;
|
}
|
|
public void setQuantity(String quantity) {
|
this.quantity = quantity;
|
}
|
|
public String getRsurId() {
|
return rsurId;
|
}
|
|
public void setRsurId(String rsurId) {
|
this.rsurId = rsurId;
|
}
|
|
public String getCreateUserName() {
|
return createUserName;
|
}
|
|
public void setCreateUserName(String createUserName) {
|
this.createUserName = createUserName;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getResId() {
|
return resId;
|
}
|
|
public void setResId(String resId) {
|
this.resId = resId;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
|
}
|