RedPacketDetailCmd.java 328 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.yidianling.im.bean;

import com.ydl.ydlcommon.data.http.BaseCommand;

/**
 * Created by hgw on 2018/3/13.
 */

//红包详情
public class RedPacketDetailCmd extends BaseCommand {
    public String bonus_id;

    public RedPacketDetailCmd(String bonus_id) {
        super();
        this.bonus_id = bonus_id;
    }
}