virtual-patient/virtual-patient-model/src/main/java/com/supervision/service/impl/ConfigPhysicalLocationServi...

23 lines
694 B
Java

package com.supervision.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.supervision.model.ConfigPhysicalLocation;
import com.supervision.service.ConfigPhysicalLocationService;
import com.supervision.mapper.ConfigPhysicalLocationMapper;
import org.springframework.stereotype.Service;
/**
* @author flevance
* @description vp_config_physical_location()Service
* @createDate 2023-10-20 17:19:21
*/
@Service
public class ConfigPhysicalLocationServiceImpl extends ServiceImpl<ConfigPhysicalLocationMapper, ConfigPhysicalLocation>
implements ConfigPhysicalLocationService{
}