| 1234567891011121314151617181920 |
- package com.xintong.visualinspection.bean;
- import lombok.Data;
- /**
- * 文件名:Msg
- * 版本信息:日期:2017/3/31 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
- */
- @Data
- public class Msg {
- private String title;
- private String content;
- private String etraInfo;
- public Msg(String title, String content, String etraInfo) {
- super();
- this.title = title;
- this.content = content;
- this.etraInfo = etraInfo;
- }
- }
|