LymsOrderRefundService.java 246 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
package com.lyms.talkonlineweb.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.lyms.talkonlineweb.domain.LymsOrderRefund;

/**
*
*/
public interface LymsOrderRefundService extends IService<LymsOrderRefund> {

}