InsFeeOrderNewServiceImpl.java 981 B

12345678910111213141516171819202122
  1. package com.ydtech.modules.protocols.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.ydtech.modules.order.entity.InsFeeOrder;
  4. import com.ydtech.modules.protocols.dao.InsFeeOrderNewMapper;
  5. import com.ydtech.modules.protocols.dao.PtlAgreementProductCostsAttrLinkMapper;
  6. import com.ydtech.modules.protocols.entity.po.InsFeeOrderNew;
  7. import com.ydtech.modules.protocols.entity.po.PtlAgreementProductCostsAttrLink;
  8. import com.ydtech.modules.protocols.service.InsFeeOrderNewService;
  9. import com.ydtech.modules.protocols.service.PtlAgreementProductCostsAttrLinkService;
  10. import org.springframework.stereotype.Service;
  11. /**
  12. * @description 费用结算表 service实现类
  13. * @createDate 2024-2-22 15:44:29
  14. * @Entity com.ydtech.modules.protocol.entity.po.PtlAgreementUndwrtRulesAttrMapper
  15. */
  16. @Service
  17. public class InsFeeOrderNewServiceImpl extends ServiceImpl<InsFeeOrderNewMapper, InsFeeOrderNew>
  18. implements InsFeeOrderNewService {
  19. }