宽窄优行-由【嘉易行】项目成品而来
younger_times
2023-04-11 4356615a9252a987a62469331b1fcf91c102e24c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
//  SystemMessageModel.swift
//  OKProject
//
//  Created by alvin_y on 2020/6/17.
//  Copyright © 2020 yangwang. All rights reserved.
//
 
import UIKit
import HandyJSON
struct SystemMessageModel: HandyJSON {
    
    /// 内容
    var content: String = ""
    var id: Int = 0
    
    /// 消息类型(1=打车业务,2=优惠券)
    var noticeType: Int = 0
    
    /// 图片
    var img: String = ""
    
    /// 阅读状态(1=未读,2=已读)
    var read: Int = 0
    
    /// 时间
    var time: String = ""
    
    /// 标题
    var title: String = ""
    
    /// 类型(1=公告,2=系统消息)
    var type: Int = 0
}