MessageViewer.java 315 B

1234567891011121314
  1. package cn.com.lzt.message.data.dto;
  2. public abstract class MessageViewer {
  3. protected String title;
  4. public abstract String html();
  5. public abstract String viewName();
  6. public String getTitle() {
  7. return title;
  8. }
  9. public void setTitle(String title) {
  10. this.title = title;
  11. }
  12. }