Commit 8c1e629259910cd1459581451d17cc83bb48e34b
1 parent
13873318cd
Exists in
master
删除多余的类
Showing 1 changed file with 0 additions and 94 deletions
mainData/src/main/java/com/lymsh/yimiao/main/data/model/YmFeedbacks.java
View file @
8c1e629
1 | -package com.lymsh.yimiao.main.data.model; | |
2 | - | |
3 | -import java.util.Date; | |
4 | - | |
5 | -public class YmFeedBacks { | |
6 | - private Integer id; | |
7 | - private String content; | |
8 | - private Integer type; | |
9 | - private Integer replyId; | |
10 | - private Date created; | |
11 | - private Integer yn; | |
12 | - private Integer publishId; | |
13 | - private String publishName; | |
14 | - | |
15 | - public Integer getId() { | |
16 | - return id; | |
17 | - } | |
18 | - | |
19 | - | |
20 | - public void setId(Integer id) { | |
21 | - this.id = id; | |
22 | - | |
23 | - } | |
24 | - | |
25 | - public String getContent() { | |
26 | - return content; | |
27 | - } | |
28 | - | |
29 | - | |
30 | - public void setContent(String content) { | |
31 | - this.content = content; | |
32 | - | |
33 | - } | |
34 | - | |
35 | - public Integer getType() { | |
36 | - return type; | |
37 | - } | |
38 | - | |
39 | - | |
40 | - public void setType(Integer type) { | |
41 | - this.type = type; | |
42 | - | |
43 | - } | |
44 | - | |
45 | - public Integer getReplyId() { | |
46 | - return replyId; | |
47 | - } | |
48 | - | |
49 | - | |
50 | - public void setReplyId(Integer replyId) { | |
51 | - this.replyId = replyId; | |
52 | - | |
53 | - } | |
54 | - | |
55 | - public Date getCreated() { | |
56 | - return created; | |
57 | - } | |
58 | - | |
59 | - | |
60 | - public void setCreated(Date created) { | |
61 | - this.created = created; | |
62 | - | |
63 | - } | |
64 | - | |
65 | - public Integer getYn() { | |
66 | - return yn; | |
67 | - } | |
68 | - | |
69 | - | |
70 | - public void setYn(Integer yn) { | |
71 | - this.yn = yn; | |
72 | - | |
73 | - } | |
74 | - | |
75 | - public Integer getPublishId() { | |
76 | - return publishId; | |
77 | - } | |
78 | - | |
79 | - | |
80 | - public void setPublishId(Integer publishId) { | |
81 | - this.publishId = publishId; | |
82 | - | |
83 | - } | |
84 | - | |
85 | - public String getPublishName() { | |
86 | - return publishName; | |
87 | - } | |
88 | - | |
89 | - | |
90 | - public void setPublishName(String publishName) { | |
91 | - this.publishName = publishName; | |
92 | - | |
93 | - } | |
94 | -} |