| 12345678910111213141516171819202122 |
- package com.ydtech.modules.protocols.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.ydtech.modules.order.entity.InsFeeOrder;
- import com.ydtech.modules.protocols.dao.InsFeeOrderNewMapper;
- import com.ydtech.modules.protocols.dao.PtlAgreementProductCostsAttrLinkMapper;
- import com.ydtech.modules.protocols.entity.po.InsFeeOrderNew;
- import com.ydtech.modules.protocols.entity.po.PtlAgreementProductCostsAttrLink;
- import com.ydtech.modules.protocols.service.InsFeeOrderNewService;
- import com.ydtech.modules.protocols.service.PtlAgreementProductCostsAttrLinkService;
- import org.springframework.stereotype.Service;
- /**
- * @description 费用结算表 service实现类
- * @createDate 2024-2-22 15:44:29
- * @Entity com.ydtech.modules.protocol.entity.po.PtlAgreementUndwrtRulesAttrMapper
- */
- @Service
- public class InsFeeOrderNewServiceImpl extends ServiceImpl<InsFeeOrderNewMapper, InsFeeOrderNew>
- implements InsFeeOrderNewService {
- }
|