package com.ruoyi.station.mapper;
|
|
import java.util.List;
|
import com.ruoyi.station.domain.MjTemplateAreacontent;
|
|
/**
|
* 模版区域Mapper接口
|
*
|
* @author ruoyi
|
* @date 2020-09-11
|
*/
|
public interface MjTemplateAreacontentMapper
|
{
|
/**
|
* 查询模版区域
|
*
|
* @param id 模版区域ID
|
* @return 模版区域
|
*/
|
public MjTemplateAreacontent selectMjTemplateAreacontentById(String id);
|
|
/**
|
* 查询模版区域列表
|
*
|
* @param mjTemplateAreacontent 模版区域
|
* @return 模版区域集合
|
*/
|
public List<MjTemplateAreacontent> selectMjTemplateAreacontentList(MjTemplateAreacontent mjTemplateAreacontent);
|
|
/**
|
* 新增模版区域
|
*
|
* @param mjTemplateAreacontent 模版区域
|
* @return 结果
|
*/
|
public int insertMjTemplateAreacontent(MjTemplateAreacontent mjTemplateAreacontent);
|
|
/**
|
* 修改模版区域
|
*
|
* @param mjTemplateAreacontent 模版区域
|
* @return 结果
|
*/
|
public int updateMjTemplateAreacontent(MjTemplateAreacontent mjTemplateAreacontent);
|
|
/**
|
* 删除模版区域
|
*
|
* @param id 模版区域ID
|
* @return 结果
|
*/
|
public int deleteMjTemplateAreacontentById(String id);
|
|
/**
|
* 批量删除模版区域
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteMjTemplateAreacontentByIds(String[] ids);
|
}
|