| | |
| | | <artifactId>easyexcel</artifactId> |
| | | <version>2.2.10</version> |
| | | </dependency> |
| | | <!--access--> |
| | | <dependency> |
| | | <groupId>net.sf.ucanaccess</groupId> |
| | | <artifactId>ucanaccess</artifactId> |
| | | <version>5.0.1</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | |
| | | import com.lf.server.entity.all.MenusAuthEntity; |
| | | import com.lf.server.entity.all.PermsAuthEntity; |
| | | import com.lf.server.entity.all.ResAuthEntity; |
| | | import com.lf.server.entity.bd.DlgAgnpEntity; |
| | | import com.lf.server.entity.bd.DlgagnpEntity; |
| | | import com.lf.server.entity.md.*; |
| | | import com.lf.server.helper.*; |
| | | import com.lf.server.mapper.bd.DlgAgnpMapper; |
| | | import com.lf.server.mapper.bd.DlgagnpMapper; |
| | | import com.lf.server.service.all.BaseQueryService; |
| | | import com.lf.server.service.all.PermsService; |
| | | import com.lf.server.service.show.LocateService; |
| | |
| | | ArgsService argsService; |
| | | |
| | | @Autowired |
| | | DlgAgnpMapper dlgAgnpMapper; |
| | | DlgagnpMapper dlgagnpMapper; |
| | | |
| | | @Autowired |
| | | PermsService permsService; |
| | |
| | | private void testMybatisPlus() { |
| | | String s1 = locateService.selectWktById(1); |
| | | |
| | | String tabName = BaseQueryService.getTabName(dlgAgnpMapper); |
| | | List<String> list0 = dlgAgnpMapper.selectFieldFuzzy(tabName, "name", "%å¿%"); |
| | | String tabName = BaseQueryService.getTabName(dlgagnpMapper); |
| | | List<String> list0 = dlgagnpMapper.selectFieldFuzzy(tabName, "name", "%å¿%"); |
| | | |
| | | DlgAgnpEntity dlg = dlgAgnpMapper.selectById(1); |
| | | String wkt = dlgAgnpMapper.selectWktById(tabName, 2); |
| | | DlgagnpEntity dlg = dlgagnpMapper.selectById(1); |
| | | String wkt = dlgagnpMapper.selectWktById(tabName, 2); |
| | | |
| | | Map<String, Object> map = new HashMap<String, Object>(3); |
| | | map.put("gid", 2); |
| | | List<DlgAgnpEntity> list1 = dlgAgnpMapper.selectByMap(map); |
| | | List<DlgagnpEntity> list1 = dlgagnpMapper.selectByMap(map); |
| | | |
| | | QueryWrapper<DlgAgnpEntity> w1 = new QueryWrapper<>(); |
| | | QueryWrapper<DlgagnpEntity> w1 = new QueryWrapper<>(); |
| | | w1.eq("name", "æ²»å¤å¿"); |
| | | List<DlgAgnpEntity> list2 = dlgAgnpMapper.selectList(w1); |
| | | List<DlgagnpEntity> list2 = dlgagnpMapper.selectList(w1); |
| | | |
| | | UpdateWrapper<DlgAgnpEntity> w2 = new UpdateWrapper<DlgAgnpEntity>(); |
| | | UpdateWrapper<DlgagnpEntity> w2 = new UpdateWrapper<DlgagnpEntity>(); |
| | | // è®¾ç½®æ´æ°å
容 |
| | | w2.set("name", "newName").set("gb", "10013") |
| | | // è®¾ç½®æ´æ°æ¡ä»¶ |
| | | .eq("gid", 0); |
| | | // dlgAgnpMapper.update(null, w2) |
| | | // dlgagnpMapper.update(null, w2) |
| | | |
| | | List<Integer> ids = new ArrayList<Integer>(); |
| | | ids.add(1); |
| | | ids.add(2); |
| | | // dlgAgnpMapper.deleteBatchIds(ids) |
| | | List<DlgAgnpEntity> list3 = dlgAgnpMapper.selectBatchIds(ids); |
| | | // dlgagnpMapper.deleteBatchIds(ids) |
| | | List<DlgagnpEntity> list3 = dlgagnpMapper.selectBatchIds(ids); |
| | | |
| | | // dlgAgnpMapper.updateById(dlg) |
| | | // List<DlgAgnp> all = dlgAgnpMapper.selectList(null) |
| | | // dlgagnpMapper.updateById(dlg) |
| | | // List<DlgAgnp> all = dlgagnpMapper.selectList(null) |
| | | |
| | | // é¡µæ° / æ¯é¡µè®°å½æ° |
| | | Page<DlgAgnpEntity> page = new Page<>(1, 10); |
| | | Page<DlgagnpEntity> page = new Page<>(1, 10); |
| | | // ååºæåº |
| | | page.addOrder(OrderItem.asc("gid")); |
| | | // å页ï¼Wrapperæ¥è¯¢æ¡ä»¶ |
| | | Page<DlgAgnpEntity> userPage = dlgAgnpMapper.selectPage(page, null); |
| | | Page<DlgagnpEntity> userPage = dlgagnpMapper.selectPage(page, null); |
| | | // æ»é¡µæ° / æ»è®°å½æ°ï¼325 / 3247 |
| | | String str = userPage.getPages() + " / " + userPage.getTotal(); |
| | | List<DlgAgnpEntity> list4 = userPage.getRecords(); |
| | | List<DlgagnpEntity> list4 = userPage.getRecords(); |
| | | |
| | | QueryWrapper<DlgAgnpEntity> w3 = new QueryWrapper<>(); |
| | | QueryWrapper<DlgagnpEntity> w3 = new QueryWrapper<>(); |
| | | w3.like("name", "å¤").ge("gid", 100); |
| | | List<DlgAgnpEntity> list5 = dlgAgnpMapper.selectList(w3); |
| | | List<DlgagnpEntity> list5 = dlgagnpMapper.selectList(w3); |
| | | } |
| | | |
| | | private void testAes() { |
| | |
| | | @SysLog() |
| | | @ApiOperation(value = "æ¥è¯¢è®°å½æ°") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgAgnp"), |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgagnp"), |
| | | @ApiImplicitParam(name = "filter", value = "è¿æ»¤æ¡ä»¶", dataType = "String", paramType = "query", example = "gid >= 50 and name like 'å¿' and objectid < 5000.0"), |
| | | @ApiImplicitParam(name = "wkt", value = "WKTï¼èåææ¬ï¼", dataType = "String", paramType = "query", example = "gAPpDbZ53XfoQfvT8dj/uhBWX5os8kBJQ1LrNvH3VX7byFQdUJMPiEr8Fkj0q2i1pw+L8KFrvR0MLXq2xaO21nlQQXmEPofJxpDQZwEWUIFZsToXo1kLRD3t6WQezxWB8YTzXHM20Ba73x/ZuuezVhOFOq1U8HKf1dXQdv7gBzEB6fWMmFDc3FuH8GDDHv3LfT86Gio9VgMO6ohlrUdf3ZKtTHeLSuzGF4t0RZuX97YBNo25IIzpeTfRTXBxfdxA") |
| | | }) |
| | |
| | | @SysLog() |
| | | @ApiOperation(value = "å页æ¥è¯¢") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgAgnp"), |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgagnp"), |
| | | @ApiImplicitParam(name = "filter", value = "è¿æ»¤æ¡ä»¶", dataType = "String", paramType = "query", example = ""), |
| | | @ApiImplicitParam(name = "wkt", value = "WKTï¼èåææ¬ï¼", dataType = "String", paramType = "query", example = ""), |
| | | //@ApiImplicitParam(name = "srid", value = "空é´å¼ç¨æ è¯ç¬¦", dataType = "Integer", paramType = "query", example = "4326"), |
| | |
| | | @SysLog() |
| | | @ApiOperation(value = "æ ¹æ®IDæ¥è¯¢WKT") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgAgnp"), |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgagnp"), |
| | | @ApiImplicitParam(name = "gid", value = "GID", dataType = "Integer", paramType = "query", example = "1") |
| | | }) |
| | | @GetMapping(value = "/selectWktById") |
| | |
| | | @SysLog() |
| | | @ApiOperation(value = "æ¨¡ç³æç´¢åæ®µ") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgAgnp"), |
| | | @ApiImplicitParam(name = "name", value = "æ å°åç§°", dataType = "String", paramType = "query", example = "dlgagnp"), |
| | | @ApiImplicitParam(name = "field", value = "åæ®µ", dataType = "String", paramType = "query", example = "name"), |
| | | @ApiImplicitParam(name = "value", value = "å¼", dataType = "String", paramType = "query", example = "'å¿'") |
| | | }) |
| | |
| | | import com.lf.server.annotation.SysLog; |
| | | import com.lf.server.controller.all.BaseController; |
| | | import com.lf.server.entity.all.ResponseMsg; |
| | | import com.lf.server.entity.bd.DlgAgnpEntity; |
| | | import com.lf.server.entity.bd.DlgagnpEntity; |
| | | import com.lf.server.service.data.UploaderService; |
| | | import com.lf.server.service.show.LocateService; |
| | | import com.lf.server.service.sys.TokenService; |
| | |
| | | @ApiImplicitParam(name = "pageIndex", value = "å页æ°ï¼ä»1å¼å§ï¼", dataType = "Integer", paramType = "query", example = "1") |
| | | }) |
| | | @GetMapping(value = "/selectAddrByPage") |
| | | public ResponseMsg<List<DlgAgnpEntity>> selectAddrByPage(String name, Integer pageSize, Integer pageIndex) { |
| | | public ResponseMsg<List<DlgagnpEntity>> selectAddrByPage(String name, Integer pageSize, Integer pageIndex) { |
| | | try { |
| | | if (pageSize < 1 || pageIndex < 1) { |
| | | return fail("æ¯é¡µé¡µæ°æå页æ°å°äº1", null); |
| | | } |
| | | |
| | | Page<DlgAgnpEntity> paged = locateService.selectAddrByPage(name, pageSize, pageIndex); |
| | | Page<DlgagnpEntity> paged = locateService.selectAddrByPage(name, pageSize, pageIndex); |
| | | |
| | | return success(paged.getTotal(), paged.getRecords()); |
| | | } catch (Exception ex) { |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wAanpEntity; |
| | | import com.lf.server.entity.bd.Dlg100waanpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wAanp |
| | | * Dlg100waanp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wAanpMapper extends GeomBaseMapper<Dlg100wAanpEntity> { |
| | | public interface Dlg100waanpMapper extends GeomBaseMapper<Dlg100waanpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wAgnpEntity; |
| | | import com.lf.server.entity.bd.Dlg100wagnpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wAgnp |
| | | * Dlg100wagnp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wAgnpMapper extends GeomBaseMapper<Dlg100wAgnpEntity> { |
| | | public interface Dlg100wagnpMapper extends GeomBaseMapper<Dlg100wagnpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wBouaEntity; |
| | | import com.lf.server.entity.bd.Dlg100wbouaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wBoua |
| | | * Dlg100wboua |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wBouaMapper extends GeomBaseMapper<Dlg100wBouaEntity> { |
| | | public interface Dlg100wbouaMapper extends GeomBaseMapper<Dlg100wbouaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wBoulEntity; |
| | | import com.lf.server.entity.bd.Dlg100wboulEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wBoul |
| | | * Dlg100wboul |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wBoulMapper extends GeomBaseMapper<Dlg100wBoulEntity> { |
| | | public interface Dlg100wboulMapper extends GeomBaseMapper<Dlg100wboulEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wBoupEntity; |
| | | import com.lf.server.entity.bd.Dlg100wboupEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wBoup |
| | | * Dlg100wboup |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wBoupMapper extends GeomBaseMapper<Dlg100wBoupEntity> { |
| | | public interface Dlg100wboupMapper extends GeomBaseMapper<Dlg100wboupEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wBrgaEntity; |
| | | import com.lf.server.entity.bd.Dlg100wbrgaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wBrga |
| | | * Dlg100wbrga |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wBrgaMapper extends GeomBaseMapper<Dlg100wBrgaEntity> { |
| | | public interface Dlg100wbrgaMapper extends GeomBaseMapper<Dlg100wbrgaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wBrglEntity; |
| | | import com.lf.server.entity.bd.Dlg100wbrglEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wBrgl |
| | | * Dlg100wbrgl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wBrglMapper extends GeomBaseMapper<Dlg100wBrglEntity> { |
| | | public interface Dlg100wbrglMapper extends GeomBaseMapper<Dlg100wbrglEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wBrgpEntity; |
| | | import com.lf.server.entity.bd.Dlg100wbrgpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wBrgp |
| | | * Dlg100wbrgp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wBrgpMapper extends GeomBaseMapper<Dlg100wBrgpEntity> { |
| | | public interface Dlg100wbrgpMapper extends GeomBaseMapper<Dlg100wbrgpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wCptlEntity; |
| | | import com.lf.server.entity.bd.Dlg100wcptlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wCptl |
| | | * Dlg100wcptl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wCptlMapper extends GeomBaseMapper<Dlg100wCptlEntity> { |
| | | public interface Dlg100wcptlMapper extends GeomBaseMapper<Dlg100wcptlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wCptpEntity; |
| | | import com.lf.server.entity.bd.Dlg100wcptpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wCptp |
| | | * Dlg100wcptp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wCptpMapper extends GeomBaseMapper<Dlg100wCptpEntity> { |
| | | public interface Dlg100wcptpMapper extends GeomBaseMapper<Dlg100wcptpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wHfcaEntity; |
| | | import com.lf.server.entity.bd.Dlg100whfcaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wHfca |
| | | * Dlg100whfca |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wHfcaMapper extends GeomBaseMapper<Dlg100wHfcaEntity> { |
| | | public interface Dlg100whfcaMapper extends GeomBaseMapper<Dlg100whfcaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wHfclEntity; |
| | | import com.lf.server.entity.bd.Dlg100whfclEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wHfcl |
| | | * Dlg100whfcl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wHfclMapper extends GeomBaseMapper<Dlg100wHfclEntity> { |
| | | public interface Dlg100whfclMapper extends GeomBaseMapper<Dlg100whfclEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wHfcpEntity; |
| | | import com.lf.server.entity.bd.Dlg100whfcpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wHfcp |
| | | * Dlg100whfcp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wHfcpMapper extends GeomBaseMapper<Dlg100wHfcpEntity> { |
| | | public interface Dlg100whfcpMapper extends GeomBaseMapper<Dlg100whfcpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wHydaEntity; |
| | | import com.lf.server.entity.bd.Dlg100whydaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wHyda |
| | | * Dlg100whyda |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wHydaMapper extends GeomBaseMapper<Dlg100wHydaEntity> { |
| | | public interface Dlg100whydaMapper extends GeomBaseMapper<Dlg100whydaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wHydlEntity; |
| | | import com.lf.server.entity.bd.Dlg100whydlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wHydl |
| | | * Dlg100whydl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wHydlMapper extends GeomBaseMapper<Dlg100wHydlEntity> { |
| | | public interface Dlg100whydlMapper extends GeomBaseMapper<Dlg100whydlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wHydpEntity; |
| | | import com.lf.server.entity.bd.Dlg100whydpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wHydp |
| | | * Dlg100whydp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wHydpMapper extends GeomBaseMapper<Dlg100wHydpEntity> { |
| | | public interface Dlg100whydpMapper extends GeomBaseMapper<Dlg100whydpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wLfclEntity; |
| | | import com.lf.server.entity.bd.Dlg100wlfclEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wLfcl |
| | | * Dlg100wlfcl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wLfclMapper extends GeomBaseMapper<Dlg100wLfclEntity> { |
| | | public interface Dlg100wlfclMapper extends GeomBaseMapper<Dlg100wlfclEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wLfcpEntity; |
| | | import com.lf.server.entity.bd.Dlg100wlfcpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wLfcp |
| | | * Dlg100wlfcp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wLfcpMapper extends GeomBaseMapper<Dlg100wLfcpEntity> { |
| | | public interface Dlg100wlfcpMapper extends GeomBaseMapper<Dlg100wlfcpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wLrdlEntity; |
| | | import com.lf.server.entity.bd.Dlg100wlrdlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wLrdl |
| | | * Dlg100wlrdl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wLrdlMapper extends GeomBaseMapper<Dlg100wLrdlEntity> { |
| | | public interface Dlg100wlrdlMapper extends GeomBaseMapper<Dlg100wlrdlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wLrrlEntity; |
| | | import com.lf.server.entity.bd.Dlg100wlrrlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wLrrl |
| | | * Dlg100wlrrl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wLrrlMapper extends GeomBaseMapper<Dlg100wLrrlEntity> { |
| | | public interface Dlg100wlrrlMapper extends GeomBaseMapper<Dlg100wlrrlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wPiplEntity; |
| | | import com.lf.server.entity.bd.Dlg100wpiplEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wPipl |
| | | * Dlg100wpipl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wPiplMapper extends GeomBaseMapper<Dlg100wPiplEntity> { |
| | | public interface Dlg100wpiplMapper extends GeomBaseMapper<Dlg100wpiplEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wResaEntity; |
| | | import com.lf.server.entity.bd.Dlg100wresaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wResa |
| | | * Dlg100wresa |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wResaMapper extends GeomBaseMapper<Dlg100wResaEntity> { |
| | | public interface Dlg100wresaMapper extends GeomBaseMapper<Dlg100wresaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wRespEntity; |
| | | import com.lf.server.entity.bd.Dlg100wrespEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wResp |
| | | * Dlg100wresp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wRespMapper extends GeomBaseMapper<Dlg100wRespEntity> { |
| | | public interface Dlg100wrespMapper extends GeomBaseMapper<Dlg100wrespEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wRfcaEntity; |
| | | import com.lf.server.entity.bd.Dlg100wrfcaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wRfca |
| | | * Dlg100wrfca |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wRfcaMapper extends GeomBaseMapper<Dlg100wRfcaEntity> { |
| | | public interface Dlg100wrfcaMapper extends GeomBaseMapper<Dlg100wrfcaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wRfclEntity; |
| | | import com.lf.server.entity.bd.Dlg100wrfclEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wRfcl |
| | | * Dlg100wrfcl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wRfclMapper extends GeomBaseMapper<Dlg100wRfclEntity> { |
| | | public interface Dlg100wrfclMapper extends GeomBaseMapper<Dlg100wrfclEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wRfcpEntity; |
| | | import com.lf.server.entity.bd.Dlg100wrfcpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wRfcp |
| | | * Dlg100wrfcp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wRfcpMapper extends GeomBaseMapper<Dlg100wRfcpEntity> { |
| | | public interface Dlg100wrfcpMapper extends GeomBaseMapper<Dlg100wrfcpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wTeraEntity; |
| | | import com.lf.server.entity.bd.Dlg100wteraEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wTera |
| | | * Dlg100wtera |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wTeraMapper extends GeomBaseMapper<Dlg100wTeraEntity> { |
| | | public interface Dlg100wteraMapper extends GeomBaseMapper<Dlg100wteraEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wTerlEntity; |
| | | import com.lf.server.entity.bd.Dlg100wterlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wTerl |
| | | * Dlg100wterl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wTerlMapper extends GeomBaseMapper<Dlg100wTerlEntity> { |
| | | public interface Dlg100wterlMapper extends GeomBaseMapper<Dlg100wterlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wTerpEntity; |
| | | import com.lf.server.entity.bd.Dlg100wterpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wTerp |
| | | * Dlg100wterp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wTerpMapper extends GeomBaseMapper<Dlg100wTerpEntity> { |
| | | public interface Dlg100wterpMapper extends GeomBaseMapper<Dlg100wterpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wVegaEntity; |
| | | import com.lf.server.entity.bd.Dlg100wvegaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wVega |
| | | * Dlg100wvega |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wVegaMapper extends GeomBaseMapper<Dlg100wVegaEntity> { |
| | | public interface Dlg100wvegaMapper extends GeomBaseMapper<Dlg100wvegaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg100wVegpEntity; |
| | | import com.lf.server.entity.bd.Dlg100wvegpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg100wVegp |
| | | * Dlg100wvegp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg100wVegpMapper extends GeomBaseMapper<Dlg100wVegpEntity> { |
| | | public interface Dlg100wvegpMapper extends GeomBaseMapper<Dlg100wvegpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wAanpEntity; |
| | | import com.lf.server.entity.bd.Dlg25waanpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wAanp |
| | | * Dlg25waanp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wAanpMapper extends GeomBaseMapper<Dlg25wAanpEntity> { |
| | | public interface Dlg25waanpMapper extends GeomBaseMapper<Dlg25waanpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wAgnpEntity; |
| | | import com.lf.server.entity.bd.Dlg25wagnpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wAgnp |
| | | * Dlg25wagnp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wAgnpMapper extends GeomBaseMapper<Dlg25wAgnpEntity> { |
| | | public interface Dlg25wagnpMapper extends GeomBaseMapper<Dlg25wagnpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBouacEntity; |
| | | import com.lf.server.entity.bd.Dlg25wbouacEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBouac |
| | | * Dlg25wbouac |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBouacMapper extends GeomBaseMapper<Dlg25wBouacEntity> { |
| | | public interface Dlg25wbouacMapper extends GeomBaseMapper<Dlg25wbouacEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBouadEntity; |
| | | import com.lf.server.entity.bd.Dlg25wbouadEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBouad |
| | | * Dlg25wbouad |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBouadMapper extends GeomBaseMapper<Dlg25wBouadEntity> { |
| | | public interface Dlg25wbouadMapper extends GeomBaseMapper<Dlg25wbouadEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBouapEntity; |
| | | import com.lf.server.entity.bd.Dlg25wbouapEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBouap |
| | | * Dlg25wbouap |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBouapMapper extends GeomBaseMapper<Dlg25wBouapEntity> { |
| | | public interface Dlg25wbouapMapper extends GeomBaseMapper<Dlg25wbouapEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBoulEntity; |
| | | import com.lf.server.entity.bd.Dlg25wboulEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBoul |
| | | * Dlg25wboul |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBoulMapper extends GeomBaseMapper<Dlg25wBoulEntity> { |
| | | public interface Dlg25wboulMapper extends GeomBaseMapper<Dlg25wboulEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBoupEntity; |
| | | import com.lf.server.entity.bd.Dlg25wboupEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBoup |
| | | * Dlg25wboup |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBoupMapper extends GeomBaseMapper<Dlg25wBoupEntity> { |
| | | public interface Dlg25wboupMapper extends GeomBaseMapper<Dlg25wboupEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBrgaEntity; |
| | | import com.lf.server.entity.bd.Dlg25wbrgaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBrga |
| | | * Dlg25wbrga |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBrgaMapper extends GeomBaseMapper<Dlg25wBrgaEntity> { |
| | | public interface Dlg25wbrgaMapper extends GeomBaseMapper<Dlg25wbrgaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBrglEntity; |
| | | import com.lf.server.entity.bd.Dlg25wbrglEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBrgl |
| | | * Dlg25wbrgl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBrglMapper extends GeomBaseMapper<Dlg25wBrglEntity> { |
| | | public interface Dlg25wbrglMapper extends GeomBaseMapper<Dlg25wbrglEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wBrgpEntity; |
| | | import com.lf.server.entity.bd.Dlg25wbrgpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wBrgp |
| | | * Dlg25wbrgp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wBrgpMapper extends GeomBaseMapper<Dlg25wBrgpEntity> { |
| | | public interface Dlg25wbrgpMapper extends GeomBaseMapper<Dlg25wbrgpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wHfcaEntity; |
| | | import com.lf.server.entity.bd.Dlg25whfcaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wHfca |
| | | * Dlg25whfca |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wHfcaMapper extends GeomBaseMapper<Dlg25wHfcaEntity> { |
| | | public interface Dlg25whfcaMapper extends GeomBaseMapper<Dlg25whfcaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wHfclEntity; |
| | | import com.lf.server.entity.bd.Dlg25whfclEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wHfcl |
| | | * Dlg25whfcl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wHfclMapper extends GeomBaseMapper<Dlg25wHfclEntity> { |
| | | public interface Dlg25whfclMapper extends GeomBaseMapper<Dlg25whfclEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wHfcpEntity; |
| | | import com.lf.server.entity.bd.Dlg25whfcpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wHfcp |
| | | * Dlg25whfcp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wHfcpMapper extends GeomBaseMapper<Dlg25wHfcpEntity> { |
| | | public interface Dlg25whfcpMapper extends GeomBaseMapper<Dlg25whfcpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wHydaEntity; |
| | | import com.lf.server.entity.bd.Dlg25whydaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wHyda |
| | | * Dlg25whyda |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wHydaMapper extends GeomBaseMapper<Dlg25wHydaEntity> { |
| | | public interface Dlg25whydaMapper extends GeomBaseMapper<Dlg25whydaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wHydlEntity; |
| | | import com.lf.server.entity.bd.Dlg25whydlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wHydl |
| | | * Dlg25whydl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wHydlMapper extends GeomBaseMapper<Dlg25wHydlEntity> { |
| | | public interface Dlg25whydlMapper extends GeomBaseMapper<Dlg25whydlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wHydpEntity; |
| | | import com.lf.server.entity.bd.Dlg25whydpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wHydp |
| | | * Dlg25whydp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wHydpMapper extends GeomBaseMapper<Dlg25wHydpEntity> { |
| | | public interface Dlg25whydpMapper extends GeomBaseMapper<Dlg25whydpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wLfclEntity; |
| | | import com.lf.server.entity.bd.Dlg25wlfclEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wLfcl |
| | | * Dlg25wlfcl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wLfclMapper extends GeomBaseMapper<Dlg25wLfclEntity> { |
| | | public interface Dlg25wlfclMapper extends GeomBaseMapper<Dlg25wlfclEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wLfcpEntity; |
| | | import com.lf.server.entity.bd.Dlg25wlfcpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wLfcp |
| | | * Dlg25wlfcp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wLfcpMapper extends GeomBaseMapper<Dlg25wLfcpEntity> { |
| | | public interface Dlg25wlfcpMapper extends GeomBaseMapper<Dlg25wlfcpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wLrdlEntity; |
| | | import com.lf.server.entity.bd.Dlg25wlrdlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wLrdl |
| | | * Dlg25wlrdl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wLrdlMapper extends GeomBaseMapper<Dlg25wLrdlEntity> { |
| | | public interface Dlg25wlrdlMapper extends GeomBaseMapper<Dlg25wlrdlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wLrrlEntity; |
| | | import com.lf.server.entity.bd.Dlg25wlrrlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wLrrl |
| | | * Dlg25wlrrl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wLrrlMapper extends GeomBaseMapper<Dlg25wLrrlEntity> { |
| | | public interface Dlg25wlrrlMapper extends GeomBaseMapper<Dlg25wlrrlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wResaEntity; |
| | | import com.lf.server.entity.bd.Dlg25wresaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wResa |
| | | * Dlg25wresa |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wResaMapper extends GeomBaseMapper<Dlg25wResaEntity> { |
| | | public interface Dlg25wresaMapper extends GeomBaseMapper<Dlg25wresaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wRespEntity; |
| | | import com.lf.server.entity.bd.Dlg25wrespEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wResp |
| | | * Dlg25wresp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wRespMapper extends GeomBaseMapper<Dlg25wRespEntity> { |
| | | public interface Dlg25wrespMapper extends GeomBaseMapper<Dlg25wrespEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wRfcaEntity; |
| | | import com.lf.server.entity.bd.Dlg25wrfcaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wRfca |
| | | * Dlg25wrfca |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wRfcaMapper extends GeomBaseMapper<Dlg25wRfcaEntity> { |
| | | public interface Dlg25wrfcaMapper extends GeomBaseMapper<Dlg25wrfcaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wRfclEntity; |
| | | import com.lf.server.entity.bd.Dlg25wrfclEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wRfcl |
| | | * Dlg25wrfcl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wRfclMapper extends GeomBaseMapper<Dlg25wRfclEntity> { |
| | | public interface Dlg25wrfclMapper extends GeomBaseMapper<Dlg25wrfclEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wRfcpEntity; |
| | | import com.lf.server.entity.bd.Dlg25wrfcpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wRfcp |
| | | * Dlg25wrfcp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wRfcpMapper extends GeomBaseMapper<Dlg25wRfcpEntity> { |
| | | public interface Dlg25wrfcpMapper extends GeomBaseMapper<Dlg25wrfcpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wTeraEntity; |
| | | import com.lf.server.entity.bd.Dlg25wteraEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wTera |
| | | * Dlg25wtera |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wTeraMapper extends GeomBaseMapper<Dlg25wTeraEntity> { |
| | | public interface Dlg25wteraMapper extends GeomBaseMapper<Dlg25wteraEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wTerlEntity; |
| | | import com.lf.server.entity.bd.Dlg25wterlEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wTerl |
| | | * Dlg25wterl |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wTerlMapper extends GeomBaseMapper<Dlg25wTerlEntity> { |
| | | public interface Dlg25wterlMapper extends GeomBaseMapper<Dlg25wterlEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wVegaEntity; |
| | | import com.lf.server.entity.bd.Dlg25wvegaEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wVega |
| | | * Dlg25wvega |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wVegaMapper extends GeomBaseMapper<Dlg25wVegaEntity> { |
| | | public interface Dlg25wvegaMapper extends GeomBaseMapper<Dlg25wvegaEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.Dlg25wVegpEntity; |
| | | import com.lf.server.entity.bd.Dlg25wvegpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * Dlg25wVegp |
| | | * Dlg25wvegp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface Dlg25wVegpMapper extends GeomBaseMapper<Dlg25wVegpEntity> { |
| | | public interface Dlg25wvegpMapper extends GeomBaseMapper<Dlg25wvegpEntity> { |
| | | } |
| | |
| | | package com.lf.server.mapper.bd; |
| | | |
| | | import com.lf.server.entity.bd.DlgAgnpEntity; |
| | | import com.lf.server.entity.bd.DlgagnpEntity; |
| | | import com.lf.server.mapper.all.GeomBaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | /** |
| | | * DlgAgnp |
| | | * Dlgagnp |
| | | * @author WWW |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface DlgAgnpMapper extends GeomBaseMapper<DlgAgnpEntity> { |
| | | public interface DlgagnpMapper extends GeomBaseMapper<DlgagnpEntity> { |
| | | } |
| | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.OrderItem; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.lf.server.entity.bd.DlgAgnpEntity; |
| | | import com.lf.server.entity.bd.DlgagnpEntity; |
| | | import com.lf.server.helper.StringHelper; |
| | | import com.lf.server.mapper.bd.DlgAgnpMapper; |
| | | import com.lf.server.mapper.bd.DlgagnpMapper; |
| | | import com.lf.server.service.all.BaseQueryService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | |
| | | @Service |
| | | public class LocateService { |
| | | @Autowired |
| | | DlgAgnpMapper dlgAgnpMapper; |
| | | DlgagnpMapper dlgAgnpMapper; |
| | | |
| | | @Autowired |
| | | BaseQueryService baseQueryService; |
| | | |
| | | public Page<DlgAgnpEntity> selectAddrByPage(String name, Integer pageSize, Integer pageIndex) { |
| | | Page<DlgAgnpEntity> paging = new Page<>(pageIndex, pageSize); |
| | | public Page<DlgagnpEntity> selectAddrByPage(String name, Integer pageSize, Integer pageIndex) { |
| | | Page<DlgagnpEntity> paging = new Page<>(pageIndex, pageSize); |
| | | paging.addOrder(OrderItem.asc("gid")); |
| | | |
| | | QueryWrapper<DlgAgnpEntity> wrapper = null; |
| | | QueryWrapper<DlgagnpEntity> wrapper = null; |
| | | if (!StringHelper.isEmpty(name)) { |
| | | wrapper = new QueryWrapper<>(); |
| | | wrapper.like("name", name.trim()); |