OwnerAttrPo.java 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.java110.po.owner;
  2. import java.io.Serializable;
  3. public class OwnerAttrPo implements Serializable {
  4. private String attrId;
  5. private String specCd;
  6. private String communityId;
  7. private String value;
  8. private String memberId;
  9. public String getAttrId() {
  10. return attrId;
  11. }
  12. public void setAttrId(String attrId) {
  13. this.attrId = attrId;
  14. }
  15. public String getSpecCd() {
  16. return specCd;
  17. }
  18. public void setSpecCd(String specCd) {
  19. this.specCd = specCd;
  20. }
  21. public String getCommunityId() {
  22. return communityId;
  23. }
  24. public void setCommunityId(String communityId) {
  25. this.communityId = communityId;
  26. }
  27. public String getValue() {
  28. return value;
  29. }
  30. public void setValue(String value) {
  31. this.value = value;
  32. }
  33. public String getMemberId() {
  34. return memberId;
  35. }
  36. public void setMemberId(String memberId) {
  37. this.memberId = memberId;
  38. }
  39. }