IConvertService.java 202 B

1234567891011121314
  1. package com.fdkankan.modeldemo.service;
  2. import com.fdkankan.modeldemo.dto.SendConvertDTO;
  3. /**
  4. * 转换接口类
  5. */
  6. public interface IConvertService {
  7. void sendConvert(SendConvertDTO dto);
  8. }