|
|
|
@ -23,6 +23,7 @@ import lombok.AllArgsConstructor;
|
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Objects; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 包内产品明细 服务实现类 |
|
|
|
@ -38,6 +39,9 @@ public class ServiceNumServiceImpl implements IServiceNumService {
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Boolean addServiceNum(List<ServiceNumEntity> serviceNum) { |
|
|
|
|
if(!Objects.isNull(serviceNum)&&serviceNum.size()>0){ |
|
|
|
|
return serviceNumMapper.addAll(serviceNum); |
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|