| | |
| | | */ |
| | | package org.springblade.modules.lang.service; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.farm.entity.Farm; |
| | | import org.springblade.modules.lang.entity.Land; |
| | | import org.springblade.modules.lang.vo.LandVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 地块表 服务类 |
| | |
| | | * @return |
| | | */ |
| | | IPage<LandVO> selectLandPage(IPage<LandVO> page, LandVO land); |
| | | boolean saveLandInfo(Land land); |
| | | /** |
| | | * 详情信息(自定义查询) |
| | | * @return |
| | | */ |
| | | Land getLandInfo(LandVO land); |
| | | /** |
| | | * 更新地块信息 |
| | | * @param farm |
| | | * @return |
| | | */ |
| | | boolean updateLandById(Land land); |
| | | |
| | | /** |
| | | * 地块列表 |
| | | * @param userid |
| | | * @return |
| | | */ |
| | | List selectLandList(String userid); |
| | | } |