张泽亮 пре 1 недеља
родитељ
комит
d81dfa142e
4 измењених фајлова са 2 додато и 31 уклоњено
  1. +0
    -7
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/resource/TResourceLandController.java
  2. +1
    -7
      ruoyi-business/src/main/java/com/ruoyi/resource/mapper/TResourceLandMapper.java
  3. +0
    -7
      ruoyi-business/src/main/java/com/ruoyi/resource/service/ITResourceLandService.java
  4. +1
    -10
      ruoyi-business/src/main/java/com/ruoyi/resource/service/impl/TResourceLandServiceImpl.java

+ 0
- 7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/resource/TResourceLandController.java Прегледај датотеку

@@ -14,7 +14,6 @@ import com.ruoyi.common.utils.ServletUtils;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.pdf.PdfUtils;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.utils.space.SpaceUtils;
import com.ruoyi.common.utils.translation.TranslateUtils;
import com.ruoyi.framework.web.service.TokenService;
import com.ruoyi.resource.domain.TResourceLand;
@@ -245,12 +244,6 @@ public class TResourceLandController extends BaseController
return toAjax(tResourceLandService.deleteTResourceLandByFids(fids));
}

@Log(title = "空间字段置空", businessType = BusinessType.UPDATE)
@GetMapping("/clear/{fid}")
public AjaxResult clearTheGeom(@PathVariable("fid") Long fid) {
return toAjax(tResourceLandService.clearTheGeom(fid));
}

/**
* 打印地块属性
*/


+ 1
- 7
ruoyi-business/src/main/java/com/ruoyi/resource/mapper/TResourceLandMapper.java Прегледај датотеку

@@ -83,11 +83,5 @@ public interface TResourceLandMapper
*/
public int deleteTResourceLandByFids(Long[] fids);

/**
* 清空theGeom字段
*
* @param fid
* @return
*/
public int clearTheGeom(Long fid);

}

+ 0
- 7
ruoyi-business/src/main/java/com/ruoyi/resource/service/ITResourceLandService.java Прегледај датотеку

@@ -93,11 +93,4 @@ public interface ITResourceLandService
*/
public int deleteTResourceLandByFid(Long fid);

/**
* 清空theGeom字段
*
* @param fid
* @return
*/
public int clearTheGeom(Long fid);
}

+ 1
- 10
ruoyi-business/src/main/java/com/ruoyi/resource/service/impl/TResourceLandServiceImpl.java Прегледај датотеку

@@ -233,14 +233,5 @@ public class TResourceLandServiceImpl implements ITResourceLandService
return tResourceLandMapper.deleteTResourceLandByFid(fid);
}

/**
* 清空theGeom字段
*
* @param fid
* @return
*/
@Override
public int clearTheGeom(Long fid) {
return tResourceLandMapper.clearTheGeom(fid);
}

}

Loading…
Откажи
Сачувај