ProductionheaderServiceImpl.java 680 B

12345678910111213141516171819202122232425262728
  1. package com.zjt.service.impl;
  2. import com.zjt.entity.Productionheader;
  3. import com.zjt.mapper.ProductionheaderMapper;
  4. import com.zjt.service.IProductionheaderService;
  5. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  6. import org.springframework.stereotype.Service;
  7. import java.util.Collections;
  8. import java.util.List;
  9. /**
  10. * <p>
  11. * 服务实现类
  12. * </p>
  13. *
  14. * @author xxu
  15. * @since 2025-09-25
  16. */
  17. @Service
  18. public class ProductionheaderServiceImpl extends ServiceImpl<ProductionheaderMapper, Productionheader> implements IProductionheaderService {
  19. @Override
  20. public List<Productionheader> SelectList() {
  21. return Collections.emptyList();
  22. }
  23. }