⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crmserviceevent.java

📁 本文首先介绍了这些考试系统的形成和发展过程
💻 JAVA
字号:
package net.robin.crm.service;

public class CRMServiceEvent {
	
	private CRMService service;
	
	private BizObject oldValue;
	
	private BizObject newValue;
	
	private int removedIndex;

	public CRMServiceEvent() {
		this(null, null, null);
	}

	public CRMServiceEvent(CRMService service) {
		this(service, null, null, -1);
	}

	public CRMServiceEvent(CRMService service, BizObject newValue) {
		this(service, newValue, null, -1);
	
	}

	public CRMServiceEvent(CRMService service, BizObject oldValue, int removeIndex) {
		this(service, null, oldValue, removeIndex);
	
	}

	public CRMServiceEvent(CRMService service,  BizObject newValue, BizObject oldValue) {
		this(service, newValue, oldValue, -1);
	}

	public CRMServiceEvent(CRMService service,  BizObject newValue, BizObject oldValue, int removeIndex) {
		super();
		this.service = service;
		this.newValue = newValue;
		this.oldValue = oldValue;
		this.removedIndex = removeIndex;
	}

	public BizObject getNewValue() {
		return newValue;
	}

	public void setNewValue(BizObject newValue) {
		this.newValue = newValue;
	}

	public BizObject getOldValue() {
		return oldValue;
	}

	public void setOldValue(BizObject oldValue) {
		this.oldValue = oldValue;
	}

	public CRMService getService() {
		return service;
	}

	public void setService(CRMService service) {
		this.service = service;
	}

	public int getRemovedIndex() {
		return removedIndex;
	}

	public void setRemovedIndex(int removedIndex) {
		this.removedIndex = removedIndex;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -