zqy
2024-07-28 997b03f08f01f87112227b617e446515b22c6c74
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 {
}