You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
web/src/main/java/com/chenxuan/mapper/BusiCenterThresholdConfMapp...

86 lines
2.3 KiB
Java

1 year ago
package com.chenxuan.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.chenxuan.entity.dto.BusiCenterThresholdConfDto;
import com.chenxuan.entity.model.BusiCenterThresholdConf;
import com.chenxuan.entity.vo.BusiCenterThresholdConfVo;
import com.chenxuan.entity.vo.BusiEnvironmentThresholdConfVo;
1 year ago
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @ClassNameBusiCenterThresholdConfMapper
* @Description Mapper.
* @Author Jordan_Li
* @CreatTime6/8/2020 15:12 PM
* @Version V1.0
*/
@Mapper
public interface BusiCenterThresholdConfMapper extends BaseMapper<BusiCenterThresholdConf> {
/**
* @Description:
*
* @Param page
* @Param params
* @Return:
**/
List<BusiCenterThresholdConfVo> selectPages(Page<BusiCenterThresholdConfVo> page, @Param("params") BusiCenterThresholdConfDto dto);
/**
*
*
* @param busicenterthresholdconf
* @return
*/
int saveThresholdConf(BusiCenterThresholdConf busicenterthresholdconf);
/**
*
*
* @param busicenterthresholdconf
* @return
*/
int updateThresholdConf(BusiCenterThresholdConf busicenterthresholdconf);
/**
* ID
*
* @param mainId ID
* @return
*/
BusiCenterThresholdConfVo findThresholdConfByMainId(String mainId);
1 year ago
/**
* ID
*
* @param mainId ID
* @return
*/
int deleteThresholdConfByMainId(String mainId);
/**
* ID
*
* @param mainId
* @return
*/
int deleteThresholdConfRelation(String mainId);
/**
* id
*
* @param id ID
* @return
*/
int delete(String id);
BusiEnvironmentThresholdConfVo findEnvironmentThresholdConfByMainId(String mainId);
1 year ago
}