摘要:
https://blog.csdn.net/qq_39715000/article/details/120090033 说明:poEntity代表实体类,poService代表service类, Wrappers.emptyWrapper() 写法1: BeanUtil.copyProperties 阅读全文
摘要:
batchDelete(){ if (this.dataList.length == 0) { this.$message.warning('无可操作数据,请勾选后在执行!') return; } this.$confirm('是否确认删除?', '提示', { confirmButtonText: 阅读全文
摘要:
map的values() Collection v = map.values(); 转化为数组或者List集合 //转化为List: List<String> l=new ArrayList<String>(map.values()); for(String s:l){ System.out.pri 阅读全文
摘要:
new HashMap<Integer, String>() {{ put("0","成功"); }}; 第一个花括号应该熟悉,就是一个匿名内部类,那第二个花括号在类里面,只能是一个代码块了。so,以上就是在匿名内部类的代码块里做了一些初始化操作。 Map mParam = new HashMap< 阅读全文