1234567891011121314151617181920 |
- package org.jeecg.modules.demo.hzz.yhyc.mapper;
- import java.util.List;
- import org.jeecg.modules.demo.hzz.yhyc.entity.RmMbfjb;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * @Description: 目标分解表
- * @Author: jeecg-boot
- * @Date: 2021-11-26
- * @Version: V1.0
- */
- public interface RmMbfjbMapper extends BaseMapper<RmMbfjb> {
- public boolean deleteByMainId(@Param("mainId") String mainId);
-
- public List<RmMbfjb> selectByMainId(@Param("mainId") String mainId);
- }
|