Junjie
2024-11-16 0442a89116b4f77ff25c5db4d6a59864eb5d4bf4
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.service.impl;
 
import com.zy.mapper.BasCrnOptMapper;
import com.zy.entity.BasCrnOpt;
import com.zy.service.BasCrnOptService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("basCrnOptService")
public class BasCrnOptServiceImpl extends ServiceImpl<BasCrnOptMapper, BasCrnOpt> implements BasCrnOptService {
 
}