|
@@ -3,6 +3,7 @@ package com.siwei.apply.mapper;
|
|
import com.siwei.apply.domain.Ydbp;
|
|
import com.siwei.apply.domain.Ydbp;
|
|
import com.siwei.apply.domain.vo.YdbpUpdateVo;
|
|
import com.siwei.apply.domain.vo.YdbpUpdateVo;
|
|
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 YdbpMapper {
|
|
* @param ydbpUpdateVo
|
|
* @param ydbpUpdateVo
|
|
*/
|
|
*/
|
|
void update(YdbpUpdateVo ydbpUpdateVo);
|
|
void update(YdbpUpdateVo ydbpUpdateVo);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 更新用地报批的上链状态
|
|
|
|
+ * @param id 用地报批ID
|
|
|
|
+ * @param hasOnchain 是否已上链
|
|
|
|
+ */
|
|
|
|
+ void updateHasOnchain(@Param("id") String id, @Param("hasOnchain") Boolean hasOnchain);
|
|
}
|
|
}
|