hz-zhhq-app-service/greenH5modul/.svn/pristine/b4/b4921b7fce986b35e2f250b97b4...

71 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 java.util.*;
import com.sgcc.uap.mdd.runtime.base.IBizC;
import com.sgcc.uap.rest.support.QueryResultObject;
import com.sgcc.uap.rest.support.RequestCondition;
import java.io.Serializable;
import com.nationalelectric.greenH5.po.GreenDictionaryInfo;
/**
* <b>概述</b>:单表场景逻辑构件<br>
* TODO
* <p>
* <b>功能</b><br>
* TODO
*
* @author dell
*/
public interface IGreenDictionaryInfoBizc extends IBizC<GreenDictionaryInfo,Serializable>{
/**
* @add:新增
* @param be
* @return GreenDictionaryInfo
* @date 2019-08-04 14:26:58
* @author dell
*/
public GreenDictionaryInfo add(GreenDictionaryInfo be);
/**
* @delete:删除
* @param id
* @return void
* @date 2019-08-04 14:26:58
* @author dell
*/
public void delete(Serializable id);
/**
* @query:查询
* @param queryCondition 查询条件
* @return QueryResultObject 查询结果
* @date 2019-08-04 14:26:58
* @author dell
*/
public QueryResultObject query(RequestCondition queryCondition);
/**
* @get:根据 id 查询
* @param id
* @return GreenDictionaryInfo 查询结果
* @date 2019-08-04 14:26:58
* @author dell
*/
public GreenDictionaryInfo get(Serializable id);
/**
* @update:更新
* @param pk 主键
* @param greendictionaryinfo
* @return void
* @date 2019-08-04 14:26:58
* @author dell
*/
public void update(GreenDictionaryInfo greendictionaryinfo,Serializable pk);
}