PtlOptionalSchemeInsuranceDrivingIntentionService.java 481 B

1234567891011121314
  1. package com.ydtech.modules.scheme.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ydtech.modules.scheme.entity.po.PtlOptionalSchemeInsurance;
  4. import com.ydtech.modules.scheme.entity.po.PtlOptionalSchemeInsuranceDrivingIntention;
  5. /**
  6. *@author: tz
  7. *@description: 自选方案 service
  8. *@create: 2024-8-13 14:53:39
  9. */
  10. public interface PtlOptionalSchemeInsuranceDrivingIntentionService extends IService<PtlOptionalSchemeInsuranceDrivingIntention> {
  11. }