|
@@ -3,6 +3,7 @@ package com.siwei.apply.mapper;
|
|
import com.siwei.apply.domain.Jsgcghxk;
|
|
import com.siwei.apply.domain.Jsgcghxk;
|
|
import com.siwei.apply.domain.vo.JsgcghxkUpdateVo;
|
|
import com.siwei.apply.domain.vo.JsgcghxkUpdateVo;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@@ -35,4 +36,11 @@ public interface JsgcghxkMapper {
|
|
* @param jsgcghxkUpdateVo
|
|
* @param jsgcghxkUpdateVo
|
|
*/
|
|
*/
|
|
void update(JsgcghxkUpdateVo jsgcghxkUpdateVo);
|
|
void update(JsgcghxkUpdateVo jsgcghxkUpdateVo);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 更新建设工程规划许可的上链状态
|
|
|
|
+ * @param id 主键ID
|
|
|
|
+ * @param hasOnchain 是否上链
|
|
|
|
+ */
|
|
|
|
+ void updateHasOnchain(@Param("id") String id, @Param("hasOnchain") Boolean hasOnchain);
|
|
}
|
|
}
|