update
This commit is contained in:
@@ -264,3 +264,33 @@ public class VersionCheckDataModel : Decodable {
|
||||
var createTime : String?
|
||||
var description : String?
|
||||
}
|
||||
|
||||
public class MessageReminderListDataModel : Decodable {
|
||||
var id : Int
|
||||
var msgType : MsgType
|
||||
class MsgType : Decodable {
|
||||
var code : MsgTypeEnum
|
||||
var label : String
|
||||
}
|
||||
enum MsgTypeEnum : Int,Decodable {
|
||||
case DEPARTURE_REMINDER = 1
|
||||
case CUSTOMER_REMINDER = 2
|
||||
}
|
||||
var title : String
|
||||
var titleContent : String
|
||||
var titleColor : String
|
||||
var content : String
|
||||
var imgPath : String?
|
||||
var createTime : String
|
||||
var hasRead : HasRead
|
||||
class HasRead : Decodable {
|
||||
var code : HasReadEnum
|
||||
var label : String
|
||||
}
|
||||
enum HasReadEnum : Int,Decodable {
|
||||
case NO = 0
|
||||
case YES = 1
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user