dongyukun
2025-02-07 8aadcbe920f02806b9fa363b386d3d6c693c5c56
iailab-module-model/iailab-module-model-biz/src/main/java/com/iailab/module/model/mcs/sche/service/impl/StScheduleModelServiceImpl.java
@@ -15,7 +15,6 @@
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.util.List;
@@ -102,4 +101,9 @@
        QueryWrapper<StScheduleModelEntity> wrapper = new QueryWrapper<>();
        return stScheduleModelDao.selectCount(wrapper);
    }
    @Override
    public StScheduleModelEntity getByModelCode(String modelCode) {
        return stScheduleModelDao.selectOne("model_code", modelCode);
    }
}