package com.dg.core.db.gen.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dg.core.db.gen.entity.GuideEvolveEntity;
|
import org.springframework.data.repository.query.Param;
|
|
import java.util.List;
|
|
public interface GuideEvolveMapper extends BaseMapper<GuideEvolveEntity>
|
{
|
|
/**
|
* 查询记录列表
|
* @return
|
*/
|
public List<GuideEvolveEntity> selectConfigList(String guideId);
|
|
/**
|
* 查询记录列表(隐藏工单姓名)
|
* @return
|
*/
|
public List<GuideEvolveEntity> selectHideList(String guideId);
|
|
/**
|
* 新增记录
|
* @param entity
|
* @return
|
*/
|
public int insertConfig(GuideEvolveEntity entity);
|
|
/**
|
* 更新记录
|
* @param entity
|
* @return
|
*/
|
public int updateConfig(GuideEvolveEntity entity);
|
|
/**
|
* 删除记录
|
* @param Id
|
* @return
|
*/
|
public int deleteConfigById(String Id);
|
|
/**
|
* 统计数量
|
* @return
|
*/
|
public int countNum();
|
|
/**
|
* 更新工单id为空的脏数据
|
* @return
|
*/
|
int updateGuid();
|
|
|
|
|
}
|