AdmLocationPointServiceImpl.java 504 B

12345678910111213141516
  1. package com.persagy.proxy.adm.service.impl;
  2. import com.persagy.proxy.adm.model.AdmLocationPoint;
  3. import com.persagy.proxy.adm.service.IAdmLocationPointService;
  4. import org.springframework.stereotype.Service;
  5. /**
  6. * @ClassName AdmLocationPointServiceImpl
  7. * @Description: 点位标签实现类
  8. * @Author linhuili
  9. * @Date 2021/8/31 09:47
  10. * @Version V1.0
  11. **/
  12. @Service
  13. public class AdmLocationPointServiceImpl extends AbstractAdmBaseServiceImpl<AdmLocationPoint> implements IAdmLocationPointService {
  14. }