BizConstant.java 287 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package com.yiboshi.science; /** * 业务常量 * * @author Negi * @version 2019-04 */ public class BizConstant { // 查询数据量限制 public static final Long QUERY_LIMIT = 100000L; // 是否允许物理删除 public static final boolean REAL_DELETE = true; }