package com.zy.acs.manager.manager.service; import com.baomidou.mybatisplus.extension.service.IService; import com.zy.acs.manager.manager.entity.Bus; import com.zy.acs.manager.manager.enums.BusStsType; import java.util.List; public interface BusService extends IService { Bus selectByUuid(String uuid); List selectBySts(BusStsType busStsType); List selectInSts(BusStsType... busStsType); List selectBySts(BusStsType busStsType, String memo); }