InsAreaCompanyAccidentalDrivingService.java 554 B

12345678910111213141516
  1. package com.ydtech.modules.order.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ydtech.modules.order.entity.InsAreaCompanyAccidentalDriving;
  4. import com.ydtech.modules.order.entity.InsFeeOrder;
  5. /**
  6. * @author CXP
  7. * @description 针对表【ins_area_company(费用跟单)】的数据库操作Service
  8. * @createDate 2023-9-12 21:30:24
  9. */
  10. public interface InsAreaCompanyAccidentalDrivingService extends IService<InsAreaCompanyAccidentalDriving> {
  11. InsAreaCompanyAccidentalDriving getByCompanyId(String companyId);
  12. }