1234567891011121314151617181920212223 |
- package com.hz.employmentsite.model;
- public class PcLabelPost {
- private String labelID;
- private String postID;
- public String getLabelID() {
- return labelID;
- }
- public void setLabelID(String labelID) {
- this.labelID = labelID == null ? null : labelID.trim();
- }
- public String getPostID() {
- return postID;
- }
- public void setPostID(String postID) {
- this.postID = postID == null ? null : postID.trim();
- }
- }
|