- package com.ruoyi.resource.mapper;
-
- import com.ruoyi.resource.domain.TResourceLand;
-
- import java.util.List;
-
- /**
- * 地块属性Mapper接口
- *
- * @author rongxin
- * @date 2025-09-05
- */
- public interface TResourceLandMapper
- {
- /**
- * 查询地块属性
- *
- * @param fid 地块属性主键
- * @return 地块属性
- */
- public TResourceLand selectTResourceLandByFid(Long fid);
-
- public TResourceLand selectTResourceLandByDkbm(String dkbm);
-
- public String selectTResourceLandAutoGenCode(String orgCode);
-
- /**
- * 查询地块属性列表
- *
- * @param tResourceLand 地块属性
- * @return 地块属性集合
- */
- public List<TResourceLand> selectTResourceLandList(TResourceLand tResourceLand);
-
- /**
- * 新增地块属性
- *
- * @param tResourceLand 地块属性
- * @return 结果
- */
- public int insertTResourceLand(TResourceLand tResourceLand);
-
- /**
- * 批量新增地块属性
- *
- * @param list 地块属性
- * @return 结果
- */
- public int insertTResourceLandBatch(List<TResourceLand> list);
-
- /**
- * 修改地块属性
- *
- * @param tResourceLand 地块属性
- * @return 结果
- */
- public int updateTResourceLand(TResourceLand tResourceLand);
-
- /**
- * 批量修改 地块属性
- *
- * @param list 地块属性
- * @return 结果
- */
- public int updateTResourceLandBatch(List<TResourceLand> list);
-
- /**
- * 删除地块属性
- *
- * @param fid 地块属性主键
- * @return 结果
- */
- public int deleteTResourceLandByFid(Long fid);
-
- /**
- * 批量删除地块属性
- *
- * @param fids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteTResourceLandByFids(Long[] fids);
- }
|