InsPinAnAreaService.java 355 B

12345678910111213
  1. package com.ydtech.modules.order.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ydtech.modules.order.entity.api.pingan.area.InsPinAnArea;
  4. /**
  5. * @version
  6. * @author: hxl
  7. * @Date: 2024/4/12 9:44
  8. * @Description: 添加平安数据区域表
  9. */
  10. public interface InsPinAnAreaService extends IService<InsPinAnArea> {
  11. }