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.
|
- 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> {}
|