You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
|
4 months ago
|
package com.nov.KgLowDurable.service.Impl;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
|
import com.github.pagehelper.PageHelper;
|
||
|
|
import com.github.pagehelper.PageInfo;
|
||
|
|
import com.nov.KgLowDurable.exception.CustomerException;
|
||
|
|
import com.nov.KgLowDurable.mapper.LdApproveMapper;
|
||
|
|
import com.nov.KgLowDurable.mapper.LdDemandEndMapper;
|
||
|
|
import com.nov.KgLowDurable.pojo.entity.LdApprove;
|
||
|
|
import com.nov.KgLowDurable.pojo.entity.LdDemandEnd;
|
||
|
|
import com.nov.KgLowDurable.pojo.entity.LdOneOutStorageDemandEnd;
|
||
|
|
import com.nov.KgLowDurable.pojo.entity.LdOneOutStorageDetail;
|
||
|
|
import com.nov.KgLowDurable.pojo.vo.QuarterVO;
|
||
|
|
import com.nov.KgLowDurable.service.ILdApproveService;
|
||
|
|
import com.nov.KgLowDurable.service.ILdDemandEndService;
|
||
|
|
import com.nov.KgLowDurable.service.ILdOneOutStorageDemandEndService;
|
||
|
|
import com.nov.KgLowDurable.service.ILdOneOutStorageDetailService;
|
||
|
|
import com.nov.KgLowDurable.util.StringUtils;
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
import org.springframework.util.CollectionUtils;
|
||
|
|
|
||
|
|
import java.math.BigDecimal;
|
||
|
|
import java.util.ArrayList;
|
||
|
|
import java.util.Arrays;
|
||
|
|
import java.util.List;
|
||
|
|
import java.util.stream.Collectors;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 服务实现类
|
||
|
|
* @author liweidong
|
||
|
|
*/
|
||
|
|
@Service
|
||
|
|
@AllArgsConstructor
|
||
|
|
public class LdApproveServiceImpl extends ServiceImpl<LdApproveMapper, LdApprove> implements ILdApproveService {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|