提交 7f881650 authored 作者: yangdongming's avatar yangdongming

--no commit message

上级 7069a45a
......@@ -171,6 +171,30 @@ public interface GeographysignMapper extends BaseMapper<Geographysign> {
+ "</script>")
Integer queryRegion(@Param("form")GeographyForm form);
/** 分布多少地区*/
@Select("<script>"
+ "select * from dl_geographysign where 1=1"
+ "<if test='"+NOTBLANK+"(form.province) '>"
+ " and province = #{form.province} "
+ "</if>"
+ "<if test='"+ NOTBLANK +"(form.city)'>"
+ " and city = #{form.city} "
+ "</if>"
+ "<if test='"+ NOTBLANK +"(form.county)'>"
+ " and county = #{form.county} "
+ "</if>"
+ "<if test='"+ NOTBLANK +"(form.signstate)'>"
+ " and signstate = #{form.signstate} "
+ "</if>"
+ "<if test='"+ NOTBLANK +"(form.categoryOne)'>"
+ " and reserve1 = #{form.categoryOne} "
+ "</if>"
+ ""
+ "</script>")
List<Geographysign> getAllSign(@Param("form")GeographyForm form);
/** 分类数据数据查询*/
@Select("<script>"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论