This commit is contained in:
DDIsFriend
2023-08-28 14:11:06 +08:00
parent e52741807e
commit c52d0edc21
62 changed files with 9510 additions and 7520 deletions

View File

@@ -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
}
}