| | |
| | | package org.jeecg.modules.mdc.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.entity.AndonOrder; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: andon_order |
| | |
| | | */ |
| | | public interface AndonOrderMapper extends BaseMapper<AndonOrder> { |
| | | |
| | | List<AndonOrder> equAndonList(@Param("equipmentIdList") List<String> equipmentIdList); |
| | | |
| | | List<AndonOrder> untreatedAndonList(); |
| | | |
| | | IPage<AndonOrder> pageList(IPage<AndonOrder> pageData, @Param("andonOrder") AndonOrder andonOrder, @Param("userId") String userId); |
| | | } |