From 1bc2ccde684d286c3f6da42949dada528f6ec6b0 Mon Sep 17 00:00:00 2001 From: wendebin Date: Mon, 2 May 2016 14:49:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99=E7=9A=84?= =?UTF-8?q?=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../yimiao/main/data/model/YmFeedbacksQuery.java | 98 ---------------------- 1 file changed, 98 deletions(-) delete mode 100644 mainData/src/main/java/com/lymsh/yimiao/main/data/model/YmFeedbacksQuery.java diff --git a/mainData/src/main/java/com/lymsh/yimiao/main/data/model/YmFeedbacksQuery.java b/mainData/src/main/java/com/lymsh/yimiao/main/data/model/YmFeedbacksQuery.java deleted file mode 100644 index 5483d41..0000000 --- a/mainData/src/main/java/com/lymsh/yimiao/main/data/model/YmFeedbacksQuery.java +++ /dev/null @@ -1,98 +0,0 @@ -package com.lymsh.yimiao.main.data.model; - - -import java.util.Date; - -import com.lymsh.mommybaby.basecommon.base.BaseQuery; - - -public class YmFeedBacksQuery extends BaseQuery { - private Integer id; - private String content; - private Integer type; - private Integer replyId; - private Date created; - private Integer yn; - private Integer publishId; - private String publishName; - - public Integer getId() { - return id; - } - - - public void setId(Integer id) { - this.id = id; - - } - - public String getContent() { - return content; - } - - - public void setContent(String content) { - this.content = content; - - } - - public Integer getType() { - return type; - } - - - public void setType(Integer type) { - this.type = type; - - } - - public Integer getReplyId() { - return replyId; - } - - - public void setReplyId(Integer replyId) { - this.replyId = replyId; - - } - - public Date getCreated() { - return created; - } - - - public void setCreated(Date created) { - this.created = created; - - } - - public Integer getYn() { - return yn; - } - - - public void setYn(Integer yn) { - this.yn = yn; - - } - - public Integer getPublishId() { - return publishId; - } - - - public void setPublishId(Integer publishId) { - this.publishId = publishId; - - } - - public String getPublishName() { - return publishName; - } - - - public void setPublishName(String publishName) { - this.publishName = publishName; - - } -} \ No newline at end of file -- 1.8.3.1