linzhijie
2021-03-24 b23f8cd1438c2b3c6f7e334502de619ffbb7fdc7
src/main/java/com/ots/project/exam/mapper/EntDemographyParamMapper.java
@@ -1,20 +1,64 @@
package com.ots.project.exam.mapper;
import com.ots.project.exam.domain.EntDemographyParam;
import java.util.List;
import java.util.Map;
/**
 * 人口学变量定义Mapper接口
 *
 * @author ots
 * @date 2019-12-11
 */
public interface EntDemographyParamMapper {
    /**
     * 查询人口学变量定义
     *
     * @param paramId 人口学变量定义ID
     * @return 人口学变量定义
     */
    EntDemographyParam selectEntDemographyParamById(Long paramId);
    /**
     * 查询人口学变量定义列表
     *
     * @param entDemographyParam 人口学变量定义
     * @return 人口学变量定义集合
     */
    List<EntDemographyParam> selectEntDemographyParamList(EntDemographyParam entDemographyParam);
    List<EntDemographyParam> selectEntDemographyParamListByParamIn(String[] paramIds);
    /**
     * 新增人口学变量定义
     *
     * @param entDemographyParam 人口学变量定义
     * @return 结果
     */
    int insertEntDemographyParam(EntDemographyParam entDemographyParam);
    /**
     * 修改人口学变量定义
     *
     * @param entDemographyParam 人口学变量定义
     * @return 结果
     */
    int updateEntDemographyParam(EntDemographyParam entDemographyParam);
    /**
     * 删除人口学变量定义
     *
     * @param paramId 人口学变量定义ID
     * @return 结果
     */
    int deleteEntDemographyParamById(Long paramId);
    /**
     * 批量删除人口学变量定义
     *
     * @param paramIds 需要删除的数据ID
     * @return 结果
     */
    int deleteEntDemographyParamByIds(String[] paramIds);
}