摘要:
public class test_20190923 { public static void main(String... as) { // 基本类型转换 低精度到高精度隐式转换 高精度到低精度显式转换 // 1.byte to any byte b = 1; short s = b; int i = b... 阅读全文
摘要:
//需要的查询条件为 a and (b or c or d) 可以转换为 (a and b) or (a and c) or (a and d) //第一种方式 使用andEqualTo拼接条件 private Example madeExample(R request) { Example exa 阅读全文