选装售后
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AflDeviceActivationLogService.java 579B

12345678910111213141516171819202122
  1. package com.qtzl.alterSales.manager.service;
  2. import cn.com.taiji.common.manager.net.http.ServiceHandleException;
  3. import com.qtzl.alterSales.manager.model.protocol.sales.AflDeviceActivationLogSaveRequest;
  4. /***
  5. * <p>
  6. * 二发激活蓝牙指令执行记录日志
  7. * </p>
  8. * @author hou yi
  9. * {@code @date} 2024/4/7 14:59
  10. **/
  11. public interface AflDeviceActivationLogService {
  12. /***
  13. * 新增
  14. * @param request 参数工具类
  15. * @throws ServiceHandleException 、
  16. */
  17. void save(AflDeviceActivationLogSaveRequest request) throws ServiceHandleException;
  18. }