| | |
| | | package com.yeshi.fanli.vo.msg;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | public class CommonMsgItemVO {
|
| | | private ClientTextStyleVO title;
|
| | | private List<ClientTextStyleVO> content;
|
| | |
|
| | | public CommonMsgItemVO(ClientTextStyleVO title, List<ClientTextStyleVO> content) {
|
| | | this.title = title;
|
| | | this.content = content;
|
| | | }
|
| | | |
| | | public CommonMsgItemVO() {
|
| | | }
|
| | |
|
| | | public ClientTextStyleVO getTitle() {
|
| | | return title;
|
| | | }
|
| | |
|
| | | public void setTitle(ClientTextStyleVO title) {
|
| | | this.title = title;
|
| | | }
|
| | |
|
| | | public List<ClientTextStyleVO> getContent() {
|
| | | return content;
|
| | | }
|
| | |
|
| | | public void setContent(List<ClientTextStyleVO> content) {
|
| | | this.content = content;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.vo.msg; |
| | | |
| | | import com.yeshi.common.vo.ClientTextStyleVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | public class CommonMsgItemVO { |
| | | private ClientTextStyleVO title; |
| | | private List<ClientTextStyleVO> content; |
| | | private boolean click; |
| | | |
| | | public boolean isClick() { |
| | | return click; |
| | | } |
| | | |
| | | public void setClick(boolean click) { |
| | | this.click = click; |
| | | } |
| | | |
| | | public CommonMsgItemVO(ClientTextStyleVO title, List<ClientTextStyleVO> content) { |
| | | this.title = title; |
| | | this.content = content; |
| | | } |
| | | |
| | | public CommonMsgItemVO(ClientTextStyleVO title, List<ClientTextStyleVO> content, boolean click) { |
| | | this.title = title; |
| | | this.content = content; |
| | | this.click = click; |
| | | } |
| | | |
| | | public CommonMsgItemVO() { |
| | | } |
| | | |
| | | public ClientTextStyleVO getTitle() { |
| | | return title; |
| | | } |
| | | |
| | | public void setTitle(ClientTextStyleVO title) { |
| | | this.title = title; |
| | | } |
| | | |
| | | public List<ClientTextStyleVO> getContent() { |
| | | return content; |
| | | } |
| | | |
| | | public void setContent(List<ClientTextStyleVO> content) { |
| | | this.content = content; |
| | | } |
| | | |
| | | } |