#
luxiaotao1123
2026-01-05 b0d63d1eecb2e0d88dde8fd1a5bf8574b56b9cbb
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/service/impl/StaServiceImpl.java
@@ -41,4 +41,16 @@
        return this.baseMapper.selectAvailableInSta(minAvailableQty);
    }
    @Override
    public boolean isRoller(Long staId) {
        if (staId == null) {
            return false;
        }
        Sta sta = this.getById(staId);
        if (sta == null || Cools.isEmpty(sta.getStaType())) {
            return false;
        }
        return StaTypeType.ROLLER.val() == sta.getStaType();
    }
}