PcLabelPost.java 475 B

1234567891011121314151617181920212223
  1. package com.hz.employmentsite.model;
  2. public class PcLabelPost {
  3. private String labelID;
  4. private String postID;
  5. public String getLabelID() {
  6. return labelID;
  7. }
  8. public void setLabelID(String labelID) {
  9. this.labelID = labelID == null ? null : labelID.trim();
  10. }
  11. public String getPostID() {
  12. return postID;
  13. }
  14. public void setPostID(String postID) {
  15. this.postID = postID == null ? null : postID.trim();
  16. }
  17. }