zwl
2026-04-03 b42b5c72113a212e8b6a8ec087d55ec9f1ae768b
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zy.asrs.entity.BasCrnp;
import com.zy.asrs.mapper.BasCrnpMapper;
import com.zy.asrs.service.BasCrnpService;
import org.springframework.stereotype.Service;
 
@Service("basCrnpService")
public class BasCrnpServiceImpl extends ServiceImpl<BasCrnpMapper, BasCrnp> implements BasCrnpService {
}