hz-zhhq-app-service/greenH5modul/.svn/pristine/82/82a3cf999f5c708ab8405c095f1...

59 lines
1.5 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 com.nationalelectric.greenH5.po.GreenExaminationDictionary;
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;
/**
* <b>概述</b>:单表场景逻辑构件<br>
* TODO
* <p>
* <b>功能</b><br>
* TODO
*
* @author dell
*/
public class GreenExaminationDictionaryBizc extends BizCDefaultImpl<GreenExaminationDictionary, Serializable> implements IGreenExaminationDictionaryBizc {
/**************** 标准方法执行前后事件,默认全部返回true *******************/
@Override
protected void afterDelete(GreenExaminationDictionary greenexaminationdictionary) {
// 自定义逻辑
}
@Override
protected void afterAdd(GreenExaminationDictionary greenexaminationdictionary) {
// 自定义逻辑
}
@Override
protected boolean beforeDelete(GreenExaminationDictionary greenexaminationdictionary) {
// 自定义逻辑
return true;
}
@Override
protected boolean beforeAdd(GreenExaminationDictionary greenexaminationdictionary) {
// 自定义逻辑
return true;
}
@Override
protected void afterUpdate(GreenExaminationDictionary greenexaminationdictionary ,Serializable pk) {
// 自定义逻辑
}
@Override
protected boolean beforeUpdate(GreenExaminationDictionary greenexaminationdictionary, Serializable pk) {
// 自定义逻辑
return true;
}
}