BatchDiscardItem.java 386 Bytes
Newer Older
PWF-WK01\pengwufeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.beecode.inz.common;

import org.json.JSONObject;

/**
 * 批量废弃条目
 * 
 * @author tanshuqiang
 *
 */
public class BatchDiscardItem extends BatchUpdateItem{

	private boolean discard;
	
	public BatchDiscardItem(JSONObject object) {
		super(object);
		this.discard = object.getBoolean(BaseConstants.DISCARD);
	}

	public boolean isDiscard() {
		return discard;
	}

}