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

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

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

public class GetCourseStatus extends BaseCommand {
    public int course_id; //课程id

    public GetCourseStatus(int course_id) {
        this.course_id = course_id;
    }
}