摘要:
阅读全文
摘要:
配置 mybatis-plus: configuration: map-underscore-to-camel-case: true cache-enabled: false global-config: db-config: column-underline: true db-type: mysq 阅读全文
摘要:
public interface PlanDayMapper extends MPJBaseMapper<PwPlanDayPO> { } MPJLambdaWrapper<PwPlanDayPO> wrapper = MPJWrappers.lambdaJoin(PwPlanDayPO.class 阅读全文
摘要:
mybatis-plus: configuration: #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl map-underscore-to-camel-case: true cache-enabled: false global-con 阅读全文
摘要:
logging: level: org: hibernate: SQL: DEBUG type: descriptor: sql: BasicBinder: TRACE 阅读全文
摘要:
@Transient直接忽略 新增和修改忽略 @Column(name ="`exc_status`", insertable = false, updatable = false) @ApiModelProperty(value = "执行状态:字典(0101020302)") private P 阅读全文
摘要:
<dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>5.6.0</version> </dependency> <dependency> <groupId>net.java.de 阅读全文
摘要:
先转一次byte数组 再处理byte[] bigContent =file.getBytes(); Thumbnails.of(new ByteArrayInputStream(bigContent)).scale(1f).outputQuality(0.3f).toFile(fileThu);这里 阅读全文
摘要:
mybatis非数据字段注解@TableField(exist=false)注解 不是数据库字段 阅读全文