zqy
2025-11-11 3e02abec44a648f01174a4c3494a96ccb46a3b1a
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 {
}