摘要: 0、先在settings.xml加上阿里的镜像在刷新试试 <mirror> <id>aliyunmaven</id> <mirrorOf>*</mirrorOf> <name>阿里云公共仓库</name> <url>https://maven.aliyun.com/repository/public 阅读全文
posted @ 2020-08-18 20:27 林荼 阅读(878) 评论(0) 推荐(0) 编辑
摘要: swal( '审核通过!', '', 'success' ).then(function () { Return(); }) 阅读全文
posted @ 2020-08-11 14:27 林荼 阅读(651) 评论(0) 推荐(0) 编辑
摘要: wm_concat 例: select wm_concat(市) from pa50 where apa132=省 阅读全文
posted @ 2020-08-11 14:25 林荼 阅读(1092) 评论(0) 推荐(0) 编辑
摘要: select xxx,xxx from xxx where decode(AAA,0,BBB,1,CCC)='12345' 如果AAA字段等于0则AAA=''12345' 否则如果BBB字段等于1则BBB='12345' 否则CCC='12345' 阅读全文
posted @ 2020-08-11 14:24 林荼 阅读(533) 评论(0) 推荐(1) 编辑
摘要: @TableField(exist = false) 注解加载bean属性上,表示当前属性不是数据库的字段,但在项目中必须使用,这样在新增等使用bean的时候,mybatis-plus就会忽略这个,不会报错 阅读全文
posted @ 2020-08-11 14:17 林荼 阅读(3122) 评论(0) 推荐(0) 编辑
摘要: <if test="params.length()!=2"> 阅读全文
posted @ 2020-08-11 14:16 林荼 阅读(3852) 评论(0) 推荐(0) 编辑
摘要: <foreach collection="array" open="(" separator="," close=")" index="index" item="item"> #{item} </foreach> item:集合中元素迭代时的别名,该参数为必选。 index:在list和数组中,in 阅读全文
posted @ 2020-08-11 14:15 林荼 阅读(1066) 评论(0) 推荐(0) 编辑
摘要: loadComplete: function (data) { console.log(data); }, 例: var jgGrid = $("#jgTable").jqGrid({ url: "<%=request.getContextPath()%>/Pe03/toDetails_Audit" 阅读全文
posted @ 2020-08-11 14:14 林荼 阅读(1891) 评论(0) 推荐(0) 编辑
摘要: import org.springframework.beans.BeanUtils; BeanUtils.copyProperties(源对象, 目标对象); 属性名需要相同 阅读全文
posted @ 2020-08-11 14:10 林荼 阅读(407) 评论(0) 推荐(0) 编辑
摘要: package com.fsinfo.common.utils; import com.fsinfo.modules.enterprise.entity.EnterpriseRecordEntity; import org.apache.commons.io.FileUtils; import or 阅读全文
posted @ 2020-08-11 11:33 林荼 阅读(1610) 评论(2) 推荐(0) 编辑