BatchDeleteItem.java 304 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
package com.beecode.inz.common;

import org.json.JSONObject;

public class BatchDeleteItem extends BatchUpdateItem{

	private Boolean del;
	
	public BatchDeleteItem(JSONObject object) {
		super(object);
		del = object.getBoolean(BaseConstants.DEL);
	}

	public Boolean getDelete() {
		return del;
	}
	
}