思雨搜索框架name的书写格式

/** 属性比较类型. */
EQ, LIKE, LT, GT, LE, GE, NE, /*is null*/NL, /*is not null*/NNL, IN;
/** 属性数据类型. */
S(String.class), I(Integer.class), L(Long.class), N(Double.class), D(Date.class), B(Boolean.class), E(Enum.class), C(BigDecimal.class), A(Object[].class);

1,文本对象类似
filter_LIKES_pregnancy.pregnantWoman.womanName
2,日期对象大于
filter_GTD_checkDate
3,关联对象id相等
filter_EQI_pregnancy.pregnantWoman.householdCity.id
4,boolean类型相等
filter_EQB_disabled
5,枚举对象相等
filter_EQE-com.zainta.ultrasonic.entity.enumeration.Gestation_gestation
6,多个属性查找用or
filter_LIKES_customerContacts.contact.contactInformation-contactMobile1_OR_customerContacts.contact.contactInformation-contactMobile2_OR_customerContacts.contact.contactInformation-contactMobile3

你可能感兴趣的:(name)