北斗定位
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 satır
611B

  1. package com.telpo.dipperposition.mapper;
  2. import com.telpo.dipperposition.annotation.MongoSwitch;
  3. import com.telpo.dipperposition.entity.mongo.IpProvinceEntity;
  4. import db.BaseMongoDbDao;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.data.mongodb.repository.MongoRepository;
  7. import org.springframework.stereotype.Repository;
  8. import java.util.List;
  9. /**
  10. * @program: DataPushServer
  11. * @description: 推送记录mapper
  12. * @author: linwl
  13. * @create: 2020-07-20 11:12
  14. */
  15. @Repository
  16. public interface IpProvinceMapper extends MongoRepository<IpProvinceEntity, String> {}