ErpProblemDetailMapper.java 484 字节
package com.skua.modules.erp.mapper;

import java.util.List;

import org.apache.ibatis.annotations.Param;
import com.skua.modules.erp.entity.ErpProblemDetail;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

/**
 * 数据问题上报详情
 */
public interface ErpProblemDetailMapper extends BaseMapper<ErpProblemDetail> {

    void deleteByProblemId(@Param("problemId") String problemId);

    List<ErpProblemDetail> queryByProblemId(@Param("problemId") String problemId);
}