|
12345678910111213141516171819 |
- package com.telpo.dipperposition.mapper;
-
- import com.telpo.dipperposition.annotation.MongoSwitch;
- import com.telpo.dipperposition.entity.mongo.IpProvinceEntity;
- import db.BaseMongoDbDao;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.data.mongodb.repository.MongoRepository;
- import org.springframework.stereotype.Repository;
-
- import java.util.List;
-
- /**
- * @program: DataPushServer
- * @description: 推送记录mapper
- * @author: linwl
- * @create: 2020-07-20 11:12
- */
- @Repository
- public interface IpProvinceMapper extends MongoRepository<IpProvinceEntity, String> {}
|