ICustomerAddressService.java 484 B

1234567891011121314151617181920
  1. package com.fdkankan.sale.service;
  2. import com.alibaba.fastjson.JSONArray;
  3. import com.fdkankan.sale.entity.CustomerAddress;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. /**
  6. * <p>
  7. * 服务类
  8. * </p>
  9. *
  10. * @author
  11. * @since 2023-02-10
  12. */
  13. public interface ICustomerAddressService extends IService<CustomerAddress> {
  14. void setTrackingNumByRepairId(String repairId, Integer getType, String sendTrackingNum);
  15. CustomerAddress getByRepairId(String repairId);
  16. }