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