All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zyy.common.service.TemplateService Maven / Gradle / Ivy

package com.zyy.common.service;

import com.zyy.common.model.TemplateModel;
import com.zyy.common.vo.TemplateVo;

import java.util.Map;

public interface TemplateService {
    /**
     * 分页查询模板文件
     *
     * @param templateVo 模板
     * @return 分页信息
     */
    Map selectTemplateByPage(TemplateVo templateVo);

    /**
     * 插入方法
     *
     * @param model 插入对象
     */
    void insert(TemplateModel model);

    /**
     * 更新方法
     *
     * @param model 更新对象
     */
    void update(TemplateModel model);

    /**
     * 删除方法
     *
     * @param id 删除id
     */
    void deleteById(String id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy