Junjie
昨天 03c3ae747f82ad22c761c79e7b1c0e0031c57d41
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.BasStationPathProfile;
import com.zy.asrs.mapper.BasStationPathProfileMapper;
import com.zy.asrs.service.BasStationPathProfileService;
import org.springframework.stereotype.Service;
 
@Service
public class BasStationPathProfileServiceImpl extends ServiceImpl<BasStationPathProfileMapper, BasStationPathProfile> implements BasStationPathProfileService {
}