hz-zhhq-app-service/greenH5modul/.svn/pristine/02/020df31ccddaa25430477f5278f...

59 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.nationalelectric.greenH5.bizc;
import java.util.*;
import com.sgcc.uap.rest.support.QueryResultObject;
import com.sgcc.uap.rest.support.RequestCondition;
import com.sgcc.uap.mdd.runtime.base.BizCDefaultImpl;
import java.io.Serializable;
import com.nationalelectric.greenH5.po.GreenPhysicalItem;
/**
* <b>概述</b>:单表场景逻辑构件<br>
* TODO
* <p>
* <b>功能</b><br>
* TODO
*
* @author Administrator
*/
public class GreenPhysicalItemBizc extends BizCDefaultImpl<GreenPhysicalItem, Serializable> implements IGreenPhysicalItemBizc {
/**************** 标准方法执行前后事件,默认全部返回true *******************/
@Override
protected void afterDelete(GreenPhysicalItem greenphysicalitem) {
// 自定义逻辑
}
@Override
protected void afterAdd(GreenPhysicalItem greenphysicalitem) {
// 自定义逻辑
}
@Override
protected boolean beforeDelete(GreenPhysicalItem greenphysicalitem) {
// 自定义逻辑
return true;
}
@Override
protected boolean beforeAdd(GreenPhysicalItem greenphysicalitem) {
// 自定义逻辑
return true;
}
@Override
protected void afterUpdate(GreenPhysicalItem greenphysicalitem ,Serializable pk) {
// 自定义逻辑
}
@Override
protected boolean beforeUpdate(GreenPhysicalItem greenphysicalitem, Serializable pk) {
// 自定义逻辑
return true;
}
}