| | |
| | | package com.java110.dto.workPoolContent; |
| | | |
| | | import com.java110.dto.PageDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | **/ |
| | | public class WorkPoolContentDto extends PageDto implements Serializable { |
| | | |
| | | public static final String STATE_WAIT = "W"; |
| | | |
| | | public static final String STATE_COMPLETE = "C"; |
| | | private String contentId; |
| | | private String communityId; |
| | | private String storeId; |
| | | private String workId; |
| | | private String content; |
| | | private String communityId; |
| | | private String storeId; |
| | | private String workId; |
| | | private String content; |
| | | |
| | | |
| | | private Date createTime; |
| | |
| | | public String getContentId() { |
| | | return contentId; |
| | | } |
| | | public void setContentId(String contentId) { |
| | | |
| | | public void setContentId(String contentId) { |
| | | this.contentId = contentId; |
| | | } |
| | | public String getCommunityId() { |
| | | |
| | | public String getCommunityId() { |
| | | return communityId; |
| | | } |
| | | public void setCommunityId(String communityId) { |
| | | |
| | | public void setCommunityId(String communityId) { |
| | | this.communityId = communityId; |
| | | } |
| | | public String getStoreId() { |
| | | |
| | | public String getStoreId() { |
| | | return storeId; |
| | | } |
| | | public void setStoreId(String storeId) { |
| | | |
| | | public void setStoreId(String storeId) { |
| | | this.storeId = storeId; |
| | | } |
| | | public String getWorkId() { |
| | | |
| | | public String getWorkId() { |
| | | return workId; |
| | | } |
| | | public void setWorkId(String workId) { |
| | | |
| | | public void setWorkId(String workId) { |
| | | this.workId = workId; |
| | | } |
| | | public String getContent() { |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | public void setContent(String content) { |
| | | |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | |
| | |
| | | public void setStatusCd(String statusCd) { |
| | | this.statusCd = statusCd; |
| | | } |
| | | |
| | | |
| | | } |