555
Jinquan_Ou
2023-04-06 b4754ea670156f7f799311a9fdc9b3d380982fcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.domain.ZfRelation;
import com.ruoyi.mapper.ZfRelationMapper;
import com.ruoyi.service.ZfRelationService;
import org.springframework.stereotype.Service;
 
/**
 * @Version 1.0
 * @Author Jin_quan Ou
 * @Date 2023-03-25 10:33
 */
@Service
public class ZfRelationServiceImpl extends ServiceImpl<ZfRelationMapper, ZfRelation> implements ZfRelationService {
}