LinggangSchedulingMapper.java 491 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.List;


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

    List<LinggangScheduling>  listByCZ(LinggangScheduling entity);
}