xuhy
2024-12-24 b41c5599f2547ce25cde20a0aed84f832b8a83eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.jilongda.applet.service.impl;
 
import com.jilongda.applet.model.TOrderAftersales;
import com.jilongda.applet.mapper.TOrderAftersalesMapper;
import com.jilongda.applet.service.TOrderAftersalesService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 订单售后表 服务实现类
 * </p>
 *
 * @author 无关风月
 * @since 2024-12-09
 */
@Service
public class TOrderAftersalesServiceImpl extends ServiceImpl<TOrderAftersalesMapper, TOrderAftersales> implements TOrderAftersalesService {
 
}