045e1d44创建于 2023年9月8日历史提交
const conditions = [
  '=',
  '!=',
  '<',
  '<=',
  '>',
  '>=',
  'contains',
  'containsCaseInsensitive',
  'doesNotContain',
  'doesNotContainCaseInsensitive',
  'beginsWith',
  'doesNotBeginWith',
  'endsWith',
  'doesNotEndWith',
  'isNull',
  'isNotNull',
  'isEmpty',
  'isNotEmpty',
  'isBetween',
  'isNotBetween',
  'isInList',
  'isNotInList',
];
export default conditions;