上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 75 下一页
摘要: @ApiModelProperty("资源状态名称") private String statusName; @Override public void setStatus(Integer status) { super.setStatus(status); this.statusName = En 阅读全文
posted @ 2021-12-17 15:55 八英里 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 接受两个参数的函数是BiFunction: BiFunction<Integer, Integer, Integer> f3 = (x, y) -> x + y; 不接受参数的函数是Supplier: Supplier<Double> f4 = () -> Math.random(); 或相当于: 阅读全文
posted @ 2021-12-12 21:33 八英里 阅读(4494) 评论(0) 推荐(0) 编辑
摘要: package com.exe.competency.service.impl; import com.exe.competency.domain.RuleParam; import com.exe.competency.domain.RuleResult; import org.springfra 阅读全文
posted @ 2021-12-12 10:25 八英里 阅读(836) 评论(0) 推荐(0) 编辑
摘要: <sql id = "Condition_List"> <!-- 根据资源商类型查询 --> <if test="query.partnerType != null" > and a.type = #{query.partnerType} </if> <!-- 根据所在地查询 --> <if tes 阅读全文
posted @ 2021-12-09 20:35 八英里 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 双击+下拉是有条件的,一是没有筛选、隐藏、合并,并且相邻的一列没有空白。 阅读全文
posted @ 2021-11-30 15:45 八英里 阅读(1509) 评论(0) 推荐(0) 编辑
摘要: OrderCharge oc = new OrderCharge();oc.setProcessInstanceId(spNo);LambdaUpdateWrapper<OrderCharge> luw = new LambdaUpdateWrapper<>();luw.eq(OrderCharge 阅读全文
posted @ 2021-11-26 15:07 八英里 阅读(338) 评论(0) 推荐(0) 编辑
摘要: C:\Users\deepa\.m2\repository\com\yiautos 阅读全文
posted @ 2021-11-24 10:25 八英里 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 我在用Idea跑SpringBoot的工程的时候报 Cannot determine build data storage root for project 造成这个问题的原因是当前用户对这个工程文件夹没有访问权限,所以你需要给这个文件夹赋权,首先进入你的工程所在目录,如图所示: 然后你再次启动项目 阅读全文
posted @ 2021-11-10 10:21 八英里 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: package com.yiautos.psf.order.service.impl; import com.yiautos.psf.order.service.OrderExpandService; import org.junit.Test; import com.yiautos.psf.Psf 阅读全文
posted @ 2021-11-09 13:37 八英里 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1、椭圆表示:“开始”与“结束”; 2、矩形表示:行动方案、普通工作环节用; 3、菱形表示:问题判断或判定(审核/审批/评审)环节; 4、用平行四边形表示:输入输出; 5、箭头代表:工作流方向。 6、圆形表示:流程图之间的链接。 扩展资料: 绘制流程图中的注意事项: 1、绘制流程图时,为了提高流程图 阅读全文
posted @ 2021-11-02 10:25 八英里 阅读(535) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 75 下一页