WdclassRelPersagyServiceImpl.java 804 B

123456789101112131415161718192021222324
  1. package com.persagy.transfer.service.impl;
  2. import org.springframework.stereotype.Service;
  3. import com.baomidou.dynamic.datasource.annotation.DS;
  4. import com.persagy.db.service.impl.SuperServiceImpl;
  5. import com.persagy.transfer.constant.SwitchConstant;
  6. import com.persagy.transfer.mapper.WdclassRelPersagyMapper;
  7. import com.persagy.transfer.pojo.dto.WdclassRelPersagy;
  8. import com.persagy.transfer.service.IWdclassRelPersagyService;
  9. /**
  10. * 万达设备类型表与博锐尚格设备类型表的映射表
  11. *
  12. * @version 1.0.0
  13. * @company persagy
  14. * @author zhangqiankun
  15. * @date 2021-09-16 11:19:53
  16. */
  17. @Service
  18. @DS(value = SwitchConstant.DS_MASTER_1)
  19. public class WdclassRelPersagyServiceImpl extends SuperServiceImpl<WdclassRelPersagyMapper, WdclassRelPersagy> implements IWdclassRelPersagyService {
  20. }