DrawContext.java 715 Bytes
package com.zhaoonline.coupen.handler;

import com.zhaoonline.coupen.bean.OwnerUser;

/**
 * Created by ZhaoOnline<br/>
 * User: yangyoupeng<br/>
 * Date: 2016/12/17<br/>
 * Time: 10:39<br/>
 * Description:领取上下文
 */
public class DrawContext {
    //领取人
    private OwnerUser drawOwner;
    //领取的相关设定.给予默认配置
    private DrawConfig config=new DrawConfig();

    public DrawConfig getConfig() {
        return config;
    }

    public void setConfig(DrawConfig config) {
        this.config = config;
    }

    public OwnerUser getDrawOwner() {
        return drawOwner;
    }

    public void setDrawOwner(OwnerUser drawOwner) {
        this.drawOwner = drawOwner;
    }
}