LinggangSchedulingMapper.java 589 Bytes
package com.ruoyi.mapper.scheduling;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.domain.scheduling.LinggangScheduling;
import org.apache.ibatis.annotations.Mapper;

import java.util.Collection;
import java.util.List;


@Mapper
/** Mapper接口*/
public interface LinggangSchedulingMapper extends BaseMapper<LinggangScheduling> {
    /**
     * 插入有值的列
     */
    int insertSelective(LinggangScheduling name);

    List<LinggangScheduling>  listByCZ(LinggangScheduling entity);


   Collection<String> listNbbmByEntity(LinggangScheduling entity);
}