123456789101112131415161718 |
- package com.persagy.proxy.adm.service.impl;
- import com.persagy.proxy.adm.model.AdmLocationPoint;
- import com.persagy.proxy.adm.service.IAdmLocationPointService;
- import com.persagy.proxy.adm.service.IAdmModelRelService;
- import org.springframework.stereotype.Service;
- /**
- * @ClassName AdmModelRelServiceImpl
- * @Description: 模型修改设备元空间的建筑楼层信息
- * @Author linhuili
- * @Date 2021/8/31 14:31
- * @Version V1.0
- **/
- @Service
- public class AdmModelRelServiceImpl extends AbstractAdmBaseServiceImpl<AdmLocationPoint> implements IAdmModelRelService {
- }
|