RedPacketIdCmd.kt 366 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.yidianling.user.mine.bean


/**
 * 获取红包单号
 * Created by hgw on 2018/3/23.
 */
class RedPacketIdCmd{

    var to_uid: String? = null
    var money: String? = null
    var title:String?=null

    constructor(to_uid: String?, money: String?,title:String?){
        this.to_uid = to_uid
        this.money = money
        this.title=title
    }
}