71 lines
1.6 KiB
Plaintext
71 lines
1.6 KiB
Plaintext
|
|
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 com.nationalelectric.greenH5.po.GreenMenuTemplate;
|
|||
|
|
import java.io.Serializable;
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <b>概述</b>:单表场景逻辑构件<br>
|
|||
|
|
* TODO
|
|||
|
|
* <p>
|
|||
|
|
* <b>功能</b>:<br>
|
|||
|
|
* TODO
|
|||
|
|
*
|
|||
|
|
* @author chenweikang
|
|||
|
|
*/
|
|||
|
|
public interface IGreenMenuTemplateBizc extends IBizC<GreenMenuTemplate,Serializable>{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @add:新增
|
|||
|
|
* @param be
|
|||
|
|
* @return GreenMenuTemplate
|
|||
|
|
* @date 2019-06-05 14:42:46
|
|||
|
|
* @author chenweikang
|
|||
|
|
*/
|
|||
|
|
public GreenMenuTemplate add(GreenMenuTemplate be);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @delete:删除
|
|||
|
|
* @param id
|
|||
|
|
* @return void
|
|||
|
|
* @date 2019-06-05 14:42:46
|
|||
|
|
* @author chenweikang
|
|||
|
|
*/
|
|||
|
|
public void delete(Serializable id);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @query:查询
|
|||
|
|
* @param queryCondition 查询条件
|
|||
|
|
* @return QueryResultObject 查询结果
|
|||
|
|
* @date 2019-06-05 14:42:46
|
|||
|
|
* @author chenweikang
|
|||
|
|
*/
|
|||
|
|
public QueryResultObject query(RequestCondition queryCondition);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @get:根据 id 查询
|
|||
|
|
* @param id
|
|||
|
|
* @return GreenMenuTemplate 查询结果
|
|||
|
|
* @date 2019-06-05 14:42:46
|
|||
|
|
* @author chenweikang
|
|||
|
|
*/
|
|||
|
|
public GreenMenuTemplate get(Serializable id);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @update:更新
|
|||
|
|
* @param pk 主键
|
|||
|
|
* @param greenmenutemplate
|
|||
|
|
* @return void
|
|||
|
|
* @date 2019-06-05 14:42:46
|
|||
|
|
* @author chenweikang
|
|||
|
|
*/
|
|||
|
|
public void update(GreenMenuTemplate greenmenutemplate,Serializable pk);
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|