|
@@ -3,6 +3,7 @@ package com.siwei.apply.mapper;
|
|
import com.siwei.apply.domain.Tdhyhs;
|
|
import com.siwei.apply.domain.Tdhyhs;
|
|
import com.siwei.apply.domain.vo.TdhyhsUpdateVo;
|
|
import com.siwei.apply.domain.vo.TdhyhsUpdateVo;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
// 土地核验与规划核实 Mapper 接口
|
|
// 土地核验与规划核实 Mapper 接口
|
|
@Mapper
|
|
@Mapper
|
|
@@ -33,4 +34,11 @@ public interface TdhyhsMapper {
|
|
* @param tdhyhsUpdateVo
|
|
* @param tdhyhsUpdateVo
|
|
*/
|
|
*/
|
|
void update(TdhyhsUpdateVo tdhyhsUpdateVo);
|
|
void update(TdhyhsUpdateVo tdhyhsUpdateVo);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 更新土地核验与规划核实的上链状态
|
|
|
|
+ * @param id 主键ID
|
|
|
|
+ * @param hasOnchain 是否上链
|
|
|
|
+ */
|
|
|
|
+ void updateHasOnchain(@Param("id") String id, @Param("hasOnchain") Boolean hasOnchain);
|
|
}
|
|
}
|