12345678910111213141516171819202122232425262728 |
- package com.zjt.service.impl;
- import com.zjt.entity.Productionheader;
- import com.zjt.mapper.ProductionheaderMapper;
- import com.zjt.service.IProductionheaderService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.stereotype.Service;
- import java.util.Collections;
- import java.util.List;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author xxu
- * @since 2025-09-25
- */
- @Service
- public class ProductionheaderServiceImpl extends ServiceImpl<ProductionheaderMapper, Productionheader> implements IProductionheaderService {
- @Override
- public List<Productionheader> SelectList() {
- return Collections.emptyList();
- }
- }
|