上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 70 下一页
摘要: UpdateWrapper<LogisticsOrderCharge> chargeUpdateWrapper = new UpdateWrapper<>();chargeUpdateWrapper.set("update_time",new Date());if(costType == Logis 阅读全文
posted @ 2021-12-30 11:17 八英里 阅读(392) 评论(0) 推荐(0)
摘要: enum switch case label must be the unqualified name of an enumeration constant 或 错误: 枚举 switchcase 标签必须为枚举常量的非限定名称case ColorType.GREEN: 在咱们Android开发中, 阅读全文
posted @ 2021-12-29 09:22 八英里 阅读(1450) 评论(0) 推荐(0)
摘要: private final TransactionTemplate transactionTemplate; 阅读全文
posted @ 2021-12-22 19:17 八英里 阅读(46) 评论(0) 推荐(0)
摘要: @TableField(exist = false) 阅读全文
posted @ 2021-12-17 17:44 八英里 阅读(66) 评论(0) 推荐(0)
摘要: @ApiModelProperty("资源状态名称") private String statusName; @Override public void setStatus(Integer status) { super.setStatus(status); this.statusName = En 阅读全文
posted @ 2021-12-17 15:55 八英里 阅读(29) 评论(0) 推荐(0)
摘要: 接受两个参数的函数是BiFunction: BiFunction<Integer, Integer, Integer> f3 = (x, y) -> x + y; 不接受参数的函数是Supplier: Supplier<Double> f4 = () -> Math.random(); 或相当于: 阅读全文
posted @ 2021-12-12 21:33 八英里 阅读(4726) 评论(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 八英里 阅读(858) 评论(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 八英里 阅读(245) 评论(0) 推荐(0)
摘要: 双击+下拉是有条件的,一是没有筛选、隐藏、合并,并且相邻的一列没有空白。 阅读全文
posted @ 2021-11-30 15:45 八英里 阅读(1632) 评论(0) 推荐(0)
摘要: OrderCharge oc = new OrderCharge();oc.setProcessInstanceId(spNo);LambdaUpdateWrapper<OrderCharge> luw = new LambdaUpdateWrapper<>();luw.eq(OrderCharge 阅读全文
posted @ 2021-11-26 15:07 八英里 阅读(367) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 70 下一页