Msg.java 492 B

1234567891011121314151617181920
  1. package com.xintong.visualinspection.bean;
  2. import lombok.Data;
  3. /**
  4. * 文件名:Msg
  5. * 版本信息:日期:2017/3/31 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
  6. */
  7. @Data
  8. public class Msg {
  9. private String title;
  10. private String content;
  11. private String etraInfo;
  12. public Msg(String title, String content, String etraInfo) {
  13. super();
  14. this.title = title;
  15. this.content = content;
  16. this.etraInfo = etraInfo;
  17. }
  18. }