Jinquan_Ou
2023-03-27 b6fd093def92b3a538932c6cb808c94fa6275fa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.domain.ZfMaster;
import com.ruoyi.mapper.ZfMasterMapper;
import com.ruoyi.service.ZfMasterService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 魅宠主人表 服务实现类
 * </p>
 *
 * @author ojq
 * @since 2023-03-12
 */
@Service
public class ZfMasterServiceImpl extends ServiceImpl<ZfMasterMapper, ZfMaster> implements ZfMasterService {
 
}