|
- package com.iformall.service;
-
- import com.github.pagehelper.PageInfo;
- import com.iformall.common.ResultData;
- import com.iformall.domain.po.WxMsgValidationcodeModel;
- import com.iformall.domain.po.WxProjectConfig;
-
- import java.util.List;
-
- public interface WxMsgValidationcodeModelService {
-
- /**
- * wx_msg_validationcode_model 初始化
- *
- * @param tenantId
- * @return
- */
- void wxMsgValidationcodeModelInit(String tenantId, String signature,String emailBgImg);
-
- /**
- * 根据实体查询分页列表
- *
- * @param record
- * @param pageIndex
- * @param pageSize
- * @return
- */
- PageInfo<WxMsgValidationcodeModel> listAsPage(WxMsgValidationcodeModel record, Integer pageIndex, Integer pageSize);
-
- List<WxMsgValidationcodeModel> findList(WxMsgValidationcodeModel record);
-
- /**
- * 根据Id获得实体
- *
- * @param id
- * @return
- */
- WxMsgValidationcodeModel getById(String id);
-
- /**
- * 保存或更新实体
- *
- * @param record
- */
- ResultData saveOrUpdate(WxMsgValidationcodeModel record);
-
- /**
- * 根据Id删除实体
- *
- * @param id
- */
- void deleteById(String id);
-
- void update(WxMsgValidationcodeModel record);
-
-
-
-
-
-
- }
|