//
|
// QueryBalanceModel.swift
|
// OKProject
|
//
|
// Created by alvin_y on 2020/6/12.
|
// Copyright © 2020 yangwang. All rights reserved.
|
//
|
|
import UIKit
|
import HandyJSON
|
struct QueryBalanceModel: HandyJSON {
|
|
/// 余额
|
var balance: Double = 0
|
|
/// 优惠券数量
|
var coupon: Int = 0
|
|
//优惠金额
|
var discountAmount:Double = 0
|
|
var type:CouponDataType = .coupon
|
|
//优惠数据id
|
var objectId = 0
|
|
var companyLimit:Double = 0 //企业授信额度
|
}
|