SYMBOL INDEX (13455 symbols across 528 files) FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/Application.java class Application (line 9) | @SpringBootApplication(scanBasePackages = {"org.linlinjava.litemall.db",... method main (line 16) | public static void main(String[] args) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/config/AdminSwagger2Configuration.java class AdminSwagger2Configuration (line 23) | @Configuration method adminDocket (line 27) | @Bean method adminApiInfo (line 39) | private ApiInfo adminApiInfo() { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/config/KaptchaConfig.java class KaptchaConfig (line 11) | @Configuration method kaptchaProducer (line 14) | @Bean FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/config/ShiroConfig.java class ShiroConfig (line 19) | @Configuration method realm (line 22) | @Bean method shiroFilterFactoryBean (line 27) | @Bean method sessionManager (line 47) | @Bean method defaultWebSecurityManager (line 53) | @Bean method authorizationAttributeSourceAdvisor (line 61) | @Bean method defaultAdvisorAutoProxyCreator (line 69) | @Bean FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/config/ShiroExceptionHandler.java class ShiroExceptionHandler (line 14) | @ControllerAdvice method unauthenticatedHandler (line 20) | @ExceptionHandler(AuthenticationException.class) method unauthorizedHandler (line 27) | @ExceptionHandler(AuthorizationException.class) FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/dto/GoodsAllinone.java class GoodsAllinone (line 8) | public class GoodsAllinone { method getGoods (line 14) | public LitemallGoods getGoods() { method setGoods (line 18) | public void setGoods(LitemallGoods goods) { method getProducts (line 22) | public LitemallGoodsProduct[] getProducts() { method setProducts (line 26) | public void setProducts(LitemallGoodsProduct[] products) { method getSpecifications (line 30) | public LitemallGoodsSpecification[] getSpecifications() { method setSpecifications (line 34) | public void setSpecifications(LitemallGoodsSpecification[] specificati... method getAttributes (line 38) | public LitemallGoodsAttribute[] getAttributes() { method setAttributes (line 42) | public void setAttributes(LitemallGoodsAttribute[] attributes) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/job/CouponJob.java class CouponJob (line 20) | @Component method checkCouponExpired (line 34) | @Scheduled(fixedDelay = 60 * 60 * 1000) FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/job/DbJob.java class DbJob (line 19) | @Component method backup (line 29) | @Scheduled(cron = "0 0 5 * * ?") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/job/OrderJob.java class OrderJob (line 20) | @Component method checkOrderUnconfirm (line 44) | @Scheduled(cron = "0 0 3 * * ?") method checkOrderComment (line 73) | @Scheduled(cron = "0 0 4 * * ?") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/service/AdminGoodsService.java class AdminGoodsService (line 24) | @Service method list (line 45) | public Object list(Integer goodsId, String goodsSn, String name, method validate (line 51) | private Object validate(GoodsAllinone goodsAllinone) { method update (line 143) | @Transactional method delete (line 216) | @Transactional method create (line 231) | @Transactional method list2 (line 290) | public Object list2() { method detail (line 331) | public Object detail(Integer id) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/service/AdminOrderService.java class AdminOrderService (line 34) | @Service method list (line 58) | public Object list(String nickname, String consignee, String orderSn, ... method detail (line 64) | public Object detail(Integer id) { method refund (line 92) | @Transactional method ship (line 194) | public Object ship(String body) { method delete (line 239) | public Object delete(String body) { method reply (line 269) | public Object reply(String body) { method pay (line 293) | public Object pay(String body) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/service/LogHelper.java class LogHelper (line 25) | @Component method logGeneralSucceed (line 35) | public void logGeneralSucceed(String action) { method logGeneralSucceed (line 39) | public void logGeneralSucceed(String action, String result) { method logGeneralFail (line 43) | public void logGeneralFail(String action, String error) { method logAuthSucceed (line 47) | public void logAuthSucceed(String action) { method logAuthSucceed (line 51) | public void logAuthSucceed(String action, String result) { method logAuthFail (line 55) | public void logAuthFail(String action, String error) { method logOrderSucceed (line 59) | public void logOrderSucceed(String action) { method logOrderSucceed (line 63) | public void logOrderSucceed(String action, String result) { method logOrderFail (line 67) | public void logOrderFail(String action, String error) { method logOtherSucceed (line 71) | public void logOtherSucceed(String action) { method logOtherSucceed (line 75) | public void logOtherSucceed(String action, String result) { method logOtherFail (line 80) | public void logOtherFail(String action, String error) { method logAdmin (line 84) | public void logAdmin(Integer type, String action, Boolean succeed, Str... FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/shiro/AdminAuthorizingRealm.java class AdminAuthorizingRealm (line 27) | public class AdminAuthorizingRealm extends AuthorizingRealm { method doGetAuthorizationInfo (line 39) | @Override method doGetAuthenticationInfo (line 55) | @Override FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/shiro/AdminWebSessionManager.java class AdminWebSessionManager (line 12) | public class AdminWebSessionManager extends DefaultWebSessionManager { method AdminWebSessionManager (line 18) | public AdminWebSessionManager() { method getSessionId (line 25) | @Override FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/task/AdminTaskStartupRunner.java class AdminTaskStartupRunner (line 16) | @Component method run (line 24) | @Override FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/task/GrouponRuleExpiredTask.java class GrouponRuleExpiredTask (line 16) | public class GrouponRuleExpiredTask extends Task { method GrouponRuleExpiredTask (line 20) | public GrouponRuleExpiredTask(Integer grouponRuleId, long delayInMilli... method run (line 25) | @Override FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/util/AdminResponseCode.java class AdminResponseCode (line 3) | public class AdminResponseCode { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/util/Permission.java class Permission (line 6) | public class Permission { method getRequiresPermissions (line 11) | public RequiresPermissions getRequiresPermissions() { method getRequiresPermissionsDesc (line 15) | public RequiresPermissionsDesc getRequiresPermissionsDesc() { method setRequiresPermissions (line 19) | public void setRequiresPermissions(RequiresPermissions requiresPermiss... method setRequiresPermissionsDesc (line 23) | public void setRequiresPermissionsDesc(RequiresPermissionsDesc require... method getApi (line 27) | public String getApi() { method setApi (line 31) | public void setApi(String api) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/util/PermissionUtil.java class PermissionUtil (line 19) | public class PermissionUtil { method listPermVo (line 21) | public static List listPermVo(List permissions) { method listPermission (line 88) | public static List listPermission(ApplicationContext conte... method listPermissionString (line 145) | public static Set listPermissionString(List permis... FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/vo/CatVo.java class CatVo (line 5) | public class CatVo { method getValue (line 10) | public Integer getValue() { method setValue (line 14) | public void setValue(Integer value) { method getLabel (line 18) | public String getLabel() { method setLabel (line 22) | public void setLabel(String label) { method getChildren (line 26) | public List getChildren() { method setChildren (line 30) | public void setChildren(List children) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/vo/CategoryVo.java class CategoryVo (line 5) | public class CategoryVo { method getChildren (line 16) | public List getChildren() { method setChildren (line 20) | public void setChildren(List children) { method getId (line 24) | public Integer getId() { method setId (line 28) | public void setId(Integer id) { method getName (line 32) | public String getName() { method setName (line 36) | public void setName(String name) { method getKeywords (line 40) | public String getKeywords() { method setKeywords (line 44) | public void setKeywords(String keywords) { method getDesc (line 48) | public String getDesc() { method setDesc (line 52) | public void setDesc(String desc) { method getIconUrl (line 56) | public String getIconUrl() { method setIconUrl (line 60) | public void setIconUrl(String iconUrl) { method getPicUrl (line 64) | public String getPicUrl() { method setPicUrl (line 68) | public void setPicUrl(String picUrl) { method getLevel (line 72) | public String getLevel() { method setLevel (line 76) | public void setLevel(String level) { method getPid (line 80) | public Integer getPid() { method setPid (line 84) | public void setPid(Integer pid) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/vo/PermVo.java class PermVo (line 5) | public class PermVo { method getId (line 11) | public String getId() { method setId (line 15) | public void setId(String id) { method getLabel (line 19) | public String getLabel() { method setLabel (line 23) | public void setLabel(String label) { method setApi (line 27) | public void setApi(String api) { method getApi (line 31) | public String getApi() { method getChildren (line 35) | public List getChildren() { method setChildren (line 39) | public void setChildren(List children) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/vo/RegionVo.java class RegionVo (line 5) | public class RegionVo { method getId (line 13) | public Integer getId() { method setId (line 17) | public void setId(Integer id) { method getChildren (line 21) | public List getChildren() { method getName (line 25) | public String getName() { method setName (line 29) | public void setName(String name) { method getType (line 33) | public Byte getType() { method setType (line 37) | public void setType(Byte type) { method getCode (line 41) | public Integer getCode() { method setCode (line 45) | public void setCode(Integer code) { method setChildren (line 49) | public void setChildren(List children) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/vo/StatVo.java class StatVo (line 8) | public class StatVo { method getColumns (line 12) | public String[] getColumns() { method setColumns (line 16) | public void setColumns(String[] columns) { method getRows (line 20) | public List getRows() { method setRows (line 24) | public void setRows(List rows) { method add (line 28) | public void add(Map... r) { FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminAdController.java class AdminAdController (line 20) | @RestController method list (line 29) | @RequiresPermissions("admin:ad:list") method validate (line 41) | private Object validate(LitemallAd ad) { method create (line 53) | @RequiresPermissions("admin:ad:create") method read (line 65) | @RequiresPermissions("admin:ad:read") method update (line 73) | @RequiresPermissions("admin:ad:update") method delete (line 88) | @RequiresPermissions("admin:ad:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminAddressController.java class AdminAddressController (line 22) | @RestController method list (line 33) | @RequiresPermissions("admin:address:list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminAdminController.java class AdminAdminController (line 27) | @RestController method list (line 38) | @RequiresPermissions("admin:admin:list") method validate (line 50) | private Object validate(LitemallAdmin admin) { method create (line 65) | @RequiresPermissions("admin:admin:create") method read (line 89) | @RequiresPermissions("admin:admin:read") method update (line 97) | @RequiresPermissions("admin:admin:update") method delete (line 122) | @RequiresPermissions("admin:admin:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminAftersaleController.java class AdminAftersaleController (line 36) | @RestController method list (line 57) | @RequiresPermissions("admin:aftersale:list") method recept (line 69) | @RequiresPermissions("admin:aftersale:recept") method batchRecept (line 91) | @RequiresPermissions("admin:aftersale:batch-recept") method reject (line 119) | @RequiresPermissions("admin:aftersale:reject") method batchReject (line 141) | @RequiresPermissions("admin:aftersale:batch-reject") method refund (line 165) | @RequiresPermissions("admin:aftersale:refund") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminAuthController.java class AdminAuthController (line 40) | @RestController method kaptcha (line 58) | @GetMapping("/kaptcha") method doKaptcha (line 67) | private String doKaptcha(HttpServletRequest request) { method login (line 87) | @PostMapping("/login") method logout (line 143) | @RequiresAuthentication method info (line 154) | @RequiresAuthentication method toApi (line 178) | private Collection toApi(Set permissions) { method page401 (line 206) | @GetMapping("/401") method pageIndex (line 211) | @GetMapping("/index") method page403 (line 216) | @GetMapping("/403") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminBrandController.java class AdminBrandController (line 21) | @RestController method list (line 30) | @RequiresPermissions("admin:brand:list") method validate (line 42) | private Object validate(LitemallBrand brand) { method create (line 60) | @RequiresPermissions("admin:brand:create") method read (line 72) | @RequiresPermissions("admin:brand:read") method update (line 80) | @RequiresPermissions("admin:brand:update") method delete (line 94) | @RequiresPermissions("admin:brand:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminCategoryController.java class AdminCategoryController (line 22) | @RestController method list (line 31) | @RequiresPermissions("admin:category:list") method validate (line 71) | private Object validate(LitemallCategory category) { method create (line 93) | @RequiresPermissions("admin:category:create") method read (line 105) | @RequiresPermissions("admin:category:read") method update (line 113) | @RequiresPermissions("admin:category:update") method delete (line 128) | @RequiresPermissions("admin:category:delete") method catL1 (line 140) | @RequiresPermissions("admin:category:list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminCollectController.java class AdminCollectController (line 21) | @RestController method list (line 31) | @RequiresPermissions("admin:collect:list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminCommentController.java class AdminCommentController (line 18) | @RestController method list (line 27) | @RequiresPermissions("admin:comment:list") method delete (line 39) | @RequiresPermissions("admin:comment:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminConfigController.java class AdminConfigController (line 17) | @RestController method listMall (line 26) | @RequiresPermissions("admin:config:mall:list") method updateMall (line 34) | @RequiresPermissions("admin:config:mall:updateConfigs") method listExpress (line 44) | @RequiresPermissions("admin:config:express:list") method updateExpress (line 52) | @RequiresPermissions("admin:config:express:updateConfigs") method lisOrder (line 62) | @RequiresPermissions("admin:config:order:list") method updateOrder (line 70) | @RequiresPermissions("admin:config:order:updateConfigs") method listWx (line 79) | @RequiresPermissions("admin:config:wx:list") method updateWx (line 87) | @RequiresPermissions("admin:config:wx:updateConfigs") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminCouponController.java class AdminCouponController (line 23) | @RestController method list (line 34) | @RequiresPermissions("admin:coupon:list") method listuser (line 46) | @RequiresPermissions("admin:coupon:listuser") method validate (line 59) | private Object validate(LitemallCoupon coupon) { method create (line 67) | @RequiresPermissions("admin:coupon:create") method read (line 86) | @RequiresPermissions("admin:coupon:read") method update (line 94) | @RequiresPermissions("admin:coupon:update") method delete (line 108) | @RequiresPermissions("admin:coupon:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminDashbordController.java class AdminDashbordController (line 19) | @RestController method info (line 34) | @GetMapping("") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminFeedbackController.java class AdminFeedbackController (line 25) | @RestController method list (line 34) | @RequiresPermissions("admin:feedback:list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminFootprintController.java class AdminFootprintController (line 21) | @RestController method list (line 30) | @RequiresPermissions("admin:footprint:list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminGoodsController.java class AdminGoodsController (line 18) | @RestController method list (line 39) | @RequiresPermissions("admin:goods:list") method list2 (line 50) | @GetMapping("/catAndBrand") method update (line 61) | @RequiresPermissions("admin:goods:update") method delete (line 74) | @RequiresPermissions("admin:goods:delete") method create (line 87) | @RequiresPermissions("admin:goods:create") method detail (line 100) | @RequiresPermissions("admin:goods:read") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminGrouponController.java class AdminGrouponController (line 33) | @RestController method listRecord (line 48) | @RequiresPermissions("admin:groupon:read") method list (line 80) | @RequiresPermissions("admin:groupon:list") method validate (line 92) | private Object validate(LitemallGrouponRules grouponRules) { method update (line 113) | @RequiresPermissions("admin:groupon:update") method create (line 146) | @RequiresPermissions("admin:groupon:create") method delete (line 178) | @RequiresPermissions("admin:groupon:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminHistoryController.java class AdminHistoryController (line 20) | @RestController method list (line 28) | @RequiresPermissions("admin:history:list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminIndexController.java class AdminIndexController (line 13) | @RestController method index (line 18) | @RequestMapping("/index") method guest (line 23) | @RequiresGuest method authn (line 29) | @RequiresAuthentication method user (line 35) | @RequiresUser method admin (line 41) | @RequiresRoles("admin") method admin2 (line 47) | @RequiresRoles("admin2") method read (line 53) | @RequiresPermissions("index:permission:read") method write (line 60) | @RequiresPermissions("index:permission:write") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminIssueController.java class AdminIssueController (line 20) | @RestController method list (line 29) | @RequiresPermissions("admin:issue:list") method validate (line 41) | private Object validate(LitemallIssue issue) { method create (line 53) | @RequiresPermissions("admin:issue:create") method read (line 65) | @RequiresPermissions("admin:issue:read") method update (line 72) | @RequiresPermissions("admin:issue:update") method delete (line 87) | @RequiresPermissions("admin:issue:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminKeywordController.java class AdminKeywordController (line 20) | @RestController method list (line 29) | @RequiresPermissions("admin:keyword:list") method validate (line 41) | private Object validate(LitemallKeyword keywords) { method create (line 49) | @RequiresPermissions("admin:keyword:create") method read (line 61) | @RequiresPermissions("admin:keyword:read") method update (line 69) | @RequiresPermissions("admin:keyword:update") method delete (line 83) | @RequiresPermissions("admin:keyword:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminLogController.java class AdminLogController (line 21) | @RestController method list (line 30) | @RequiresPermissions("admin:log:list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminNoticeController.java class AdminNoticeController (line 29) | @RestController method list (line 42) | @RequiresPermissions("admin:notice:list") method validate (line 54) | private Object validate(LitemallNotice notice) { method getAdminId (line 62) | private Integer getAdminId(){ method create (line 68) | @RequiresPermissions("admin:notice:create") method read (line 91) | @RequiresPermissions("admin:notice:read") method update (line 103) | @RequiresPermissions("admin:notice:update") method delete (line 131) | @RequiresPermissions("admin:notice:delete") method batchDelete (line 142) | @RequiresPermissions("admin:notice:batch-delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminOrderController.java class AdminOrderController (line 22) | @RestController method list (line 44) | @RequiresPermissions("admin:order:list") method channel (line 63) | @GetMapping("/channel") method detail (line 74) | @RequiresPermissions("admin:order:read") method refund (line 87) | @RequiresPermissions("admin:order:refund") method ship (line 100) | @RequiresPermissions("admin:order:ship") method pay (line 107) | @RequiresPermissions("admin:order:pay") method delete (line 120) | @RequiresPermissions("admin:order:delete") method reply (line 133) | @RequiresPermissions("admin:order:reply") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminProfileController.java class AdminProfileController (line 34) | @RestController method create (line 47) | @RequiresAuthentication method getAdminId (line 74) | private Integer getAdminId(){ method nNotice (line 80) | @RequiresAuthentication method lsNotice (line 87) | @RequiresAuthentication method catNotice (line 98) | @RequiresAuthentication method bcatNotice (line 132) | @RequiresAuthentication method rmNotice (line 140) | @RequiresAuthentication method brmNotice (line 151) | @RequiresAuthentication FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminRegionController.java class AdminRegionController (line 21) | @RestController method clist (line 30) | @GetMapping("/clist") method list (line 36) | @GetMapping("/list") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminRoleController.java class AdminRoleController (line 36) | @RestController method list (line 49) | @RequiresPermissions("admin:role:list") method options (line 61) | @GetMapping("/options") method read (line 76) | @RequiresPermissions("admin:role:read") method validate (line 85) | private Object validate(LitemallRole role) { method create (line 94) | @RequiresPermissions("admin:role:create") method update (line 112) | @RequiresPermissions("admin:role:update") method delete (line 125) | @RequiresPermissions("admin:role:delete") method getSystemPermissions (line 155) | private List getSystemPermissions() { method getAssignedPermissions (line 165) | private Set getAssignedPermissions(List roleIds) { method getPermissions (line 184) | @RequiresPermissions("admin:role:permission:get") method updatePermissions (line 224) | @RequiresPermissions("admin:role:permission:update") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminStatController.java class AdminStatController (line 19) | @RestController method statUser (line 28) | @RequiresPermissions("admin:stat:user") method statOrder (line 40) | @RequiresPermissions("admin:stat:order") method statGoods (line 53) | @RequiresPermissions("admin:stat:goods") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminStorageController.java class AdminStorageController (line 23) | @RestController method list (line 34) | @RequiresPermissions("admin:storage:list") method create (line 46) | @RequiresPermissions("admin:storage:create") method read (line 56) | @RequiresPermissions("admin:storage:read") method update (line 67) | @RequiresPermissions("admin:storage:update") method delete (line 77) | @RequiresPermissions("admin:storage:delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminTopicController.java class AdminTopicController (line 28) | @RestController method list (line 39) | @RequiresPermissions("admin:topic:list") method validate (line 51) | private Object validate(LitemallTopic topic) { method create (line 67) | @RequiresPermissions("admin:topic:create") method read (line 79) | @RequiresPermissions("admin:topic:read") method update (line 97) | @RequiresPermissions("admin:topic:update") method delete (line 111) | @RequiresPermissions("admin:topic:delete") method batchDelete (line 119) | @RequiresPermissions("admin:topic:batch-delete") FILE: litemall-admin-api/src/main/java/org/linlinjava/litemall/admin/web/AdminUserController.java class AdminUserController (line 25) | @RestController method list (line 34) | @RequiresPermissions("admin:user:list") method userDetail (line 45) | @RequiresPermissions("admin:user:list") method userUpdate (line 52) | @RequiresPermissions("admin:user:list") FILE: litemall-admin-api/src/test/java/org/linlinjava/litemall/admin/AdminConfigTest.java class AdminConfigTest (line 11) | @WebAppConfiguration method test (line 18) | @Test FILE: litemall-admin-api/src/test/java/org/linlinjava/litemall/admin/BcryptTest.java class BcryptTest (line 10) | @RunWith(SpringJUnit4ClassRunner.class) method test (line 14) | @Test FILE: litemall-admin-api/src/test/java/org/linlinjava/litemall/admin/CreateShareImageTest.java class CreateShareImageTest (line 13) | @WebAppConfiguration method test (line 22) | @Test FILE: litemall-admin-api/src/test/java/org/linlinjava/litemall/admin/DbTest.java class DbTest (line 15) | @WebAppConfiguration method test (line 22) | @Test method testFileCreate (line 35) | @Test method testFileDelete (line 46) | @Test FILE: litemall-admin-api/src/test/java/org/linlinjava/litemall/admin/PermissionTest.java class PermissionTest (line 16) | @WebAppConfiguration method test (line 24) | @Test FILE: litemall-admin/src/api/ad.js function listAd (line 3) | function listAd(query) { function createAd (line 11) | function createAd(data) { function readAd (line 19) | function readAd(data) { function updateAd (line 27) | function updateAd(data) { function deleteAd (line 35) | function deleteAd(data) { FILE: litemall-admin/src/api/admin.js function listAdmin (line 3) | function listAdmin(query) { function createAdmin (line 11) | function createAdmin(data) { function readminAdmin (line 19) | function readminAdmin(data) { function updateAdmin (line 27) | function updateAdmin(data) { function deleteAdmin (line 35) | function deleteAdmin(data) { FILE: litemall-admin/src/api/aftersale.js function listAftersale (line 3) | function listAftersale(query) { function receptAftersale (line 11) | function receptAftersale(data) { function batchReceptAftersale (line 19) | function batchReceptAftersale(data) { function rejectAftersale (line 27) | function rejectAftersale(data) { function batchRejectAftersale (line 35) | function batchRejectAftersale(data) { function refundAftersale (line 43) | function refundAftersale(data) { FILE: litemall-admin/src/api/brand.js function listBrand (line 3) | function listBrand(query) { function createBrand (line 11) | function createBrand(data) { function readBrand (line 19) | function readBrand(data) { function updateBrand (line 27) | function updateBrand(data) { function deleteBrand (line 35) | function deleteBrand(data) { FILE: litemall-admin/src/api/category.js function listCategory (line 3) | function listCategory(query) { function listCatL1 (line 11) | function listCatL1() { function createCategory (line 18) | function createCategory(data) { function readCategory (line 26) | function readCategory(data) { function updateCategory (line 34) | function updateCategory(data) { function deleteCategory (line 42) | function deleteCategory(data) { FILE: litemall-admin/src/api/comment.js function listComment (line 3) | function listComment(query) { function deleteComment (line 11) | function deleteComment(data) { FILE: litemall-admin/src/api/config.js function listMall (line 3) | function listMall() { function updateMall (line 10) | function updateMall(data) { function listExpress (line 18) | function listExpress() { function updateExpress (line 25) | function updateExpress(data) { function listOrder (line 33) | function listOrder() { function updateOrder (line 40) | function updateOrder(data) { function listWx (line 48) | function listWx() { function updateWx (line 55) | function updateWx(data) { FILE: litemall-admin/src/api/coupon.js function listCoupon (line 3) | function listCoupon(query) { function createCoupon (line 11) | function createCoupon(data) { function readCoupon (line 19) | function readCoupon(id) { function updateCoupon (line 27) | function updateCoupon(data) { function deleteCoupon (line 35) | function deleteCoupon(data) { function listCouponUser (line 43) | function listCouponUser(query) { FILE: litemall-admin/src/api/dashboard.js function info (line 3) | function info(query) { FILE: litemall-admin/src/api/goods.js function listGoods (line 3) | function listGoods(query) { function deleteGoods (line 11) | function deleteGoods(data) { function publishGoods (line 19) | function publishGoods(data) { function detailGoods (line 27) | function detailGoods(id) { function editGoods (line 35) | function editGoods(data) { function listCatAndBrand (line 43) | function listCatAndBrand() { FILE: litemall-admin/src/api/groupon.js function listRecord (line 3) | function listRecord(query) { function listGroupon (line 11) | function listGroupon(query) { function deleteGroupon (line 19) | function deleteGroupon(data) { function publishGroupon (line 27) | function publishGroupon(data) { function editGroupon (line 35) | function editGroupon(data) { FILE: litemall-admin/src/api/issue.js function listIssue (line 3) | function listIssue(query) { function createIssue (line 11) | function createIssue(data) { function readIssue (line 19) | function readIssue(data) { function updateIssue (line 27) | function updateIssue(data) { function deleteIssue (line 35) | function deleteIssue(data) { FILE: litemall-admin/src/api/keyword.js function listKeyword (line 3) | function listKeyword(query) { function createKeyword (line 11) | function createKeyword(data) { function readKeyword (line 19) | function readKeyword(data) { function updateKeyword (line 27) | function updateKeyword(data) { function deleteKeyword (line 35) | function deleteKeyword(data) { FILE: litemall-admin/src/api/log.js function listLog (line 3) | function listLog(query) { FILE: litemall-admin/src/api/login.js function loginByUsername (line 3) | function loginByUsername(username, password, code) { function logout (line 16) | function logout() { function getUserInfo (line 23) | function getUserInfo(token) { function getKaptcha (line 31) | function getKaptcha() { FILE: litemall-admin/src/api/notice.js function listNotice (line 3) | function listNotice(query) { function createNotice (line 11) | function createNotice(data) { function readNotice (line 19) | function readNotice(query) { function updateNotice (line 27) | function updateNotice(data) { function deleteNotice (line 35) | function deleteNotice(data) { function batchDeleteNotice (line 43) | function batchDeleteNotice(data) { FILE: litemall-admin/src/api/order.js function listOrder (line 4) | function listOrder(query) { function detailOrder (line 15) | function detailOrder(id) { function shipOrder (line 23) | function shipOrder(data) { function refundOrder (line 31) | function refundOrder(data) { function payOrder (line 39) | function payOrder(data) { function deleteOrder (line 47) | function deleteOrder(data) { function replyComment (line 55) | function replyComment(data) { function listChannel (line 63) | function listChannel(id) { FILE: litemall-admin/src/api/profile.js function changePassword (line 3) | function changePassword(data) { function nNotice (line 11) | function nNotice() { function listNotice (line 18) | function listNotice(query) { function catNotice (line 26) | function catNotice(data) { function bcatNotice (line 34) | function bcatNotice(data) { function rmotice (line 42) | function rmotice(data) { function brmNotice (line 50) | function brmNotice(data) { FILE: litemall-admin/src/api/region.js function listRegion (line 3) | function listRegion() { function listSubRegion (line 10) | function listSubRegion(query) { FILE: litemall-admin/src/api/role.js function listRole (line 3) | function listRole(query) { function createRole (line 11) | function createRole(data) { function readRole (line 19) | function readRole(data) { function updateRole (line 27) | function updateRole(data) { function deleteRole (line 35) | function deleteRole(data) { function getPermission (line 43) | function getPermission(query) { function updatePermission (line 51) | function updatePermission(data) { function roleOptions (line 59) | function roleOptions(query) { FILE: litemall-admin/src/api/stat.js function statUser (line 3) | function statUser(query) { function statOrder (line 11) | function statOrder(query) { function statGoods (line 19) | function statGoods(query) { FILE: litemall-admin/src/api/storage.js function listStorage (line 3) | function listStorage(query) { function createStorage (line 11) | function createStorage(data) { function readStorage (line 19) | function readStorage(data) { function updateStorage (line 27) | function updateStorage(data) { function deleteStorage (line 35) | function deleteStorage(data) { FILE: litemall-admin/src/api/topic.js function listTopic (line 3) | function listTopic(query) { function createTopic (line 11) | function createTopic(data) { function readTopic (line 19) | function readTopic(query) { function updateTopic (line 27) | function updateTopic(data) { function deleteTopic (line 35) | function deleteTopic(data) { function batchDeleteTopic (line 43) | function batchDeleteTopic(data) { FILE: litemall-admin/src/api/user.js function fetchList (line 3) | function fetchList(query) { function userDetail (line 11) | function userDetail(id) { function updateUser (line 19) | function updateUser(data) { function listAddress (line 27) | function listAddress(query) { function listCollect (line 35) | function listCollect(query) { function listFeedback (line 43) | function listFeedback(query) { function listFootprint (line 51) | function listFootprint(query) { function listHistory (line 59) | function listHistory(query) { FILE: litemall-admin/src/directive/clipboard/clipboard.js method bind (line 8) | bind(el, binding) { method update (line 29) | update(el, binding) { method unbind (line 39) | unbind(el, binding) { FILE: litemall-admin/src/directive/permission/permission.js method inserted (line 5) | inserted(el, binding, vnode) { FILE: litemall-admin/src/filters/index.js function pluralize (line 10) | function pluralize(time, label) { function timeAgo (line 20) | function timeAgo(time) { function numberFormatter (line 37) | function numberFormatter(num, digits) { function toThousandFilter (line 58) | function toThousandFilter(num) { function uppercaseFirst (line 66) | function uppercaseFirst(string) { FILE: litemall-admin/src/main.js function loadMessages (line 31) | function loadMessages() { FILE: litemall-admin/src/permission.js function hasPermission (line 11) | function hasPermission(perms, permissions) { FILE: litemall-admin/src/router/index.js function resetRouter (line 619) | function resetRouter() { FILE: litemall-admin/src/store/modules/app.js method toggleSideBar (line 41) | toggleSideBar({ commit }) { method closeSideBar (line 44) | closeSideBar({ commit }, { withoutAnimation }) { method toggleDevice (line 47) | toggleDevice({ commit }, device) { method setLanguage (line 50) | setLanguage({ commit }, language) { method setSize (line 53) | setSize({ commit }, size) { FILE: litemall-admin/src/store/modules/permission.js function hasPermission (line 8) | function hasPermission(perms, route) { function filterAsyncRoutes (line 21) | function filterAsyncRoutes(routes, perms) { method GenerateRoutes (line 53) | GenerateRoutes({ commit }, data) { FILE: litemall-admin/src/store/modules/tagsView.js method addView (line 70) | addView({ dispatch }, view) { method addVisitedView (line 74) | addVisitedView({ commit }, view) { method addCachedView (line 77) | addCachedView({ commit }, view) { method delView (line 81) | delView({ dispatch, state }, view) { method delVisitedView (line 91) | delVisitedView({ commit, state }, view) { method delCachedView (line 97) | delCachedView({ commit, state }, view) { method delOthersViews (line 104) | delOthersViews({ dispatch, state }, view) { method delOthersVisitedViews (line 114) | delOthersVisitedViews({ commit, state }, view) { method delOthersCachedViews (line 120) | delOthersCachedViews({ commit, state }, view) { method delAllViews (line 127) | delAllViews({ dispatch, state }, view) { method delAllVisitedViews (line 137) | delAllVisitedViews({ commit, state }) { method delAllCachedViews (line 143) | delAllCachedViews({ commit, state }) { method updateVisitedView (line 150) | updateVisitedView({ commit }, view) { FILE: litemall-admin/src/store/modules/user.js method LoginByUsername (line 35) | LoginByUsername({ commit }, userInfo) { method GetUserInfo (line 50) | GetUserInfo({ commit, state }) { method LogOut (line 72) | LogOut({ commit, state, dispatch }) { method FedLogOut (line 93) | FedLogOut({ commit }) { method ChangeRoles (line 103) | ChangeRoles({ commit, dispatch }, role) { FILE: litemall-admin/src/utils/auth.js function getToken (line 5) | function getToken() { function setToken (line 9) | function setToken(token) { function removeToken (line 13) | function removeToken() { FILE: litemall-admin/src/utils/clipboard.js function clipboardSuccess (line 4) | function clipboardSuccess() { function clipboardError (line 12) | function clipboardError() { function handleClipboard (line 19) | function handleClipboard(text, event) { FILE: litemall-admin/src/utils/index.js function parseTime (line 5) | function parseTime(time, cFormat) { function thumbnail (line 40) | function thumbnail(src) { function toPreview (line 44) | function toPreview(item, url) { function formatTime (line 49) | function formatTime(time, option) { function getQueryObject (line 84) | function getQueryObject(url) { function getByteLen (line 104) | function getByteLen(val) { function cleanArray (line 116) | function cleanArray(actual) { function param (line 126) | function param(json) { function param2Obj (line 136) | function param2Obj(url) { function html2Text (line 151) | function html2Text(val) { function objectMerge (line 157) | function objectMerge(target, source) { function toggleClass (line 178) | function toggleClass(element, className) { method onClick (line 197) | onClick(picker) { method onClick (line 206) | onClick(picker) { method onClick (line 215) | onClick(picker) { method onClick (line 224) | onClick(picker) { function getTime (line 233) | function getTime(type) { function debounce (line 241) | function debounce(func, wait, immediate) { function deepClone (line 281) | function deepClone(source) { function uniqueArr (line 296) | function uniqueArr(arr) { function isExternal (line 300) | function isExternal(path) { FILE: litemall-admin/src/utils/openWindow.js function openWindow (line 9) | function openWindow(url, title, w, h) { FILE: litemall-admin/src/utils/permission.js function checkPermission (line 8) | function checkPermission(value) { FILE: litemall-admin/src/utils/scrollTo.js function move (line 16) | function move(amount) { function position (line 22) | function position() { function scrollTo (line 26) | function scrollTo(to, duration, callback) { FILE: litemall-admin/src/utils/validate.js function isExternal (line 9) | function isExternal(path) { function validUsername (line 17) | function validUsername(str) { function validURL (line 26) | function validURL(url) { function validLowerCase (line 35) | function validLowerCase(str) { function validUpperCase (line 44) | function validUpperCase(str) { function validAlphabets (line 53) | function validAlphabets(str) { function validEmail (line 62) | function validEmail(email) { function isString (line 71) | function isString(str) { function isArray (line 82) | function isArray(arg) { FILE: litemall-admin/src/vendor/Export2Excel.js function generateArray (line 5) | function generateArray(table) { function datenum (line 55) | function datenum(v, date1904) { function sheet_from_array_of_arrays (line 61) | function sheet_from_array_of_arrays(data, opts) { function Workbook (line 103) | function Workbook() { function s2ab (line 109) | function s2ab(s) { function export_table_to_excel (line 116) | function export_table_to_excel(id) { function export_json_to_excel (line 147) | function export_json_to_excel({ function formatJson (line 222) | function formatJson(jsonSource, jsonFillter) { function export_json_to_excel2 (line 228) | function export_json_to_excel2(th, jsonSource, jsonFillter, name) { FILE: litemall-admin/src/views/layout/components/Sidebar/FixiOSBug.js method device (line 3) | device() { method mounted (line 7) | mounted() { method fixBugIniOS (line 13) | fixBugIniOS() { FILE: litemall-admin/src/views/layout/mixin/ResizeHandler.js constant WIDTH (line 4) | const WIDTH = 1024 constant RATIO (line 5) | const RATIO = 3 method $route (line 9) | $route(route) { method beforeMount (line 15) | beforeMount() { method mounted (line 18) | mounted() { method isMobile (line 26) | isMobile() { method resizeHandler (line 30) | resizeHandler() { FILE: litemall-admin/vue.config.js function resolve (line 4) | function resolve(dir) { method chainWebpack (line 54) | chainWebpack(config) { FILE: litemall-all-war/src/main/java/org/linlinjava/litemall/Application.java class Application (line 11) | @SpringBootApplication(scanBasePackages = {"org.linlinjava.litemall"}) method main (line 17) | public static void main(String[] args) throws Exception { method configure (line 21) | @Override FILE: litemall-all/src/main/java/org/linlinjava/litemall/Application.java class Application (line 9) | @SpringBootApplication(scanBasePackages = {"org.linlinjava.litemall"}) method main (line 15) | public static void main(String[] args) throws Exception { FILE: litemall-all/src/test/java/org/linlinjava/litemall/allinone/AllinoneConfigTest.java class AllinoneConfigTest (line 11) | @WebAppConfiguration method test (line 18) | @Test FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/config/AsyncConfig.java class AsyncConfig (line 6) | @Configuration FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/config/CorsConfig.java class CorsConfig (line 9) | @Configuration method buildConfig (line 14) | private CorsConfiguration buildConfig() { method corsFilter (line 24) | @Bean FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/config/GlobalExceptionHandler.java class GlobalExceptionHandler (line 20) | @ControllerAdvice method badArgumentHandler (line 26) | @ExceptionHandler(IllegalArgumentException.class) method badArgumentHandler (line 33) | @ExceptionHandler(MethodArgumentTypeMismatchException.class) method badArgumentHandler (line 40) | @ExceptionHandler(MissingServletRequestParameterException.class) method badArgumentHandler (line 47) | @ExceptionHandler(HttpMessageNotReadableException.class) method badArgumentHandler (line 54) | @ExceptionHandler(ValidationException.class) method seriousHandler (line 69) | @ExceptionHandler(Exception.class) FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/config/JacksonConfig.java class JacksonConfig (line 23) | @Configuration method customJackson (line 26) | @Bean FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/config/ValidatorConfiguration.java class ValidatorConfiguration (line 11) | @Configuration method validator (line 13) | @Bean FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/config/WxConfig.java class WxConfig (line 14) | @Configuration method wxMaConfig (line 19) | @Bean method wxMaService (line 30) | @Bean method wxPayConfig (line 37) | @Bean method wxPayService (line 51) | @Bean FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/config/WxProperties.java class WxProperties (line 6) | @Configuration method getToken (line 26) | public String getToken() { method setToken (line 30) | public void setToken(String token) { method getAesKey (line 34) | public String getAesKey() { method setAesKey (line 38) | public void setAesKey(String aesKey) { method getNotifyUrl (line 42) | public String getNotifyUrl() { method setNotifyUrl (line 46) | public void setNotifyUrl(String notifyUrl) { method getMchKey (line 50) | public String getMchKey() { method setMchKey (line 54) | public void setMchKey(String mchKey) { method getAppId (line 58) | public String getAppId() { method setAppId (line 62) | public void setAppId(String appId) { method getAppSecret (line 66) | public String getAppSecret() { method setAppSecret (line 70) | public void setAppSecret(String appSecret) { method getMchId (line 74) | public String getMchId() { method setMchId (line 78) | public void setMchId(String mchId) { method getKeyPath (line 82) | public String getKeyPath() { method setKeyPath (line 86) | public void setKeyPath(String keyPath) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/express/ExpressService.java class ExpressService (line 22) | public class ExpressService { method getProperties (line 30) | public ExpressProperties getProperties() { method setProperties (line 34) | public void setProperties(ExpressProperties properties) { method getVendorName (line 44) | public String getVendorName(String vendorCode) { method getVendors (line 52) | public List> getVendors() { method getExpressInfo (line 63) | public ExpressInfo getExpressInfo(String expCode, String expNo) { method getOrderTracesByJson (line 86) | private String getOrderTracesByJson(String expCode, String expNo) thro... method MD5 (line 111) | private String MD5(String str, String charset) throws Exception { method encrypt (line 134) | private String encrypt(String content, String keyValue, String charset) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/express/config/ExpressAutoConfiguration.java class ExpressAutoConfiguration (line 8) | @Configuration method ExpressAutoConfiguration (line 14) | public ExpressAutoConfiguration(ExpressProperties properties) { method expressService (line 18) | @Bean FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/express/config/ExpressProperties.java class ExpressProperties (line 9) | @ConfigurationProperties(prefix = "litemall.express") method isEnable (line 16) | public boolean isEnable() { method setEnable (line 20) | public void setEnable(boolean enable) { method getVendors (line 24) | public List> getVendors() { method setVendors (line 28) | public void setVendors(List> vendors) { method getAppKey (line 32) | public String getAppKey() { method setAppKey (line 36) | public void setAppKey(String appKey) { method getAppId (line 40) | public String getAppId() { method setAppId (line 44) | public void setAppId(String appId) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/express/dao/ExpressInfo.java class ExpressInfo (line 16) | public class ExpressInfo { method getLogisticCode (line 35) | public String getLogisticCode() { method setLogisticCode (line 39) | public void setLogisticCode(String LogisticCode) { method getShipperCode (line 43) | public String getShipperCode() { method setShipperCode (line 47) | public void setShipperCode(String ShipperCode) { method getTraces (line 51) | public List getTraces() { method setTraces (line 55) | public void setTraces(List Traces) { method getState (line 59) | public String getState() { method setState (line 63) | public void setState(String State) { method getEBusinessID (line 67) | public String getEBusinessID() { method setEBusinessID (line 71) | public void setEBusinessID(String EBusinessID) { method getSuccess (line 75) | public boolean getSuccess() { method setSuccess (line 79) | public void setSuccess(boolean Success) { method getReason (line 83) | public String getReason() { method setReason (line 87) | public void setReason(String Reason) { method getShipperName (line 91) | public String getShipperName() { method setShipperName (line 95) | public void setShipperName(String shipperName) { method toString (line 99) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/express/dao/Traces.java class Traces (line 14) | public class Traces { method getAcceptStation (line 21) | public String getAcceptStation() { method setAcceptStation (line 25) | public void setAcceptStation(String AcceptStation) { method getAcceptTime (line 29) | public String getAcceptTime() { method setAcceptTime (line 33) | public void setAcceptTime(String AcceptTime) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/AliyunSmsSender.java class AliyunSmsSender (line 22) | public class AliyunSmsSender implements SmsSender { method getRegionId (line 32) | public String getRegionId() { method setRegionId (line 36) | public void setRegionId(String regionId) { method getAccessKeyId (line 40) | public String getAccessKeyId() { method setAccessKeyId (line 44) | public void setAccessKeyId(String accessKeyId) { method getAccessKeySecret (line 48) | public String getAccessKeySecret() { method setAccessKeySecret (line 52) | public void setAccessKeySecret(String accessKeySecret) { method getSign (line 56) | public String getSign() { method setSign (line 60) | public void setSign(String sign) { method send (line 64) | @Override method sendWithTemplate (line 71) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/NotifyService.java class NotifyService (line 14) | public class NotifyService { method isMailEnable (line 24) | public boolean isMailEnable() { method isSmsEnable (line 28) | public boolean isSmsEnable() { method notifySms (line 38) | @Async method notifySmsTemplate (line 53) | @Async method notifySmsTemplateSync (line 75) | public SmsResult notifySmsTemplateSync(String phoneNumber, NotifyType ... method notifyMail (line 89) | @Async method getTemplateId (line 102) | private String getTemplateId(NotifyType notifyType, List> smsTemplate) { method setWxTemplate (line 132) | public void setWxTemplate(List> wxTemplate) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/NotifyType.java type NotifyType (line 3) | public enum NotifyType { method NotifyType (line 11) | NotifyType(String type) { method getType (line 15) | public String getType() { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/SmsResult.java class SmsResult (line 6) | public class SmsResult { method isSuccessful (line 15) | public boolean isSuccessful() { method setSuccessful (line 19) | public void setSuccessful(boolean successful) { method getResult (line 23) | public Object getResult() { method setResult (line 27) | public void setResult(Object result) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/SmsSender.java type SmsSender (line 3) | public interface SmsSender { method send (line 11) | SmsResult send(String phone, String content); method sendWithTemplate (line 20) | SmsResult sendWithTemplate(String phone, String templateId, String[] p... FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/TencentSmsSender.java class TencentSmsSender (line 14) | public class TencentSmsSender implements SmsSender { method getSender (line 20) | public SmsSingleSender getSender() { method setSender (line 24) | public void setSender(SmsSingleSender sender) { method send (line 28) | @Override method sendWithTemplate (line 47) | @Override method setSign (line 66) | public void setSign(String sign) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/config/NotifyAutoConfiguration.java class NotifyAutoConfiguration (line 15) | @Configuration method NotifyAutoConfiguration (line 21) | public NotifyAutoConfiguration(NotifyProperties properties) { method notifyService (line 25) | @Bean method mailSender (line 51) | public JavaMailSender mailSender() { method tencentSmsSender (line 71) | public TencentSmsSender tencentSmsSender() { method aliyunSmsSender (line 80) | public AliyunSmsSender aliyunSmsSender() { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/notify/config/NotifyProperties.java class NotifyProperties (line 9) | @ConfigurationProperties(prefix = "litemall.notify") method getMail (line 14) | public Mail getMail() { method setMail (line 18) | public void setMail(Mail mail) { method getSms (line 22) | public Sms getSms() { method setSms (line 26) | public void setSms(Sms sms) { class Mail (line 30) | public static class Mail { method isEnable (line 38) | public boolean isEnable() { method setEnable (line 42) | public void setEnable(boolean enable) { method getHost (line 46) | public String getHost() { method setHost (line 50) | public void setHost(String host) { method getUsername (line 54) | public String getUsername() { method setUsername (line 58) | public void setUsername(String username) { method getPassword (line 62) | public String getPassword() { method setPassword (line 66) | public void setPassword(String password) { method getSendfrom (line 70) | public String getSendfrom() { method setSendfrom (line 74) | public void setSendfrom(String sendfrom) { method getSendto (line 78) | public String getSendto() { method setSendto (line 82) | public void setSendto(String sendto) { method getPort (line 86) | public Integer getPort() { method setPort (line 90) | public void setPort(Integer port) { class Sms (line 95) | public static class Sms { method isEnable (line 103) | public boolean isEnable() { method setEnable (line 107) | public void setEnable(boolean enable) { method getTemplate (line 111) | public List> getTemplate() { method setTemplate (line 115) | public void setTemplate(List> template) { method getActive (line 119) | public String getActive() { method setActive (line 123) | public void setActive(String active) { method getSign (line 127) | public String getSign() { method setSign (line 131) | public void setSign(String sign) { method getTencent (line 135) | public Tencent getTencent() { method setTencent (line 139) | public void setTencent(Tencent tencent) { method getAliyun (line 143) | public Aliyun getAliyun() { method setAliyun (line 147) | public void setAliyun(Aliyun aliyun) { class Tencent (line 151) | public static class Tencent { method getAppid (line 155) | public int getAppid() { method setAppid (line 159) | public void setAppid(int appid) { method getAppkey (line 163) | public String getAppkey() { method setAppkey (line 167) | public void setAppkey(String appkey) { class Aliyun (line 172) | public static class Aliyun { method getRegionId (line 177) | public String getRegionId() { method setRegionId (line 181) | public void setRegionId(String regionId) { method getAccessKeyId (line 185) | public String getAccessKeyId() { method setAccessKeyId (line 189) | public void setAccessKeyId(String accessKeyId) { method getAccessKeySecret (line 193) | public String getAccessKeySecret() { method setAccessKeySecret (line 197) | public void setAccessKeySecret(String accessKeySecret) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/qcode/QCodeService.java class QCodeService (line 21) | @Service method createGrouponShareImage (line 31) | public String createGrouponShareImage(String goodName, String goodPicU... method createGoodShareImage (line 64) | public String createGoodShareImage(String goodId, String goodPicUrl, S... method getKeyName (line 91) | private String getKeyName(String goodId) { method drawPicture (line 104) | private byte[] drawPicture(InputStream qrCodeImg, String goodPicUrl, S... method drawTextInImgCenter (line 149) | private void drawTextInImgCenter(BufferedImage baseImage, String textT... method drawTextInImg (line 170) | private void drawTextInImg(BufferedImage baseImage, String textToWrite... method drawImgInImg (line 182) | private void drawImgInImg(BufferedImage baseImage, BufferedImage image... FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/AliyunStorage.java class AliyunStorage (line 23) | public class AliyunStorage implements Storage { method getEndpoint (line 32) | public String getEndpoint() { method setEndpoint (line 36) | public void setEndpoint(String endpoint) { method getAccessKeyId (line 40) | public String getAccessKeyId() { method setAccessKeyId (line 44) | public void setAccessKeyId(String accessKeyId) { method getAccessKeySecret (line 48) | public String getAccessKeySecret() { method setAccessKeySecret (line 52) | public void setAccessKeySecret(String accessKeySecret) { method getBucketName (line 56) | public String getBucketName() { method setBucketName (line 60) | public void setBucketName(String bucketName) { method getOSSClient (line 69) | private OSSClient getOSSClient() { method getBaseUrl (line 73) | private String getBaseUrl() { method store (line 80) | @Override method loadAll (line 96) | @Override method load (line 101) | @Override method loadAsResource (line 106) | @Override method delete (line 122) | @Override method generateUrl (line 132) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/LocalStorage.java class LocalStorage (line 21) | public class LocalStorage implements Storage { method getStoragePath (line 31) | public String getStoragePath() { method setStoragePath (line 35) | public void setStoragePath(String storagePath) { method getAddress (line 46) | public String getAddress() { method setAddress (line 50) | public void setAddress(String address) { method store (line 54) | @Override method loadAll (line 63) | @Override method load (line 75) | @Override method loadAsResource (line 80) | @Override method delete (line 96) | @Override method generateUrl (line 106) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/QiniuStorage.java class QiniuStorage (line 19) | public class QiniuStorage implements Storage { method getEndpoint (line 31) | public String getEndpoint() { method setEndpoint (line 35) | public void setEndpoint(String endpoint) { method getAccessKey (line 39) | public String getAccessKey() { method setAccessKey (line 43) | public void setAccessKey(String accessKey) { method getSecretKey (line 47) | public String getSecretKey() { method setSecretKey (line 51) | public void setSecretKey(String secretKey) { method getBucketName (line 55) | public String getBucketName() { method setBucketName (line 59) | public void setBucketName(String bucketName) { method store (line 66) | @Override method loadAll (line 83) | @Override method load (line 88) | @Override method loadAsResource (line 93) | @Override method delete (line 107) | @Override method generateUrl (line 122) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/Storage.java type Storage (line 12) | public interface Storage { method store (line 22) | void store(InputStream inputStream, long contentLength, String content... method loadAll (line 24) | Stream loadAll(); method load (line 26) | Path load(String keyName); method loadAsResource (line 28) | Resource loadAsResource(String keyName); method delete (line 30) | void delete(String keyName); method generateUrl (line 32) | String generateUrl(String keyName); FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/StorageService.java class StorageService (line 16) | public class StorageService { method getActive (line 22) | public String getActive() { method setActive (line 26) | public void setActive(String active) { method getStorage (line 30) | public Storage getStorage() { method setStorage (line 34) | public void setStorage(Storage storage) { method store (line 46) | public LitemallStorage store(InputStream inputStream, long contentLeng... method generateKey (line 62) | private String generateKey(String originalFilename) { method loadAll (line 78) | public Stream loadAll() { method load (line 82) | public Path load(String keyName) { method loadAsResource (line 86) | public Resource loadAsResource(String keyName) { method delete (line 90) | public void delete(String keyName) { method generateUrl (line 94) | private String generateUrl(String keyName) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/TencentStorage.java class TencentStorage (line 24) | public class TencentStorage implements Storage { method getSecretId (line 35) | public String getSecretId() { method setSecretId (line 39) | public void setSecretId(String secretId) { method getSecretKey (line 43) | public String getSecretKey() { method setSecretKey (line 47) | public void setSecretKey(String secretKey) { method getRegion (line 51) | public String getRegion() { method setRegion (line 55) | public void setRegion(String region) { method getBucketName (line 59) | public String getBucketName() { method setBucketName (line 63) | public void setBucketName(String bucketName) { method getCOSClient (line 67) | private COSClient getCOSClient() { method getBaseUrl (line 79) | private String getBaseUrl() { method store (line 83) | @Override method loadAll (line 99) | @Override method load (line 104) | @Override method loadAsResource (line 109) | @Override method delete (line 123) | @Override method generateUrl (line 133) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/config/StorageAutoConfiguration.java class StorageAutoConfiguration (line 8) | @Configuration method StorageAutoConfiguration (line 14) | public StorageAutoConfiguration(StorageProperties properties) { method storageService (line 18) | @Bean method localStorage (line 38) | @Bean method aliyunStorage (line 47) | @Bean method tencentStorage (line 58) | @Bean method qiniuStorage (line 69) | @Bean FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/storage/config/StorageProperties.java class StorageProperties (line 5) | @ConfigurationProperties(prefix = "litemall.storage") method getActive (line 13) | public String getActive() { method setActive (line 17) | public void setActive(String active) { method getLocal (line 21) | public Local getLocal() { method setLocal (line 25) | public void setLocal(Local local) { method getAliyun (line 29) | public Aliyun getAliyun() { method setAliyun (line 33) | public void setAliyun(Aliyun aliyun) { method getTencent (line 37) | public Tencent getTencent() { method setTencent (line 41) | public void setTencent(Tencent tencent) { method getQiniu (line 45) | public Qiniu getQiniu() { method setQiniu (line 49) | public void setQiniu(Qiniu qiniu) { class Local (line 53) | public static class Local { method getAddress (line 57) | public String getAddress() { method setAddress (line 61) | public void setAddress(String address) { method getStoragePath (line 65) | public String getStoragePath() { method setStoragePath (line 69) | public void setStoragePath(String storagePath) { class Tencent (line 74) | public static class Tencent { method getSecretId (line 80) | public String getSecretId() { method setSecretId (line 84) | public void setSecretId(String secretId) { method getSecretKey (line 88) | public String getSecretKey() { method setSecretKey (line 92) | public void setSecretKey(String secretKey) { method getRegion (line 96) | public String getRegion() { method setRegion (line 100) | public void setRegion(String region) { method getBucketName (line 104) | public String getBucketName() { method setBucketName (line 108) | public void setBucketName(String bucketName) { class Aliyun (line 113) | public static class Aliyun { method getEndpoint (line 119) | public String getEndpoint() { method setEndpoint (line 123) | public void setEndpoint(String endpoint) { method getAccessKeyId (line 127) | public String getAccessKeyId() { method setAccessKeyId (line 131) | public void setAccessKeyId(String accessKeyId) { method getAccessKeySecret (line 135) | public String getAccessKeySecret() { method setAccessKeySecret (line 139) | public void setAccessKeySecret(String accessKeySecret) { method getBucketName (line 143) | public String getBucketName() { method setBucketName (line 147) | public void setBucketName(String bucketName) { class Qiniu (line 152) | public static class Qiniu { method getEndpoint (line 158) | public String getEndpoint() { method setEndpoint (line 162) | public void setEndpoint(String endpoint) { method getAccessKey (line 166) | public String getAccessKey() { method setAccessKey (line 170) | public void setAccessKey(String accessKey) { method getSecretKey (line 174) | public String getSecretKey() { method setSecretKey (line 178) | public void setSecretKey(String secretKey) { method getBucketName (line 182) | public String getBucketName() { method setBucketName (line 186) | public void setBucketName(String bucketName) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/system/SystemConfig.java class SystemConfig (line 10) | public class SystemConfig { method getConfig (line 37) | private static String getConfig(String keyName) { method getConfigInt (line 41) | private static Integer getConfigInt(String keyName) { method getConfigBoolean (line 45) | private static Boolean getConfigBoolean(String keyName) { method getConfigBigDec (line 49) | private static BigDecimal getConfigBigDec(String keyName) { method getNewLimit (line 53) | public static Integer getNewLimit() { method getHotLimit (line 57) | public static Integer getHotLimit() { method getBrandLimit (line 61) | public static Integer getBrandLimit() { method getTopicLimit (line 65) | public static Integer getTopicLimit() { method getCatlogListLimit (line 69) | public static Integer getCatlogListLimit() { method getCatlogMoreLimit (line 73) | public static Integer getCatlogMoreLimit() { method isAutoCreateShareImage (line 77) | public static boolean isAutoCreateShareImage() { method getFreight (line 81) | public static BigDecimal getFreight() { method getFreightLimit (line 85) | public static BigDecimal getFreightLimit() { method getOrderUnpaid (line 89) | public static Integer getOrderUnpaid() { method getOrderUnconfirm (line 93) | public static Integer getOrderUnconfirm() { method getOrderComment (line 97) | public static Integer getOrderComment() { method getMallName (line 101) | public static String getMallName() { method getMallAddress (line 105) | public static String getMallAddress() { method getMallPhone (line 109) | public static String getMallPhone() { method getMallQQ (line 113) | public static String getMallQQ() { method getMallLongitude (line 117) | public static String getMallLongitude() { method getMallLatitude (line 121) | public static String getMallLatitude() { method setConfigs (line 125) | public static void setConfigs(Map configs) { method updateConfigs (line 129) | public static void updateConfigs(Map data) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/system/SystemInistService.java class SystemInistService (line 17) | @Component method inist (line 25) | @PostConstruct method initConfigs (line 63) | private void initConfigs() { method getSystemInfo (line 80) | private Map getSystemInfo() { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/task/Task.java class Task (line 9) | public abstract class Task implements Delayed, Runnable{ method Task (line 13) | public Task(String id, long delayInMilliseconds){ method getId (line 18) | public String getId() { method getDelay (line 22) | @Override method compareTo (line 28) | @Override method equals (line 33) | @Override method hashCode (line 44) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/task/TaskService.java class TaskService (line 8) | @Component method init (line 13) | @PostConstruct method addTask (line 32) | public void addTask(Task task){ method removeTask (line 39) | public void removeTask(Task task){ FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/BeanUtil.java class BeanUtil (line 8) | @Component method setApplicationContext (line 12) | @Override method getBean (line 17) | public static Object getBean(String name) { method getBean (line 21) | public static T getBean(Class c){ FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/CharUtil.java class CharUtil (line 5) | public class CharUtil { method getRandomString (line 7) | public static String getRandomString(Integer num) { method getRandomNum (line 18) | public static String getRandomNum(Integer num) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/DateTimeUtil.java class DateTimeUtil (line 9) | public class DateTimeUtil { method getDateTimeDisplayString (line 17) | public static String getDateTimeDisplayString(LocalDateTime dateTime) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/HttpUtil.java class HttpUtil (line 19) | public class HttpUtil { method sendPost (line 30) | @SuppressWarnings("unused") FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/IpUtil.java class IpUtil (line 13) | public class IpUtil { method getIpAddr (line 17) | public static String getIpAddr(HttpServletRequest request) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/JacksonUtil.java class JacksonUtil (line 14) | public class JacksonUtil { method parseString (line 18) | public static String parseString(String body, String field) { method parseStringList (line 33) | public static List parseStringList(String body, String field) { method parseInteger (line 49) | public static Integer parseInteger(String body, String field) { method parseIntegerList (line 63) | public static List parseIntegerList(String body, String field) { method parseBoolean (line 80) | public static Boolean parseBoolean(String body, String field) { method parseShort (line 94) | public static Short parseShort(String body, String field) { method parseByte (line 110) | public static Byte parseByte(String body, String field) { method parseObject (line 126) | public static T parseObject(String body, String field, Class cl... method toNode (line 139) | public static Object toNode(String json) { method toMap (line 154) | public static Map toMap(String data) { method toJson (line 165) | public static String toJson(Object data) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/RegexUtil.java class RegexUtil (line 15) | public class RegexUtil { method RegexUtil (line 124) | private RegexUtil() { method isMobileSimple (line 138) | public static boolean isMobileSimple(final CharSequence input) { method isMobileExact (line 148) | public static boolean isMobileExact(final CharSequence input) { method isTel (line 158) | public static boolean isTel(final CharSequence input) { method isIDCard15 (line 168) | public static boolean isIDCard15(final CharSequence input) { method isIDCard18 (line 178) | public static boolean isIDCard18(final CharSequence input) { method isEmail (line 188) | public static boolean isEmail(final CharSequence input) { method isURL (line 198) | public static boolean isURL(final CharSequence input) { method isZh (line 208) | public static boolean isZh(final CharSequence input) { method isUsername (line 221) | public static boolean isUsername(final CharSequence input) { method isDate (line 231) | public static boolean isDate(final CharSequence input) { method isIP (line 241) | public static boolean isIP(final CharSequence input) { method isMatch (line 252) | public static boolean isMatch(final String regex, final CharSequence i... method getMatches (line 263) | public static List getMatches(final String regex, final CharSe... method getSplits (line 282) | public static String[] getSplits(final String input, final String rege... method getReplaceFirst (line 299) | public static String getReplaceFirst(final String input, method getReplaceAll (line 318) | public static String getReplaceAll(final String input, FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/ResponseUtil.java class ResponseUtil (line 42) | public class ResponseUtil { method ok (line 43) | public static Object ok() { method ok (line 50) | public static Object ok(Object data) { method okList (line 58) | public static Object okList(List list) { method okList (line 78) | public static Object okList(List list, List pagedList) { method fail (line 98) | public static Object fail() { method fail (line 105) | public static Object fail(int errno, String errmsg) { method fail (line 112) | public static Object fail(int errno, String errmsg, String data) { method badArgument (line 120) | public static Object badArgument() { method badArgumentValue (line 124) | public static Object badArgumentValue() { method unlogin (line 128) | public static Object unlogin() { method serious (line 132) | public static Object serious() { method unsupport (line 136) | public static Object unsupport() { method updatedDateExpired (line 140) | public static Object updatedDateExpired() { method updatedDataFailed (line 144) | public static Object updatedDataFailed() { method unauthz (line 148) | public static Object unauthz() { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/SystemInfoPrinter.java class SystemInfoPrinter (line 8) | public class SystemInfoPrinter { method printInfo (line 15) | public static void printInfo(String title, Map infos) { method setMaxSize (line 27) | private static void setMaxSize(Map infos) { method printHeader (line 41) | private static void printHeader(String title) { method printEnd (line 48) | private static void printEnd() { method getLineCopper (line 53) | private static String getLineCopper() { method printLine (line 62) | private static void printLine(String head, String line) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/bcrypt/BCrypt.java class BCrypt (line 59) | public class BCrypt { method encode_base64 (line 275) | static void encode_base64(byte d[], int len, StringBuilder rs) method char64 (line 314) | private static byte char64(char x) { method decode_base64 (line 330) | static byte[] decode_base64(String s, int maxolen) throws IllegalArgum... method streamtoword (line 378) | private static int streamtoword(byte data[], int offp[]) { method roundsForLogRounds (line 392) | static long roundsForLogRounds(int log_rounds) { method hashpw (line 407) | public static String hashpw(String password, String salt) throws Illeg... method gensalt (line 483) | public static String gensalt(int log_rounds, SecureRandom random) { method gensalt (line 509) | public static String gensalt(int log_rounds) { method gensalt (line 519) | public static String gensalt() { method checkpw (line 530) | public static boolean checkpw(String plaintext, String hashed) { method equalsNoEarlyReturn (line 534) | static boolean equalsNoEarlyReturn(String a, String b) { method encipher (line 555) | private final void encipher(int lr[], int off) { method init_key (line 581) | private void init_key() { method key (line 591) | private void key(byte key[]) { method ekskey (line 621) | private void ekskey(byte data[], byte key[]) { method crypt_raw (line 656) | private byte[] crypt_raw(byte password[], byte salt[], int log_rounds) { FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/util/bcrypt/BCryptPasswordEncoder.java class BCryptPasswordEncoder (line 32) | public class BCryptPasswordEncoder { method BCryptPasswordEncoder (line 39) | public BCryptPasswordEncoder() { method BCryptPasswordEncoder (line 46) | public BCryptPasswordEncoder(int strength) { method BCryptPasswordEncoder (line 54) | public BCryptPasswordEncoder(int strength, SecureRandom random) { method encode (line 62) | public String encode(CharSequence rawPassword) { method matches (line 76) | public boolean matches(CharSequence rawPassword, String encodedPasswor... FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/validator/OrderValidator.java class OrderValidator (line 9) | public class OrderValidator implements ConstraintValidator { method initialize (line 12) | @Override method isValid (line 20) | @Override FILE: litemall-core/src/main/java/org/linlinjava/litemall/core/validator/SortValidator.java class SortValidator (line 9) | public class SortValidator implements ConstraintValidator { method initialize (line 12) | @Override method isValid (line 20) | @Override FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/AliyunStorageTest.java class AliyunStorageTest (line 18) | @WebAppConfiguration method test (line 27) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/Application.java class Application (line 7) | @SpringBootApplication(scanBasePackages = {"org.linlinjava.litemall.db",... method main (line 11) | public static void main(String[] args) { FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/AsyncTask.java class AsyncTask (line 8) | @Service method asyncMethod (line 12) | @Async method nonasyncMethod (line 18) | public void nonasyncMethod() { FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/AsyncTest.java class AsyncTest (line 14) | @WebAppConfiguration method test (line 22) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/CoreConfigTest.java class CoreConfigTest (line 14) | @WebAppConfiguration method test (line 22) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/ExpressTest.java class ExpressTest (line 15) | @WebAppConfiguration method test (line 24) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/IntegerTest.java class IntegerTest (line 5) | public class IntegerTest { method test (line 6) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/LocalStorageTest.java class LocalStorageTest (line 19) | @WebAppConfiguration method test (line 28) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/MailTest.java class MailTest (line 29) | @WebAppConfiguration method testMail (line 37) | @Test class ContextConfiguration (line 42) | @Configuration method executor (line 45) | @Bean FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/QiniuStorageTest.java class QiniuStorageTest (line 19) | @WebAppConfiguration method test (line 28) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/SmsTest.java class SmsTest (line 31) | @WebAppConfiguration method testCaptcha (line 39) | @Test method testPaySucceed (line 47) | @Test method testShip (line 55) | @Test method testRefund (line 63) | @Test class ContextConfiguration (line 71) | @Configuration method executor (line 74) | @Bean FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/TaskTest.java class TaskTest (line 29) | @WebAppConfiguration class DemoTask (line 37) | private class DemoTask extends Task { method DemoTask (line 39) | DemoTask(String id, long delayInMilliseconds){ method run (line 42) | @Override method test (line 51) | @Test method test1 (line 72) | @Test method test2 (line 93) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/TencentStorageTest.java class TencentStorageTest (line 19) | @WebAppConfiguration method test (line 28) | @Test FILE: litemall-core/src/test/java/org/linlinjava/litemall/core/util/bcrypt/BCryptTest.java class BCryptTest (line 14) | @RunWith(PowerMockRunner.class) method testHashpwSaltIsNull (line 20) | @Test method testHashpwSaltTooShort (line 26) | @Test method testHashpwInvalidSaltVersion (line 32) | @Test method testHashpwInvalidSaltVersion2 (line 38) | @Test method testHashpwInvalidSaltRevision (line 44) | @Test method testHashpwInvalidSaltRevision2 (line 50) | @Test method testHashpwSaltTooShort2 (line 56) | @Test method testHashpwMissingSaltRounds (line 62) | @Test method testHashpwTooLittleRounds (line 68) | @Test method testHashpwTooManyRounds (line 74) | @Test method testHashpw (line 80) | @Test method testGensalt (line 91) | @PrepareForTest({BCrypt.class, SecureRandom.class}) method testGensaltTooLittleRounds (line 100) | @Test method testGensaltTooManyRounds (line 106) | @Test method testCheckpw (line 112) | @Test FILE: litemall-db/sql/litemall_table.sql type `litemall_ad` (line 25) | CREATE TABLE `litemall_ad` ( type `litemall_address` (line 50) | CREATE TABLE `litemall_address` ( type `litemall_admin` (line 77) | CREATE TABLE `litemall_admin` ( type `litemall_aftersale` (line 99) | CREATE TABLE `litemall_aftersale` ( type `litemall_brand` (line 125) | CREATE TABLE `litemall_brand` ( type `litemall_cart` (line 146) | CREATE TABLE `litemall_cart` ( type `litemall_category` (line 172) | CREATE TABLE `litemall_category` ( type `litemall_collect` (line 197) | CREATE TABLE `litemall_collect` ( type `litemall_comment` (line 218) | CREATE TABLE `litemall_comment` ( type `litemall_coupon` (line 243) | CREATE TABLE `litemall_coupon` ( type `litemall_coupon_user` (line 276) | CREATE TABLE `litemall_coupon_user` ( type `litemall_feedback` (line 299) | CREATE TABLE `litemall_feedback` ( type `litemall_footprint` (line 324) | CREATE TABLE `litemall_footprint` ( type `litemall_goods` (line 342) | CREATE TABLE `litemall_goods` ( type `litemall_goods_attribute` (line 379) | CREATE TABLE `litemall_goods_attribute` ( type `litemall_goods_product` (line 399) | CREATE TABLE `litemall_goods_product` ( type `litemall_goods_specification` (line 421) | CREATE TABLE `litemall_goods_specification` ( type `litemall_groupon` (line 442) | CREATE TABLE `litemall_groupon` ( type `litemall_groupon_rules` (line 466) | CREATE TABLE `litemall_groupon_rules` ( type `litemall_issue` (line 490) | CREATE TABLE `litemall_issue` ( type `litemall_keyword` (line 508) | CREATE TABLE `litemall_keyword` ( type `litemall_log` (line 529) | CREATE TABLE `litemall_log` ( type `litemall_notice` (line 552) | CREATE TABLE `litemall_notice` ( type `litemall_notice_admin` (line 571) | CREATE TABLE `litemall_notice_admin` ( type `litemall_order` (line 591) | CREATE TABLE `litemall_order` ( type `litemall_order_goods` (line 634) | CREATE TABLE `litemall_order_goods` ( type `litemall_permission` (line 662) | CREATE TABLE `litemall_permission` ( type `litemall_region` (line 680) | CREATE TABLE `litemall_region` ( type `litemall_role` (line 700) | CREATE TABLE `litemall_role` ( type `litemall_search_history` (line 720) | CREATE TABLE `litemall_search_history` ( type `litemall_storage` (line 739) | CREATE TABLE `litemall_storage` ( type `litemall_system` (line 761) | CREATE TABLE `litemall_system` ( type `litemall_topic` (line 779) | CREATE TABLE `litemall_topic` ( type `litemall_user` (line 804) | CREATE TABLE `litemall_user` ( FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/GoodsProductMapper.java type GoodsProductMapper (line 5) | public interface GoodsProductMapper { method addStock (line 6) | int addStock(@Param("id") Integer id, @Param("num") Short num); method reduceStock (line 7) | int reduceStock(@Param("id") Integer id, @Param("num") Short num); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallAdMapper.java type LitemallAdMapper (line 8) | public interface LitemallAdMapper { method countByExample (line 15) | long countByExample(LitemallAdExample example); method deleteByExample (line 23) | int deleteByExample(LitemallAdExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallAd record); method insertSelective (line 47) | int insertSelective(LitemallAd record); method selectOneByExample (line 55) | LitemallAd selectOneByExample(LitemallAdExample example); method selectOneByExampleSelective (line 63) | LitemallAd selectOneByExampleSelective(@Param("example") LitemallAdExa... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") LitemallAd... method selectByExample (line 79) | List selectByExample(LitemallAdExample example); method selectByPrimaryKeySelective (line 87) | LitemallAd selectByPrimaryKeySelective(@Param("id") Integer id, @Param... method selectByPrimaryKey (line 95) | LitemallAd selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallAd selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallAd record, @Para... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallAd record, @Param("exampl... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallAd record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallAd record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallAdExample example); method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallAddressMapper.java type LitemallAddressMapper (line 8) | public interface LitemallAddressMapper { method countByExample (line 15) | long countByExample(LitemallAddressExample example); method deleteByExample (line 23) | int deleteByExample(LitemallAddressExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallAddress record); method insertSelective (line 47) | int insertSelective(LitemallAddress record); method selectOneByExample (line 55) | LitemallAddress selectOneByExample(LitemallAddressExample example); method selectOneByExampleSelective (line 63) | LitemallAddress selectOneByExampleSelective(@Param("example") Litemall... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litem... method selectByExample (line 79) | List selectByExample(LitemallAddressExample example); method selectByPrimaryKeySelective (line 87) | LitemallAddress selectByPrimaryKeySelective(@Param("id") Integer id, @... method selectByPrimaryKey (line 95) | LitemallAddress selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallAddress selectByPrimaryKeyWithLogicalDelete(@Param("id") Integ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallAddress record, ... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallAddress record, @Param("e... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallAddress record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallAddress record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallAddressExample ex... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallAdminMapper.java type LitemallAdminMapper (line 8) | public interface LitemallAdminMapper { method countByExample (line 15) | long countByExample(LitemallAdminExample example); method deleteByExample (line 23) | int deleteByExample(LitemallAdminExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallAdmin record); method insertSelective (line 47) | int insertSelective(LitemallAdmin record); method selectOneByExample (line 55) | LitemallAdmin selectOneByExample(LitemallAdminExample example); method selectOneByExampleSelective (line 63) | LitemallAdmin selectOneByExampleSelective(@Param("example") LitemallAd... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litemal... method selectByExample (line 79) | List selectByExample(LitemallAdminExample example); method selectByPrimaryKeySelective (line 87) | LitemallAdmin selectByPrimaryKeySelective(@Param("id") Integer id, @Pa... method selectByPrimaryKey (line 95) | LitemallAdmin selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallAdmin selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallAdmin record, @P... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallAdmin record, @Param("exa... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallAdmin record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallAdmin record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallAdminExample exam... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallAftersaleMapper.java type LitemallAftersaleMapper (line 8) | public interface LitemallAftersaleMapper { method countByExample (line 15) | long countByExample(LitemallAftersaleExample example); method deleteByExample (line 23) | int deleteByExample(LitemallAftersaleExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallAftersale record); method insertSelective (line 47) | int insertSelective(LitemallAftersale record); method selectOneByExample (line 55) | LitemallAftersale selectOneByExample(LitemallAftersaleExample example); method selectOneByExampleSelective (line 63) | LitemallAftersale selectOneByExampleSelective(@Param("example") Litema... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Lit... method selectByExample (line 79) | List selectByExample(LitemallAftersaleExample examp... method selectByPrimaryKeySelective (line 87) | LitemallAftersale selectByPrimaryKeySelective(@Param("id") Integer id,... method selectByPrimaryKey (line 95) | LitemallAftersale selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallAftersale selectByPrimaryKeyWithLogicalDelete(@Param("id") Int... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallAftersale record... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallAftersale record, @Param(... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallAftersale record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallAftersale record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallAftersaleExample ... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallBrandMapper.java type LitemallBrandMapper (line 8) | public interface LitemallBrandMapper { method countByExample (line 15) | long countByExample(LitemallBrandExample example); method deleteByExample (line 23) | int deleteByExample(LitemallBrandExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallBrand record); method insertSelective (line 47) | int insertSelective(LitemallBrand record); method selectOneByExample (line 55) | LitemallBrand selectOneByExample(LitemallBrandExample example); method selectOneByExampleSelective (line 63) | LitemallBrand selectOneByExampleSelective(@Param("example") LitemallBr... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litemal... method selectByExample (line 79) | List selectByExample(LitemallBrandExample example); method selectByPrimaryKeySelective (line 87) | LitemallBrand selectByPrimaryKeySelective(@Param("id") Integer id, @Pa... method selectByPrimaryKey (line 95) | LitemallBrand selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallBrand selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallBrand record, @P... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallBrand record, @Param("exa... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallBrand record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallBrand record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallBrandExample exam... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCartMapper.java type LitemallCartMapper (line 8) | public interface LitemallCartMapper { method countByExample (line 15) | long countByExample(LitemallCartExample example); method deleteByExample (line 23) | int deleteByExample(LitemallCartExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallCart record); method insertSelective (line 47) | int insertSelective(LitemallCart record); method selectOneByExample (line 55) | LitemallCart selectOneByExample(LitemallCartExample example); method selectOneByExampleSelective (line 63) | LitemallCart selectOneByExampleSelective(@Param("example") LitemallCar... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litemall... method selectByExample (line 79) | List selectByExample(LitemallCartExample example); method selectByPrimaryKeySelective (line 87) | LitemallCart selectByPrimaryKeySelective(@Param("id") Integer id, @Par... method selectByPrimaryKey (line 95) | LitemallCart selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallCart selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallCart record, @Pa... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallCart record, @Param("exam... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallCart record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallCart record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallCartExample examp... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCategoryMapper.java type LitemallCategoryMapper (line 8) | public interface LitemallCategoryMapper { method countByExample (line 15) | long countByExample(LitemallCategoryExample example); method deleteByExample (line 23) | int deleteByExample(LitemallCategoryExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallCategory record); method insertSelective (line 47) | int insertSelective(LitemallCategory record); method selectOneByExample (line 55) | LitemallCategory selectOneByExample(LitemallCategoryExample example); method selectOneByExampleSelective (line 63) | LitemallCategory selectOneByExampleSelective(@Param("example") Litemal... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Lite... method selectByExample (line 79) | List selectByExample(LitemallCategoryExample example); method selectByPrimaryKeySelective (line 87) | LitemallCategory selectByPrimaryKeySelective(@Param("id") Integer id, ... method selectByPrimaryKey (line 95) | LitemallCategory selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallCategory selectByPrimaryKeyWithLogicalDelete(@Param("id") Inte... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallCategory record,... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallCategory record, @Param("... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallCategory record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallCategory record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallCategoryExample e... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCollectMapper.java type LitemallCollectMapper (line 8) | public interface LitemallCollectMapper { method countByExample (line 15) | long countByExample(LitemallCollectExample example); method deleteByExample (line 23) | int deleteByExample(LitemallCollectExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallCollect record); method insertSelective (line 47) | int insertSelective(LitemallCollect record); method selectOneByExample (line 55) | LitemallCollect selectOneByExample(LitemallCollectExample example); method selectOneByExampleSelective (line 63) | LitemallCollect selectOneByExampleSelective(@Param("example") Litemall... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litem... method selectByExample (line 79) | List selectByExample(LitemallCollectExample example); method selectByPrimaryKeySelective (line 87) | LitemallCollect selectByPrimaryKeySelective(@Param("id") Integer id, @... method selectByPrimaryKey (line 95) | LitemallCollect selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallCollect selectByPrimaryKeyWithLogicalDelete(@Param("id") Integ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallCollect record, ... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallCollect record, @Param("e... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallCollect record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallCollect record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallCollectExample ex... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCommentMapper.java type LitemallCommentMapper (line 8) | public interface LitemallCommentMapper { method countByExample (line 15) | long countByExample(LitemallCommentExample example); method deleteByExample (line 23) | int deleteByExample(LitemallCommentExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallComment record); method insertSelective (line 47) | int insertSelective(LitemallComment record); method selectOneByExample (line 55) | LitemallComment selectOneByExample(LitemallCommentExample example); method selectOneByExampleSelective (line 63) | LitemallComment selectOneByExampleSelective(@Param("example") Litemall... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litem... method selectByExample (line 79) | List selectByExample(LitemallCommentExample example); method selectByPrimaryKeySelective (line 87) | LitemallComment selectByPrimaryKeySelective(@Param("id") Integer id, @... method selectByPrimaryKey (line 95) | LitemallComment selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallComment selectByPrimaryKeyWithLogicalDelete(@Param("id") Integ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallComment record, ... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallComment record, @Param("e... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallComment record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallComment record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallCommentExample ex... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCouponMapper.java type LitemallCouponMapper (line 8) | public interface LitemallCouponMapper { method countByExample (line 15) | long countByExample(LitemallCouponExample example); method deleteByExample (line 23) | int deleteByExample(LitemallCouponExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallCoupon record); method insertSelective (line 47) | int insertSelective(LitemallCoupon record); method selectOneByExample (line 55) | LitemallCoupon selectOneByExample(LitemallCouponExample example); method selectOneByExampleSelective (line 63) | LitemallCoupon selectOneByExampleSelective(@Param("example") LitemallC... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litema... method selectByExample (line 79) | List selectByExample(LitemallCouponExample example); method selectByPrimaryKeySelective (line 87) | LitemallCoupon selectByPrimaryKeySelective(@Param("id") Integer id, @P... method selectByPrimaryKey (line 95) | LitemallCoupon selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallCoupon selectByPrimaryKeyWithLogicalDelete(@Param("id") Intege... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallCoupon record, @... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallCoupon record, @Param("ex... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallCoupon record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallCoupon record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallCouponExample exa... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCouponUserMapper.java type LitemallCouponUserMapper (line 8) | public interface LitemallCouponUserMapper { method countByExample (line 15) | long countByExample(LitemallCouponUserExample example); method deleteByExample (line 23) | int deleteByExample(LitemallCouponUserExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallCouponUser record); method insertSelective (line 47) | int insertSelective(LitemallCouponUser record); method selectOneByExample (line 55) | LitemallCouponUser selectOneByExample(LitemallCouponUserExample example); method selectOneByExampleSelective (line 63) | LitemallCouponUser selectOneByExampleSelective(@Param("example") Litem... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Li... method selectByExample (line 79) | List selectByExample(LitemallCouponUserExample exa... method selectByPrimaryKeySelective (line 87) | LitemallCouponUser selectByPrimaryKeySelective(@Param("id") Integer id... method selectByPrimaryKey (line 95) | LitemallCouponUser selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallCouponUser selectByPrimaryKeyWithLogicalDelete(@Param("id") In... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallCouponUser recor... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallCouponUser record, @Param... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallCouponUser record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallCouponUser record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallCouponUserExample... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallFeedbackMapper.java type LitemallFeedbackMapper (line 8) | public interface LitemallFeedbackMapper { method countByExample (line 15) | long countByExample(LitemallFeedbackExample example); method deleteByExample (line 23) | int deleteByExample(LitemallFeedbackExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallFeedback record); method insertSelective (line 47) | int insertSelective(LitemallFeedback record); method selectOneByExample (line 55) | LitemallFeedback selectOneByExample(LitemallFeedbackExample example); method selectOneByExampleSelective (line 63) | LitemallFeedback selectOneByExampleSelective(@Param("example") Litemal... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Lite... method selectByExample (line 79) | List selectByExample(LitemallFeedbackExample example); method selectByPrimaryKeySelective (line 87) | LitemallFeedback selectByPrimaryKeySelective(@Param("id") Integer id, ... method selectByPrimaryKey (line 95) | LitemallFeedback selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallFeedback selectByPrimaryKeyWithLogicalDelete(@Param("id") Inte... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallFeedback record,... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallFeedback record, @Param("... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallFeedback record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallFeedback record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallFeedbackExample e... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallFootprintMapper.java type LitemallFootprintMapper (line 8) | public interface LitemallFootprintMapper { method countByExample (line 15) | long countByExample(LitemallFootprintExample example); method deleteByExample (line 23) | int deleteByExample(LitemallFootprintExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallFootprint record); method insertSelective (line 47) | int insertSelective(LitemallFootprint record); method selectOneByExample (line 55) | LitemallFootprint selectOneByExample(LitemallFootprintExample example); method selectOneByExampleSelective (line 63) | LitemallFootprint selectOneByExampleSelective(@Param("example") Litema... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Lit... method selectByExample (line 79) | List selectByExample(LitemallFootprintExample examp... method selectByPrimaryKeySelective (line 87) | LitemallFootprint selectByPrimaryKeySelective(@Param("id") Integer id,... method selectByPrimaryKey (line 95) | LitemallFootprint selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallFootprint selectByPrimaryKeyWithLogicalDelete(@Param("id") Int... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallFootprint record... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallFootprint record, @Param(... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallFootprint record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallFootprint record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallFootprintExample ... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsAttributeMapper.java type LitemallGoodsAttributeMapper (line 8) | public interface LitemallGoodsAttributeMapper { method countByExample (line 15) | long countByExample(LitemallGoodsAttributeExample example); method deleteByExample (line 23) | int deleteByExample(LitemallGoodsAttributeExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallGoodsAttribute record); method insertSelective (line 47) | int insertSelective(LitemallGoodsAttribute record); method selectOneByExample (line 55) | LitemallGoodsAttribute selectOneByExample(LitemallGoodsAttributeExampl... method selectOneByExampleSelective (line 63) | LitemallGoodsAttribute selectOneByExampleSelective(@Param("example") L... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example"... method selectByExample (line 79) | List selectByExample(LitemallGoodsAttributeExa... method selectByPrimaryKeySelective (line 87) | LitemallGoodsAttribute selectByPrimaryKeySelective(@Param("id") Intege... method selectByPrimaryKey (line 95) | LitemallGoodsAttribute selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallGoodsAttribute selectByPrimaryKeyWithLogicalDelete(@Param("id"... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallGoodsAttribute r... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallGoodsAttribute record, @P... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallGoodsAttribute record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallGoodsAttribute record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallGoodsAttributeExa... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsMapper.java type LitemallGoodsMapper (line 8) | public interface LitemallGoodsMapper { method countByExample (line 15) | long countByExample(LitemallGoodsExample example); method deleteByExample (line 23) | int deleteByExample(LitemallGoodsExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallGoods record); method insertSelective (line 47) | int insertSelective(LitemallGoods record); method selectOneByExample (line 55) | LitemallGoods selectOneByExample(LitemallGoodsExample example); method selectOneByExampleSelective (line 63) | LitemallGoods selectOneByExampleSelective(@Param("example") LitemallGo... method selectOneByExampleWithBLOBs (line 71) | LitemallGoods selectOneByExampleWithBLOBs(LitemallGoodsExample example); method selectByExampleSelective (line 79) | List selectByExampleSelective(@Param("example") Litemal... method selectByExampleWithBLOBs (line 87) | List selectByExampleWithBLOBs(LitemallGoodsExample exam... method selectByExample (line 95) | List selectByExample(LitemallGoodsExample example); method selectByPrimaryKeySelective (line 103) | LitemallGoods selectByPrimaryKeySelective(@Param("id") Integer id, @Pa... method selectByPrimaryKey (line 111) | LitemallGoods selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 119) | LitemallGoods selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer... method updateByExampleSelective (line 127) | int updateByExampleSelective(@Param("record") LitemallGoods record, @P... method updateByExampleWithBLOBs (line 135) | int updateByExampleWithBLOBs(@Param("record") LitemallGoods record, @P... method updateByExample (line 143) | int updateByExample(@Param("record") LitemallGoods record, @Param("exa... method updateByPrimaryKeySelective (line 151) | int updateByPrimaryKeySelective(LitemallGoods record); method updateByPrimaryKeyWithBLOBs (line 159) | int updateByPrimaryKeyWithBLOBs(LitemallGoods record); method updateByPrimaryKey (line 167) | int updateByPrimaryKey(LitemallGoods record); method logicalDeleteByExample (line 175) | int logicalDeleteByExample(@Param("example") LitemallGoodsExample exam... method logicalDeleteByPrimaryKey (line 183) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsProductMapper.java type LitemallGoodsProductMapper (line 8) | public interface LitemallGoodsProductMapper { method countByExample (line 15) | long countByExample(LitemallGoodsProductExample example); method deleteByExample (line 23) | int deleteByExample(LitemallGoodsProductExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallGoodsProduct record); method insertSelective (line 47) | int insertSelective(LitemallGoodsProduct record); method selectOneByExample (line 55) | LitemallGoodsProduct selectOneByExample(LitemallGoodsProductExample ex... method selectOneByExampleSelective (line 63) | LitemallGoodsProduct selectOneByExampleSelective(@Param("example") Lit... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") ... method selectByExample (line 79) | List selectByExample(LitemallGoodsProductExample... method selectByPrimaryKeySelective (line 87) | LitemallGoodsProduct selectByPrimaryKeySelective(@Param("id") Integer ... method selectByPrimaryKey (line 95) | LitemallGoodsProduct selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallGoodsProduct selectByPrimaryKeyWithLogicalDelete(@Param("id") ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallGoodsProduct rec... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallGoodsProduct record, @Par... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallGoodsProduct record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallGoodsProduct record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallGoodsProductExamp... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsSpecificationMapper.java type LitemallGoodsSpecificationMapper (line 8) | public interface LitemallGoodsSpecificationMapper { method countByExample (line 15) | long countByExample(LitemallGoodsSpecificationExample example); method deleteByExample (line 23) | int deleteByExample(LitemallGoodsSpecificationExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallGoodsSpecification record); method insertSelective (line 47) | int insertSelective(LitemallGoodsSpecification record); method selectOneByExample (line 55) | LitemallGoodsSpecification selectOneByExample(LitemallGoodsSpecificati... method selectOneByExampleSelective (line 63) | LitemallGoodsSpecification selectOneByExampleSelective(@Param("example... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("exam... method selectByExample (line 79) | List selectByExample(LitemallGoodsSpecific... method selectByPrimaryKeySelective (line 87) | LitemallGoodsSpecification selectByPrimaryKeySelective(@Param("id") In... method selectByPrimaryKey (line 95) | LitemallGoodsSpecification selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallGoodsSpecification selectByPrimaryKeyWithLogicalDelete(@Param(... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallGoodsSpecificati... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallGoodsSpecification record... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallGoodsSpecification record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallGoodsSpecification record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallGoodsSpecificatio... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGrouponMapper.java type LitemallGrouponMapper (line 8) | public interface LitemallGrouponMapper { method countByExample (line 15) | long countByExample(LitemallGrouponExample example); method deleteByExample (line 23) | int deleteByExample(LitemallGrouponExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallGroupon record); method insertSelective (line 47) | int insertSelective(LitemallGroupon record); method selectOneByExample (line 55) | LitemallGroupon selectOneByExample(LitemallGrouponExample example); method selectOneByExampleSelective (line 63) | LitemallGroupon selectOneByExampleSelective(@Param("example") Litemall... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litem... method selectByExample (line 79) | List selectByExample(LitemallGrouponExample example); method selectByPrimaryKeySelective (line 87) | LitemallGroupon selectByPrimaryKeySelective(@Param("id") Integer id, @... method selectByPrimaryKey (line 95) | LitemallGroupon selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallGroupon selectByPrimaryKeyWithLogicalDelete(@Param("id") Integ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallGroupon record, ... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallGroupon record, @Param("e... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallGroupon record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallGroupon record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallGrouponExample ex... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGrouponRulesMapper.java type LitemallGrouponRulesMapper (line 8) | public interface LitemallGrouponRulesMapper { method countByExample (line 15) | long countByExample(LitemallGrouponRulesExample example); method deleteByExample (line 23) | int deleteByExample(LitemallGrouponRulesExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallGrouponRules record); method insertSelective (line 47) | int insertSelective(LitemallGrouponRules record); method selectOneByExample (line 55) | LitemallGrouponRules selectOneByExample(LitemallGrouponRulesExample ex... method selectOneByExampleSelective (line 63) | LitemallGrouponRules selectOneByExampleSelective(@Param("example") Lit... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") ... method selectByExample (line 79) | List selectByExample(LitemallGrouponRulesExample... method selectByPrimaryKeySelective (line 87) | LitemallGrouponRules selectByPrimaryKeySelective(@Param("id") Integer ... method selectByPrimaryKey (line 95) | LitemallGrouponRules selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallGrouponRules selectByPrimaryKeyWithLogicalDelete(@Param("id") ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallGrouponRules rec... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallGrouponRules record, @Par... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallGrouponRules record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallGrouponRules record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallGrouponRulesExamp... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallIssueMapper.java type LitemallIssueMapper (line 8) | public interface LitemallIssueMapper { method countByExample (line 15) | long countByExample(LitemallIssueExample example); method deleteByExample (line 23) | int deleteByExample(LitemallIssueExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallIssue record); method insertSelective (line 47) | int insertSelective(LitemallIssue record); method selectOneByExample (line 55) | LitemallIssue selectOneByExample(LitemallIssueExample example); method selectOneByExampleSelective (line 63) | LitemallIssue selectOneByExampleSelective(@Param("example") LitemallIs... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litemal... method selectByExample (line 79) | List selectByExample(LitemallIssueExample example); method selectByPrimaryKeySelective (line 87) | LitemallIssue selectByPrimaryKeySelective(@Param("id") Integer id, @Pa... method selectByPrimaryKey (line 95) | LitemallIssue selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallIssue selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallIssue record, @P... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallIssue record, @Param("exa... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallIssue record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallIssue record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallIssueExample exam... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallKeywordMapper.java type LitemallKeywordMapper (line 8) | public interface LitemallKeywordMapper { method countByExample (line 15) | long countByExample(LitemallKeywordExample example); method deleteByExample (line 23) | int deleteByExample(LitemallKeywordExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallKeyword record); method insertSelective (line 47) | int insertSelective(LitemallKeyword record); method selectOneByExample (line 55) | LitemallKeyword selectOneByExample(LitemallKeywordExample example); method selectOneByExampleSelective (line 63) | LitemallKeyword selectOneByExampleSelective(@Param("example") Litemall... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litem... method selectByExample (line 79) | List selectByExample(LitemallKeywordExample example); method selectByPrimaryKeySelective (line 87) | LitemallKeyword selectByPrimaryKeySelective(@Param("id") Integer id, @... method selectByPrimaryKey (line 95) | LitemallKeyword selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallKeyword selectByPrimaryKeyWithLogicalDelete(@Param("id") Integ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallKeyword record, ... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallKeyword record, @Param("e... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallKeyword record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallKeyword record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallKeywordExample ex... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallLogMapper.java type LitemallLogMapper (line 8) | public interface LitemallLogMapper { method countByExample (line 15) | long countByExample(LitemallLogExample example); method deleteByExample (line 23) | int deleteByExample(LitemallLogExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallLog record); method insertSelective (line 47) | int insertSelective(LitemallLog record); method selectOneByExample (line 55) | LitemallLog selectOneByExample(LitemallLogExample example); method selectOneByExampleSelective (line 63) | LitemallLog selectOneByExampleSelective(@Param("example") LitemallLogE... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") LitemallL... method selectByExample (line 79) | List selectByExample(LitemallLogExample example); method selectByPrimaryKeySelective (line 87) | LitemallLog selectByPrimaryKeySelective(@Param("id") Integer id, @Para... method selectByPrimaryKey (line 95) | LitemallLog selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallLog selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer i... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallLog record, @Par... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallLog record, @Param("examp... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallLog record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallLog record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallLogExample example); method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallNoticeAdminMapper.java type LitemallNoticeAdminMapper (line 8) | public interface LitemallNoticeAdminMapper { method countByExample (line 15) | long countByExample(LitemallNoticeAdminExample example); method deleteByExample (line 23) | int deleteByExample(LitemallNoticeAdminExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallNoticeAdmin record); method insertSelective (line 47) | int insertSelective(LitemallNoticeAdmin record); method selectOneByExample (line 55) | LitemallNoticeAdmin selectOneByExample(LitemallNoticeAdminExample exam... method selectOneByExampleSelective (line 63) | LitemallNoticeAdmin selectOneByExampleSelective(@Param("example") Lite... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") L... method selectByExample (line 79) | List selectByExample(LitemallNoticeAdminExample e... method selectByPrimaryKeySelective (line 87) | LitemallNoticeAdmin selectByPrimaryKeySelective(@Param("id") Integer i... method selectByPrimaryKey (line 95) | LitemallNoticeAdmin selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallNoticeAdmin selectByPrimaryKeyWithLogicalDelete(@Param("id") I... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallNoticeAdmin reco... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallNoticeAdmin record, @Para... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallNoticeAdmin record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallNoticeAdmin record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallNoticeAdminExampl... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallNoticeMapper.java type LitemallNoticeMapper (line 8) | public interface LitemallNoticeMapper { method countByExample (line 15) | long countByExample(LitemallNoticeExample example); method deleteByExample (line 23) | int deleteByExample(LitemallNoticeExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallNotice record); method insertSelective (line 47) | int insertSelective(LitemallNotice record); method selectOneByExample (line 55) | LitemallNotice selectOneByExample(LitemallNoticeExample example); method selectOneByExampleSelective (line 63) | LitemallNotice selectOneByExampleSelective(@Param("example") LitemallN... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litema... method selectByExample (line 79) | List selectByExample(LitemallNoticeExample example); method selectByPrimaryKeySelective (line 87) | LitemallNotice selectByPrimaryKeySelective(@Param("id") Integer id, @P... method selectByPrimaryKey (line 95) | LitemallNotice selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallNotice selectByPrimaryKeyWithLogicalDelete(@Param("id") Intege... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallNotice record, @... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallNotice record, @Param("ex... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallNotice record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallNotice record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallNoticeExample exa... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallOrderGoodsMapper.java type LitemallOrderGoodsMapper (line 8) | public interface LitemallOrderGoodsMapper { method countByExample (line 15) | long countByExample(LitemallOrderGoodsExample example); method deleteByExample (line 23) | int deleteByExample(LitemallOrderGoodsExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallOrderGoods record); method insertSelective (line 47) | int insertSelective(LitemallOrderGoods record); method selectOneByExample (line 55) | LitemallOrderGoods selectOneByExample(LitemallOrderGoodsExample example); method selectOneByExampleSelective (line 63) | LitemallOrderGoods selectOneByExampleSelective(@Param("example") Litem... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Li... method selectByExample (line 79) | List selectByExample(LitemallOrderGoodsExample exa... method selectByPrimaryKeySelective (line 87) | LitemallOrderGoods selectByPrimaryKeySelective(@Param("id") Integer id... method selectByPrimaryKey (line 95) | LitemallOrderGoods selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallOrderGoods selectByPrimaryKeyWithLogicalDelete(@Param("id") In... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallOrderGoods recor... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallOrderGoods record, @Param... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallOrderGoods record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallOrderGoods record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallOrderGoodsExample... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallOrderMapper.java type LitemallOrderMapper (line 8) | public interface LitemallOrderMapper { method countByExample (line 15) | long countByExample(LitemallOrderExample example); method deleteByExample (line 23) | int deleteByExample(LitemallOrderExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallOrder record); method insertSelective (line 47) | int insertSelective(LitemallOrder record); method selectOneByExample (line 55) | LitemallOrder selectOneByExample(LitemallOrderExample example); method selectOneByExampleSelective (line 63) | LitemallOrder selectOneByExampleSelective(@Param("example") LitemallOr... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litemal... method selectByExample (line 79) | List selectByExample(LitemallOrderExample example); method selectByPrimaryKeySelective (line 87) | LitemallOrder selectByPrimaryKeySelective(@Param("id") Integer id, @Pa... method selectByPrimaryKey (line 95) | LitemallOrder selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallOrder selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallOrder record, @P... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallOrder record, @Param("exa... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallOrder record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallOrder record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallOrderExample exam... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallPermissionMapper.java type LitemallPermissionMapper (line 8) | public interface LitemallPermissionMapper { method countByExample (line 15) | long countByExample(LitemallPermissionExample example); method deleteByExample (line 23) | int deleteByExample(LitemallPermissionExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallPermission record); method insertSelective (line 47) | int insertSelective(LitemallPermission record); method selectOneByExample (line 55) | LitemallPermission selectOneByExample(LitemallPermissionExample example); method selectOneByExampleSelective (line 63) | LitemallPermission selectOneByExampleSelective(@Param("example") Litem... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Li... method selectByExample (line 79) | List selectByExample(LitemallPermissionExample exa... method selectByPrimaryKeySelective (line 87) | LitemallPermission selectByPrimaryKeySelective(@Param("id") Integer id... method selectByPrimaryKey (line 95) | LitemallPermission selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallPermission selectByPrimaryKeyWithLogicalDelete(@Param("id") In... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallPermission recor... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallPermission record, @Param... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallPermission record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallPermission record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallPermissionExample... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallRegionMapper.java type LitemallRegionMapper (line 8) | public interface LitemallRegionMapper { method countByExample (line 15) | long countByExample(LitemallRegionExample example); method deleteByExample (line 23) | int deleteByExample(LitemallRegionExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallRegion record); method insertSelective (line 47) | int insertSelective(LitemallRegion record); method selectOneByExample (line 55) | LitemallRegion selectOneByExample(LitemallRegionExample example); method selectOneByExampleSelective (line 63) | LitemallRegion selectOneByExampleSelective(@Param("example") LitemallR... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litema... method selectByExample (line 79) | List selectByExample(LitemallRegionExample example); method selectByPrimaryKeySelective (line 87) | LitemallRegion selectByPrimaryKeySelective(@Param("id") Integer id, @P... method selectByPrimaryKey (line 95) | LitemallRegion selectByPrimaryKey(Integer id); method updateByExampleSelective (line 103) | int updateByExampleSelective(@Param("record") LitemallRegion record, @... method updateByExample (line 111) | int updateByExample(@Param("record") LitemallRegion record, @Param("ex... method updateByPrimaryKeySelective (line 119) | int updateByPrimaryKeySelective(LitemallRegion record); method updateByPrimaryKey (line 127) | int updateByPrimaryKey(LitemallRegion record); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallRoleMapper.java type LitemallRoleMapper (line 8) | public interface LitemallRoleMapper { method countByExample (line 15) | long countByExample(LitemallRoleExample example); method deleteByExample (line 23) | int deleteByExample(LitemallRoleExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallRole record); method insertSelective (line 47) | int insertSelective(LitemallRole record); method selectOneByExample (line 55) | LitemallRole selectOneByExample(LitemallRoleExample example); method selectOneByExampleSelective (line 63) | LitemallRole selectOneByExampleSelective(@Param("example") LitemallRol... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litemall... method selectByExample (line 79) | List selectByExample(LitemallRoleExample example); method selectByPrimaryKeySelective (line 87) | LitemallRole selectByPrimaryKeySelective(@Param("id") Integer id, @Par... method selectByPrimaryKey (line 95) | LitemallRole selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallRole selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallRole record, @Pa... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallRole record, @Param("exam... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallRole record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallRole record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallRoleExample examp... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallSearchHistoryMapper.java type LitemallSearchHistoryMapper (line 8) | public interface LitemallSearchHistoryMapper { method countByExample (line 15) | long countByExample(LitemallSearchHistoryExample example); method deleteByExample (line 23) | int deleteByExample(LitemallSearchHistoryExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallSearchHistory record); method insertSelective (line 47) | int insertSelective(LitemallSearchHistory record); method selectOneByExample (line 55) | LitemallSearchHistory selectOneByExample(LitemallSearchHistoryExample ... method selectOneByExampleSelective (line 63) | LitemallSearchHistory selectOneByExampleSelective(@Param("example") Li... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example")... method selectByExample (line 79) | List selectByExample(LitemallSearchHistoryExamp... method selectByPrimaryKeySelective (line 87) | LitemallSearchHistory selectByPrimaryKeySelective(@Param("id") Integer... method selectByPrimaryKey (line 95) | LitemallSearchHistory selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallSearchHistory selectByPrimaryKeyWithLogicalDelete(@Param("id")... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallSearchHistory re... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallSearchHistory record, @Pa... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallSearchHistory record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallSearchHistory record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallSearchHistoryExam... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallStorageMapper.java type LitemallStorageMapper (line 8) | public interface LitemallStorageMapper { method countByExample (line 15) | long countByExample(LitemallStorageExample example); method deleteByExample (line 23) | int deleteByExample(LitemallStorageExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallStorage record); method insertSelective (line 47) | int insertSelective(LitemallStorage record); method selectOneByExample (line 55) | LitemallStorage selectOneByExample(LitemallStorageExample example); method selectOneByExampleSelective (line 63) | LitemallStorage selectOneByExampleSelective(@Param("example") Litemall... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litem... method selectByExample (line 79) | List selectByExample(LitemallStorageExample example); method selectByPrimaryKeySelective (line 87) | LitemallStorage selectByPrimaryKeySelective(@Param("id") Integer id, @... method selectByPrimaryKey (line 95) | LitemallStorage selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallStorage selectByPrimaryKeyWithLogicalDelete(@Param("id") Integ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallStorage record, ... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallStorage record, @Param("e... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallStorage record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallStorage record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallStorageExample ex... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallSystemMapper.java type LitemallSystemMapper (line 8) | public interface LitemallSystemMapper { method countByExample (line 15) | long countByExample(LitemallSystemExample example); method deleteByExample (line 23) | int deleteByExample(LitemallSystemExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallSystem record); method insertSelective (line 47) | int insertSelective(LitemallSystem record); method selectOneByExample (line 55) | LitemallSystem selectOneByExample(LitemallSystemExample example); method selectOneByExampleSelective (line 63) | LitemallSystem selectOneByExampleSelective(@Param("example") LitemallS... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litema... method selectByExample (line 79) | List selectByExample(LitemallSystemExample example); method selectByPrimaryKeySelective (line 87) | LitemallSystem selectByPrimaryKeySelective(@Param("id") Integer id, @P... method selectByPrimaryKey (line 95) | LitemallSystem selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallSystem selectByPrimaryKeyWithLogicalDelete(@Param("id") Intege... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallSystem record, @... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallSystem record, @Param("ex... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallSystem record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallSystem record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallSystemExample exa... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallTopicMapper.java type LitemallTopicMapper (line 8) | public interface LitemallTopicMapper { method countByExample (line 15) | long countByExample(LitemallTopicExample example); method deleteByExample (line 23) | int deleteByExample(LitemallTopicExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallTopic record); method insertSelective (line 47) | int insertSelective(LitemallTopic record); method selectOneByExample (line 55) | LitemallTopic selectOneByExample(LitemallTopicExample example); method selectOneByExampleSelective (line 63) | LitemallTopic selectOneByExampleSelective(@Param("example") LitemallTo... method selectOneByExampleWithBLOBs (line 71) | LitemallTopic selectOneByExampleWithBLOBs(LitemallTopicExample example); method selectByExampleSelective (line 79) | List selectByExampleSelective(@Param("example") Litemal... method selectByExampleWithBLOBs (line 87) | List selectByExampleWithBLOBs(LitemallTopicExample exam... method selectByExample (line 95) | List selectByExample(LitemallTopicExample example); method selectByPrimaryKeySelective (line 103) | LitemallTopic selectByPrimaryKeySelective(@Param("id") Integer id, @Pa... method selectByPrimaryKey (line 111) | LitemallTopic selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 119) | LitemallTopic selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer... method updateByExampleSelective (line 127) | int updateByExampleSelective(@Param("record") LitemallTopic record, @P... method updateByExampleWithBLOBs (line 135) | int updateByExampleWithBLOBs(@Param("record") LitemallTopic record, @P... method updateByExample (line 143) | int updateByExample(@Param("record") LitemallTopic record, @Param("exa... method updateByPrimaryKeySelective (line 151) | int updateByPrimaryKeySelective(LitemallTopic record); method updateByPrimaryKeyWithBLOBs (line 159) | int updateByPrimaryKeyWithBLOBs(LitemallTopic record); method updateByPrimaryKey (line 167) | int updateByPrimaryKey(LitemallTopic record); method logicalDeleteByExample (line 175) | int logicalDeleteByExample(@Param("example") LitemallTopicExample exam... method logicalDeleteByPrimaryKey (line 183) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallUserMapper.java type LitemallUserMapper (line 8) | public interface LitemallUserMapper { method countByExample (line 15) | long countByExample(LitemallUserExample example); method deleteByExample (line 23) | int deleteByExample(LitemallUserExample example); method deleteByPrimaryKey (line 31) | int deleteByPrimaryKey(Integer id); method insert (line 39) | int insert(LitemallUser record); method insertSelective (line 47) | int insertSelective(LitemallUser record); method selectOneByExample (line 55) | LitemallUser selectOneByExample(LitemallUserExample example); method selectOneByExampleSelective (line 63) | LitemallUser selectOneByExampleSelective(@Param("example") LitemallUse... method selectByExampleSelective (line 71) | List selectByExampleSelective(@Param("example") Litemall... method selectByExample (line 79) | List selectByExample(LitemallUserExample example); method selectByPrimaryKeySelective (line 87) | LitemallUser selectByPrimaryKeySelective(@Param("id") Integer id, @Par... method selectByPrimaryKey (line 95) | LitemallUser selectByPrimaryKey(Integer id); method selectByPrimaryKeyWithLogicalDelete (line 103) | LitemallUser selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer ... method updateByExampleSelective (line 111) | int updateByExampleSelective(@Param("record") LitemallUser record, @Pa... method updateByExample (line 119) | int updateByExample(@Param("record") LitemallUser record, @Param("exam... method updateByPrimaryKeySelective (line 127) | int updateByPrimaryKeySelective(LitemallUser record); method updateByPrimaryKey (line 135) | int updateByPrimaryKey(LitemallUser record); method logicalDeleteByExample (line 143) | int logicalDeleteByExample(@Param("example") LitemallUserExample examp... method logicalDeleteByPrimaryKey (line 151) | int logicalDeleteByPrimaryKey(Integer id); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/OrderMapper.java type OrderMapper (line 11) | public interface OrderMapper { method updateWithOptimisticLocker (line 12) | int updateWithOptimisticLocker(@Param("lastUpdateTime") LocalDateTime ... method getOrderIds (line 13) | List getOrderIds(@Param("query") String query, @Param("orderByCla... method getOrderList (line 14) | List getOrderList(@Param("query") String query, @Param("order... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/dao/StatMapper.java type StatMapper (line 6) | public interface StatMapper { method statUser (line 7) | List statUser(); method statOrder (line 9) | List statOrder(); method statGoods (line 11) | List statGoods(); FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAd.java class LitemallAd (line 7) | public class LitemallAd { method getId (line 140) | public Integer getId() { method setId (line 152) | public void setId(Integer id) { method getName (line 164) | public String getName() { method setName (line 176) | public void setName(String name) { method getLink (line 188) | public String getLink() { method setLink (line 200) | public void setLink(String link) { method getUrl (line 212) | public String getUrl() { method setUrl (line 224) | public void setUrl(String url) { method getPosition (line 236) | public Byte getPosition() { method setPosition (line 248) | public void setPosition(Byte position) { method getContent (line 260) | public String getContent() { method setContent (line 272) | public void setContent(String content) { method getStartTime (line 284) | public LocalDateTime getStartTime() { method setStartTime (line 296) | public void setStartTime(LocalDateTime startTime) { method getEndTime (line 308) | public LocalDateTime getEndTime() { method setEndTime (line 320) | public void setEndTime(LocalDateTime endTime) { method getEnabled (line 332) | public Boolean getEnabled() { method setEnabled (line 344) | public void setEnabled(Boolean enabled) { method getAddTime (line 356) | public LocalDateTime getAddTime() { method setAddTime (line 368) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 380) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 392) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 402) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 414) | public Boolean getDeleted() { method setDeleted (line 426) | public void setDeleted(Boolean deleted) { method toString (line 436) | @Override method equals (line 466) | @Override method hashCode (line 498) | @Override type Deleted (line 523) | public enum Deleted { method Deleted (line 549) | Deleted(Boolean value, String name) { method getValue (line 560) | public Boolean getValue() { method value (line 570) | public Boolean value() { method getName (line 580) | public String getName() { type Column (line 591) | public enum Column { method value (line 659) | public String value() { method getValue (line 669) | public String getValue() { method getJavaProperty (line 679) | public String getJavaProperty() { method getJdbcType (line 689) | public String getJdbcType() { method Column (line 699) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 712) | public String desc() { method asc (line 722) | public String asc() { method excludes (line 732) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 746) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 760) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAdExample.java class LitemallAdExample (line 7) | public class LitemallAdExample { method LitemallAdExample (line 38) | public LitemallAdExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallAdExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallAdExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallAdExample when(boolean condition, IExampleWhen then) { method when (line 210) | public LitemallAdExample when(boolean condition, IExampleWhen then, IE... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallAd.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallAd.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallAd.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallAd.Column co... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallAd.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallAd.Column colum... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 392) | public Criteria andNameIsNull() { method andNameIsNotNull (line 397) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 402) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 413) | public Criteria andNameEqualToColumn(LitemallAd.Column column) { method andNameNotEqualTo (line 418) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 429) | public Criteria andNameNotEqualToColumn(LitemallAd.Column column) { method andNameGreaterThan (line 434) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 445) | public Criteria andNameGreaterThanColumn(LitemallAd.Column column) { method andNameGreaterThanOrEqualTo (line 450) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 461) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallAd.Column ... method andNameLessThan (line 466) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 477) | public Criteria andNameLessThanColumn(LitemallAd.Column column) { method andNameLessThanOrEqualTo (line 482) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 493) | public Criteria andNameLessThanOrEqualToColumn(LitemallAd.Column col... method andNameLike (line 498) | public Criteria andNameLike(String value) { method andNameNotLike (line 503) | public Criteria andNameNotLike(String value) { method andNameIn (line 508) | public Criteria andNameIn(List values) { method andNameNotIn (line 513) | public Criteria andNameNotIn(List values) { method andNameBetween (line 518) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 523) | public Criteria andNameNotBetween(String value1, String value2) { method andLinkIsNull (line 528) | public Criteria andLinkIsNull() { method andLinkIsNotNull (line 533) | public Criteria andLinkIsNotNull() { method andLinkEqualTo (line 538) | public Criteria andLinkEqualTo(String value) { method andLinkEqualToColumn (line 549) | public Criteria andLinkEqualToColumn(LitemallAd.Column column) { method andLinkNotEqualTo (line 554) | public Criteria andLinkNotEqualTo(String value) { method andLinkNotEqualToColumn (line 565) | public Criteria andLinkNotEqualToColumn(LitemallAd.Column column) { method andLinkGreaterThan (line 570) | public Criteria andLinkGreaterThan(String value) { method andLinkGreaterThanColumn (line 581) | public Criteria andLinkGreaterThanColumn(LitemallAd.Column column) { method andLinkGreaterThanOrEqualTo (line 586) | public Criteria andLinkGreaterThanOrEqualTo(String value) { method andLinkGreaterThanOrEqualToColumn (line 597) | public Criteria andLinkGreaterThanOrEqualToColumn(LitemallAd.Column ... method andLinkLessThan (line 602) | public Criteria andLinkLessThan(String value) { method andLinkLessThanColumn (line 613) | public Criteria andLinkLessThanColumn(LitemallAd.Column column) { method andLinkLessThanOrEqualTo (line 618) | public Criteria andLinkLessThanOrEqualTo(String value) { method andLinkLessThanOrEqualToColumn (line 629) | public Criteria andLinkLessThanOrEqualToColumn(LitemallAd.Column col... method andLinkLike (line 634) | public Criteria andLinkLike(String value) { method andLinkNotLike (line 639) | public Criteria andLinkNotLike(String value) { method andLinkIn (line 644) | public Criteria andLinkIn(List values) { method andLinkNotIn (line 649) | public Criteria andLinkNotIn(List values) { method andLinkBetween (line 654) | public Criteria andLinkBetween(String value1, String value2) { method andLinkNotBetween (line 659) | public Criteria andLinkNotBetween(String value1, String value2) { method andUrlIsNull (line 664) | public Criteria andUrlIsNull() { method andUrlIsNotNull (line 669) | public Criteria andUrlIsNotNull() { method andUrlEqualTo (line 674) | public Criteria andUrlEqualTo(String value) { method andUrlEqualToColumn (line 685) | public Criteria andUrlEqualToColumn(LitemallAd.Column column) { method andUrlNotEqualTo (line 690) | public Criteria andUrlNotEqualTo(String value) { method andUrlNotEqualToColumn (line 701) | public Criteria andUrlNotEqualToColumn(LitemallAd.Column column) { method andUrlGreaterThan (line 706) | public Criteria andUrlGreaterThan(String value) { method andUrlGreaterThanColumn (line 717) | public Criteria andUrlGreaterThanColumn(LitemallAd.Column column) { method andUrlGreaterThanOrEqualTo (line 722) | public Criteria andUrlGreaterThanOrEqualTo(String value) { method andUrlGreaterThanOrEqualToColumn (line 733) | public Criteria andUrlGreaterThanOrEqualToColumn(LitemallAd.Column c... method andUrlLessThan (line 738) | public Criteria andUrlLessThan(String value) { method andUrlLessThanColumn (line 749) | public Criteria andUrlLessThanColumn(LitemallAd.Column column) { method andUrlLessThanOrEqualTo (line 754) | public Criteria andUrlLessThanOrEqualTo(String value) { method andUrlLessThanOrEqualToColumn (line 765) | public Criteria andUrlLessThanOrEqualToColumn(LitemallAd.Column colu... method andUrlLike (line 770) | public Criteria andUrlLike(String value) { method andUrlNotLike (line 775) | public Criteria andUrlNotLike(String value) { method andUrlIn (line 780) | public Criteria andUrlIn(List values) { method andUrlNotIn (line 785) | public Criteria andUrlNotIn(List values) { method andUrlBetween (line 790) | public Criteria andUrlBetween(String value1, String value2) { method andUrlNotBetween (line 795) | public Criteria andUrlNotBetween(String value1, String value2) { method andPositionIsNull (line 800) | public Criteria andPositionIsNull() { method andPositionIsNotNull (line 805) | public Criteria andPositionIsNotNull() { method andPositionEqualTo (line 810) | public Criteria andPositionEqualTo(Byte value) { method andPositionEqualToColumn (line 821) | public Criteria andPositionEqualToColumn(LitemallAd.Column column) { method andPositionNotEqualTo (line 826) | public Criteria andPositionNotEqualTo(Byte value) { method andPositionNotEqualToColumn (line 837) | public Criteria andPositionNotEqualToColumn(LitemallAd.Column column) { method andPositionGreaterThan (line 842) | public Criteria andPositionGreaterThan(Byte value) { method andPositionGreaterThanColumn (line 853) | public Criteria andPositionGreaterThanColumn(LitemallAd.Column colum... method andPositionGreaterThanOrEqualTo (line 858) | public Criteria andPositionGreaterThanOrEqualTo(Byte value) { method andPositionGreaterThanOrEqualToColumn (line 869) | public Criteria andPositionGreaterThanOrEqualToColumn(LitemallAd.Col... method andPositionLessThan (line 874) | public Criteria andPositionLessThan(Byte value) { method andPositionLessThanColumn (line 885) | public Criteria andPositionLessThanColumn(LitemallAd.Column column) { method andPositionLessThanOrEqualTo (line 890) | public Criteria andPositionLessThanOrEqualTo(Byte value) { method andPositionLessThanOrEqualToColumn (line 901) | public Criteria andPositionLessThanOrEqualToColumn(LitemallAd.Column... method andPositionIn (line 906) | public Criteria andPositionIn(List values) { method andPositionNotIn (line 911) | public Criteria andPositionNotIn(List values) { method andPositionBetween (line 916) | public Criteria andPositionBetween(Byte value1, Byte value2) { method andPositionNotBetween (line 921) | public Criteria andPositionNotBetween(Byte value1, Byte value2) { method andContentIsNull (line 926) | public Criteria andContentIsNull() { method andContentIsNotNull (line 931) | public Criteria andContentIsNotNull() { method andContentEqualTo (line 936) | public Criteria andContentEqualTo(String value) { method andContentEqualToColumn (line 947) | public Criteria andContentEqualToColumn(LitemallAd.Column column) { method andContentNotEqualTo (line 952) | public Criteria andContentNotEqualTo(String value) { method andContentNotEqualToColumn (line 963) | public Criteria andContentNotEqualToColumn(LitemallAd.Column column) { method andContentGreaterThan (line 968) | public Criteria andContentGreaterThan(String value) { method andContentGreaterThanColumn (line 979) | public Criteria andContentGreaterThanColumn(LitemallAd.Column column) { method andContentGreaterThanOrEqualTo (line 984) | public Criteria andContentGreaterThanOrEqualTo(String value) { method andContentGreaterThanOrEqualToColumn (line 995) | public Criteria andContentGreaterThanOrEqualToColumn(LitemallAd.Colu... method andContentLessThan (line 1000) | public Criteria andContentLessThan(String value) { method andContentLessThanColumn (line 1011) | public Criteria andContentLessThanColumn(LitemallAd.Column column) { method andContentLessThanOrEqualTo (line 1016) | public Criteria andContentLessThanOrEqualTo(String value) { method andContentLessThanOrEqualToColumn (line 1027) | public Criteria andContentLessThanOrEqualToColumn(LitemallAd.Column ... method andContentLike (line 1032) | public Criteria andContentLike(String value) { method andContentNotLike (line 1037) | public Criteria andContentNotLike(String value) { method andContentIn (line 1042) | public Criteria andContentIn(List values) { method andContentNotIn (line 1047) | public Criteria andContentNotIn(List values) { method andContentBetween (line 1052) | public Criteria andContentBetween(String value1, String value2) { method andContentNotBetween (line 1057) | public Criteria andContentNotBetween(String value1, String value2) { method andStartTimeIsNull (line 1062) | public Criteria andStartTimeIsNull() { method andStartTimeIsNotNull (line 1067) | public Criteria andStartTimeIsNotNull() { method andStartTimeEqualTo (line 1072) | public Criteria andStartTimeEqualTo(LocalDateTime value) { method andStartTimeEqualToColumn (line 1083) | public Criteria andStartTimeEqualToColumn(LitemallAd.Column column) { method andStartTimeNotEqualTo (line 1088) | public Criteria andStartTimeNotEqualTo(LocalDateTime value) { method andStartTimeNotEqualToColumn (line 1099) | public Criteria andStartTimeNotEqualToColumn(LitemallAd.Column colum... method andStartTimeGreaterThan (line 1104) | public Criteria andStartTimeGreaterThan(LocalDateTime value) { method andStartTimeGreaterThanColumn (line 1115) | public Criteria andStartTimeGreaterThanColumn(LitemallAd.Column colu... method andStartTimeGreaterThanOrEqualTo (line 1120) | public Criteria andStartTimeGreaterThanOrEqualTo(LocalDateTime value) { method andStartTimeGreaterThanOrEqualToColumn (line 1131) | public Criteria andStartTimeGreaterThanOrEqualToColumn(LitemallAd.Co... method andStartTimeLessThan (line 1136) | public Criteria andStartTimeLessThan(LocalDateTime value) { method andStartTimeLessThanColumn (line 1147) | public Criteria andStartTimeLessThanColumn(LitemallAd.Column column) { method andStartTimeLessThanOrEqualTo (line 1152) | public Criteria andStartTimeLessThanOrEqualTo(LocalDateTime value) { method andStartTimeLessThanOrEqualToColumn (line 1163) | public Criteria andStartTimeLessThanOrEqualToColumn(LitemallAd.Colum... method andStartTimeIn (line 1168) | public Criteria andStartTimeIn(List values) { method andStartTimeNotIn (line 1173) | public Criteria andStartTimeNotIn(List values) { method andStartTimeBetween (line 1178) | public Criteria andStartTimeBetween(LocalDateTime value1, LocalDateT... method andStartTimeNotBetween (line 1183) | public Criteria andStartTimeNotBetween(LocalDateTime value1, LocalDa... method andEndTimeIsNull (line 1188) | public Criteria andEndTimeIsNull() { method andEndTimeIsNotNull (line 1193) | public Criteria andEndTimeIsNotNull() { method andEndTimeEqualTo (line 1198) | public Criteria andEndTimeEqualTo(LocalDateTime value) { method andEndTimeEqualToColumn (line 1209) | public Criteria andEndTimeEqualToColumn(LitemallAd.Column column) { method andEndTimeNotEqualTo (line 1214) | public Criteria andEndTimeNotEqualTo(LocalDateTime value) { method andEndTimeNotEqualToColumn (line 1225) | public Criteria andEndTimeNotEqualToColumn(LitemallAd.Column column) { method andEndTimeGreaterThan (line 1230) | public Criteria andEndTimeGreaterThan(LocalDateTime value) { method andEndTimeGreaterThanColumn (line 1241) | public Criteria andEndTimeGreaterThanColumn(LitemallAd.Column column) { method andEndTimeGreaterThanOrEqualTo (line 1246) | public Criteria andEndTimeGreaterThanOrEqualTo(LocalDateTime value) { method andEndTimeGreaterThanOrEqualToColumn (line 1257) | public Criteria andEndTimeGreaterThanOrEqualToColumn(LitemallAd.Colu... method andEndTimeLessThan (line 1262) | public Criteria andEndTimeLessThan(LocalDateTime value) { method andEndTimeLessThanColumn (line 1273) | public Criteria andEndTimeLessThanColumn(LitemallAd.Column column) { method andEndTimeLessThanOrEqualTo (line 1278) | public Criteria andEndTimeLessThanOrEqualTo(LocalDateTime value) { method andEndTimeLessThanOrEqualToColumn (line 1289) | public Criteria andEndTimeLessThanOrEqualToColumn(LitemallAd.Column ... method andEndTimeIn (line 1294) | public Criteria andEndTimeIn(List values) { method andEndTimeNotIn (line 1299) | public Criteria andEndTimeNotIn(List values) { method andEndTimeBetween (line 1304) | public Criteria andEndTimeBetween(LocalDateTime value1, LocalDateTim... method andEndTimeNotBetween (line 1309) | public Criteria andEndTimeNotBetween(LocalDateTime value1, LocalDate... method andEnabledIsNull (line 1314) | public Criteria andEnabledIsNull() { method andEnabledIsNotNull (line 1319) | public Criteria andEnabledIsNotNull() { method andEnabledEqualTo (line 1324) | public Criteria andEnabledEqualTo(Boolean value) { method andEnabledEqualToColumn (line 1335) | public Criteria andEnabledEqualToColumn(LitemallAd.Column column) { method andEnabledNotEqualTo (line 1340) | public Criteria andEnabledNotEqualTo(Boolean value) { method andEnabledNotEqualToColumn (line 1351) | public Criteria andEnabledNotEqualToColumn(LitemallAd.Column column) { method andEnabledGreaterThan (line 1356) | public Criteria andEnabledGreaterThan(Boolean value) { method andEnabledGreaterThanColumn (line 1367) | public Criteria andEnabledGreaterThanColumn(LitemallAd.Column column) { method andEnabledGreaterThanOrEqualTo (line 1372) | public Criteria andEnabledGreaterThanOrEqualTo(Boolean value) { method andEnabledGreaterThanOrEqualToColumn (line 1383) | public Criteria andEnabledGreaterThanOrEqualToColumn(LitemallAd.Colu... method andEnabledLessThan (line 1388) | public Criteria andEnabledLessThan(Boolean value) { method andEnabledLessThanColumn (line 1399) | public Criteria andEnabledLessThanColumn(LitemallAd.Column column) { method andEnabledLessThanOrEqualTo (line 1404) | public Criteria andEnabledLessThanOrEqualTo(Boolean value) { method andEnabledLessThanOrEqualToColumn (line 1415) | public Criteria andEnabledLessThanOrEqualToColumn(LitemallAd.Column ... method andEnabledIn (line 1420) | public Criteria andEnabledIn(List values) { method andEnabledNotIn (line 1425) | public Criteria andEnabledNotIn(List values) { method andEnabledBetween (line 1430) | public Criteria andEnabledBetween(Boolean value1, Boolean value2) { method andEnabledNotBetween (line 1435) | public Criteria andEnabledNotBetween(Boolean value1, Boolean value2) { method andAddTimeIsNull (line 1440) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1445) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1450) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1461) | public Criteria andAddTimeEqualToColumn(LitemallAd.Column column) { method andAddTimeNotEqualTo (line 1466) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1477) | public Criteria andAddTimeNotEqualToColumn(LitemallAd.Column column) { method andAddTimeGreaterThan (line 1482) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1493) | public Criteria andAddTimeGreaterThanColumn(LitemallAd.Column column) { method andAddTimeGreaterThanOrEqualTo (line 1498) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1509) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallAd.Colu... method andAddTimeLessThan (line 1514) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1525) | public Criteria andAddTimeLessThanColumn(LitemallAd.Column column) { method andAddTimeLessThanOrEqualTo (line 1530) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1541) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallAd.Column ... method andAddTimeIn (line 1546) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1551) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1556) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1561) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1566) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1571) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1576) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1587) | public Criteria andUpdateTimeEqualToColumn(LitemallAd.Column column) { method andUpdateTimeNotEqualTo (line 1592) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1603) | public Criteria andUpdateTimeNotEqualToColumn(LitemallAd.Column colu... method andUpdateTimeGreaterThan (line 1608) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1619) | public Criteria andUpdateTimeGreaterThanColumn(LitemallAd.Column col... method andUpdateTimeGreaterThanOrEqualTo (line 1624) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1635) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallAd.C... method andUpdateTimeLessThan (line 1640) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1651) | public Criteria andUpdateTimeLessThanColumn(LitemallAd.Column column) { method andUpdateTimeLessThanOrEqualTo (line 1656) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1667) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallAd.Colu... method andUpdateTimeIn (line 1672) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1677) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1682) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1687) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1692) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1697) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1702) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1713) | public Criteria andDeletedEqualToColumn(LitemallAd.Column column) { method andDeletedNotEqualTo (line 1718) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1729) | public Criteria andDeletedNotEqualToColumn(LitemallAd.Column column) { method andDeletedGreaterThan (line 1734) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1745) | public Criteria andDeletedGreaterThanColumn(LitemallAd.Column column) { method andDeletedGreaterThanOrEqualTo (line 1750) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1761) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallAd.Colu... method andDeletedLessThan (line 1766) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1777) | public Criteria andDeletedLessThanColumn(LitemallAd.Column column) { method andDeletedLessThanOrEqualTo (line 1782) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1793) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallAd.Column ... method andDeletedIn (line 1798) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1803) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1808) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1813) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1825) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1840) | protected Criteria(LitemallAdExample example) { method example (line 1851) | public LitemallAdExample example() { method andIf (line 1861) | @Deprecated method when (line 1875) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1888) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1903) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1907) | @Deprecated method add (line 1915) | Criteria add(Criteria add); class Criterion (line 1925) | public static class Criterion { method getCondition (line 1942) | public String getCondition() { method getValue (line 1946) | public Object getValue() { method getSecondValue (line 1950) | public Object getSecondValue() { method isNoValue (line 1954) | public boolean isNoValue() { method isSingleValue (line 1958) | public boolean isSingleValue() { method isBetweenValue (line 1962) | public boolean isBetweenValue() { method isListValue (line 1966) | public boolean isListValue() { method getTypeHandler (line 1970) | public String getTypeHandler() { method Criterion (line 1974) | protected Criterion(String condition) { method Criterion (line 1981) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1993) | protected Criterion(String condition, Object value) { method Criterion (line 1997) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2006) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2011) | public interface ICriteriaWhen { method criteria (line 2018) | void criteria(Criteria criteria); type IExampleWhen (line 2021) | public interface IExampleWhen { method example (line 2028) | void example(org.linlinjava.litemall.db.domain.LitemallAdExample exa... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAddress.java class LitemallAddress (line 7) | public class LitemallAddress { method getId (line 158) | public Integer getId() { method setId (line 170) | public void setId(Integer id) { method getName (line 182) | public String getName() { method setName (line 194) | public void setName(String name) { method getUserId (line 206) | public Integer getUserId() { method setUserId (line 218) | public void setUserId(Integer userId) { method getProvince (line 230) | public String getProvince() { method setProvince (line 242) | public void setProvince(String province) { method getCity (line 254) | public String getCity() { method setCity (line 266) | public void setCity(String city) { method getCounty (line 278) | public String getCounty() { method setCounty (line 290) | public void setCounty(String county) { method getAddressDetail (line 302) | public String getAddressDetail() { method setAddressDetail (line 314) | public void setAddressDetail(String addressDetail) { method getAreaCode (line 326) | public String getAreaCode() { method setAreaCode (line 338) | public void setAreaCode(String areaCode) { method getPostalCode (line 350) | public String getPostalCode() { method setPostalCode (line 362) | public void setPostalCode(String postalCode) { method getTel (line 374) | public String getTel() { method setTel (line 386) | public void setTel(String tel) { method getIsDefault (line 398) | public Boolean getIsDefault() { method setIsDefault (line 410) | public void setIsDefault(Boolean isDefault) { method getAddTime (line 422) | public LocalDateTime getAddTime() { method setAddTime (line 434) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 446) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 458) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 468) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 480) | public Boolean getDeleted() { method setDeleted (line 492) | public void setDeleted(Boolean deleted) { method toString (line 502) | @Override method equals (line 534) | @Override method hashCode (line 568) | @Override type Deleted (line 595) | public enum Deleted { method Deleted (line 621) | Deleted(Boolean value, String name) { method getValue (line 632) | public Boolean getValue() { method value (line 642) | public Boolean value() { method getName (line 652) | public String getName() { type Column (line 663) | public enum Column { method value (line 733) | public String value() { method getValue (line 743) | public String getValue() { method getJavaProperty (line 753) | public String getJavaProperty() { method getJdbcType (line 763) | public String getJdbcType() { method Column (line 773) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 786) | public String desc() { method asc (line 796) | public String asc() { method excludes (line 806) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 820) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 834) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAddressExample.java class LitemallAddressExample (line 7) | public class LitemallAddressExample { method LitemallAddressExample (line 38) | public LitemallAddressExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallAddressExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallAddressExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallAddressExample when(boolean condition, IExampleWhen the... method when (line 210) | public LitemallAddressExample when(boolean condition, IExampleWhen the... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallAddress.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallAddress.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallAddress.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallAddress.Colu... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallAddress.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallAddress.Column ... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 392) | public Criteria andNameIsNull() { method andNameIsNotNull (line 397) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 402) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 413) | public Criteria andNameEqualToColumn(LitemallAddress.Column column) { method andNameNotEqualTo (line 418) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 429) | public Criteria andNameNotEqualToColumn(LitemallAddress.Column colum... method andNameGreaterThan (line 434) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 445) | public Criteria andNameGreaterThanColumn(LitemallAddress.Column colu... method andNameGreaterThanOrEqualTo (line 450) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 461) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallAddress.Co... method andNameLessThan (line 466) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 477) | public Criteria andNameLessThanColumn(LitemallAddress.Column column) { method andNameLessThanOrEqualTo (line 482) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 493) | public Criteria andNameLessThanOrEqualToColumn(LitemallAddress.Colum... method andNameLike (line 498) | public Criteria andNameLike(String value) { method andNameNotLike (line 503) | public Criteria andNameNotLike(String value) { method andNameIn (line 508) | public Criteria andNameIn(List values) { method andNameNotIn (line 513) | public Criteria andNameNotIn(List values) { method andNameBetween (line 518) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 523) | public Criteria andNameNotBetween(String value1, String value2) { method andUserIdIsNull (line 528) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 533) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 538) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 549) | public Criteria andUserIdEqualToColumn(LitemallAddress.Column column) { method andUserIdNotEqualTo (line 554) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 565) | public Criteria andUserIdNotEqualToColumn(LitemallAddress.Column col... method andUserIdGreaterThan (line 570) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 581) | public Criteria andUserIdGreaterThanColumn(LitemallAddress.Column co... method andUserIdGreaterThanOrEqualTo (line 586) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 597) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallAddress.... method andUserIdLessThan (line 602) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 613) | public Criteria andUserIdLessThanColumn(LitemallAddress.Column colum... method andUserIdLessThanOrEqualTo (line 618) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 629) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallAddress.Col... method andUserIdIn (line 634) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 639) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 644) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 649) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andProvinceIsNull (line 654) | public Criteria andProvinceIsNull() { method andProvinceIsNotNull (line 659) | public Criteria andProvinceIsNotNull() { method andProvinceEqualTo (line 664) | public Criteria andProvinceEqualTo(String value) { method andProvinceEqualToColumn (line 675) | public Criteria andProvinceEqualToColumn(LitemallAddress.Column colu... method andProvinceNotEqualTo (line 680) | public Criteria andProvinceNotEqualTo(String value) { method andProvinceNotEqualToColumn (line 691) | public Criteria andProvinceNotEqualToColumn(LitemallAddress.Column c... method andProvinceGreaterThan (line 696) | public Criteria andProvinceGreaterThan(String value) { method andProvinceGreaterThanColumn (line 707) | public Criteria andProvinceGreaterThanColumn(LitemallAddress.Column ... method andProvinceGreaterThanOrEqualTo (line 712) | public Criteria andProvinceGreaterThanOrEqualTo(String value) { method andProvinceGreaterThanOrEqualToColumn (line 723) | public Criteria andProvinceGreaterThanOrEqualToColumn(LitemallAddres... method andProvinceLessThan (line 728) | public Criteria andProvinceLessThan(String value) { method andProvinceLessThanColumn (line 739) | public Criteria andProvinceLessThanColumn(LitemallAddress.Column col... method andProvinceLessThanOrEqualTo (line 744) | public Criteria andProvinceLessThanOrEqualTo(String value) { method andProvinceLessThanOrEqualToColumn (line 755) | public Criteria andProvinceLessThanOrEqualToColumn(LitemallAddress.C... method andProvinceLike (line 760) | public Criteria andProvinceLike(String value) { method andProvinceNotLike (line 765) | public Criteria andProvinceNotLike(String value) { method andProvinceIn (line 770) | public Criteria andProvinceIn(List values) { method andProvinceNotIn (line 775) | public Criteria andProvinceNotIn(List values) { method andProvinceBetween (line 780) | public Criteria andProvinceBetween(String value1, String value2) { method andProvinceNotBetween (line 785) | public Criteria andProvinceNotBetween(String value1, String value2) { method andCityIsNull (line 790) | public Criteria andCityIsNull() { method andCityIsNotNull (line 795) | public Criteria andCityIsNotNull() { method andCityEqualTo (line 800) | public Criteria andCityEqualTo(String value) { method andCityEqualToColumn (line 811) | public Criteria andCityEqualToColumn(LitemallAddress.Column column) { method andCityNotEqualTo (line 816) | public Criteria andCityNotEqualTo(String value) { method andCityNotEqualToColumn (line 827) | public Criteria andCityNotEqualToColumn(LitemallAddress.Column colum... method andCityGreaterThan (line 832) | public Criteria andCityGreaterThan(String value) { method andCityGreaterThanColumn (line 843) | public Criteria andCityGreaterThanColumn(LitemallAddress.Column colu... method andCityGreaterThanOrEqualTo (line 848) | public Criteria andCityGreaterThanOrEqualTo(String value) { method andCityGreaterThanOrEqualToColumn (line 859) | public Criteria andCityGreaterThanOrEqualToColumn(LitemallAddress.Co... method andCityLessThan (line 864) | public Criteria andCityLessThan(String value) { method andCityLessThanColumn (line 875) | public Criteria andCityLessThanColumn(LitemallAddress.Column column) { method andCityLessThanOrEqualTo (line 880) | public Criteria andCityLessThanOrEqualTo(String value) { method andCityLessThanOrEqualToColumn (line 891) | public Criteria andCityLessThanOrEqualToColumn(LitemallAddress.Colum... method andCityLike (line 896) | public Criteria andCityLike(String value) { method andCityNotLike (line 901) | public Criteria andCityNotLike(String value) { method andCityIn (line 906) | public Criteria andCityIn(List values) { method andCityNotIn (line 911) | public Criteria andCityNotIn(List values) { method andCityBetween (line 916) | public Criteria andCityBetween(String value1, String value2) { method andCityNotBetween (line 921) | public Criteria andCityNotBetween(String value1, String value2) { method andCountyIsNull (line 926) | public Criteria andCountyIsNull() { method andCountyIsNotNull (line 931) | public Criteria andCountyIsNotNull() { method andCountyEqualTo (line 936) | public Criteria andCountyEqualTo(String value) { method andCountyEqualToColumn (line 947) | public Criteria andCountyEqualToColumn(LitemallAddress.Column column) { method andCountyNotEqualTo (line 952) | public Criteria andCountyNotEqualTo(String value) { method andCountyNotEqualToColumn (line 963) | public Criteria andCountyNotEqualToColumn(LitemallAddress.Column col... method andCountyGreaterThan (line 968) | public Criteria andCountyGreaterThan(String value) { method andCountyGreaterThanColumn (line 979) | public Criteria andCountyGreaterThanColumn(LitemallAddress.Column co... method andCountyGreaterThanOrEqualTo (line 984) | public Criteria andCountyGreaterThanOrEqualTo(String value) { method andCountyGreaterThanOrEqualToColumn (line 995) | public Criteria andCountyGreaterThanOrEqualToColumn(LitemallAddress.... method andCountyLessThan (line 1000) | public Criteria andCountyLessThan(String value) { method andCountyLessThanColumn (line 1011) | public Criteria andCountyLessThanColumn(LitemallAddress.Column colum... method andCountyLessThanOrEqualTo (line 1016) | public Criteria andCountyLessThanOrEqualTo(String value) { method andCountyLessThanOrEqualToColumn (line 1027) | public Criteria andCountyLessThanOrEqualToColumn(LitemallAddress.Col... method andCountyLike (line 1032) | public Criteria andCountyLike(String value) { method andCountyNotLike (line 1037) | public Criteria andCountyNotLike(String value) { method andCountyIn (line 1042) | public Criteria andCountyIn(List values) { method andCountyNotIn (line 1047) | public Criteria andCountyNotIn(List values) { method andCountyBetween (line 1052) | public Criteria andCountyBetween(String value1, String value2) { method andCountyNotBetween (line 1057) | public Criteria andCountyNotBetween(String value1, String value2) { method andAddressDetailIsNull (line 1062) | public Criteria andAddressDetailIsNull() { method andAddressDetailIsNotNull (line 1067) | public Criteria andAddressDetailIsNotNull() { method andAddressDetailEqualTo (line 1072) | public Criteria andAddressDetailEqualTo(String value) { method andAddressDetailEqualToColumn (line 1083) | public Criteria andAddressDetailEqualToColumn(LitemallAddress.Column... method andAddressDetailNotEqualTo (line 1088) | public Criteria andAddressDetailNotEqualTo(String value) { method andAddressDetailNotEqualToColumn (line 1099) | public Criteria andAddressDetailNotEqualToColumn(LitemallAddress.Col... method andAddressDetailGreaterThan (line 1104) | public Criteria andAddressDetailGreaterThan(String value) { method andAddressDetailGreaterThanColumn (line 1115) | public Criteria andAddressDetailGreaterThanColumn(LitemallAddress.Co... method andAddressDetailGreaterThanOrEqualTo (line 1120) | public Criteria andAddressDetailGreaterThanOrEqualTo(String value) { method andAddressDetailGreaterThanOrEqualToColumn (line 1131) | public Criteria andAddressDetailGreaterThanOrEqualToColumn(LitemallA... method andAddressDetailLessThan (line 1136) | public Criteria andAddressDetailLessThan(String value) { method andAddressDetailLessThanColumn (line 1147) | public Criteria andAddressDetailLessThanColumn(LitemallAddress.Colum... method andAddressDetailLessThanOrEqualTo (line 1152) | public Criteria andAddressDetailLessThanOrEqualTo(String value) { method andAddressDetailLessThanOrEqualToColumn (line 1163) | public Criteria andAddressDetailLessThanOrEqualToColumn(LitemallAddr... method andAddressDetailLike (line 1168) | public Criteria andAddressDetailLike(String value) { method andAddressDetailNotLike (line 1173) | public Criteria andAddressDetailNotLike(String value) { method andAddressDetailIn (line 1178) | public Criteria andAddressDetailIn(List values) { method andAddressDetailNotIn (line 1183) | public Criteria andAddressDetailNotIn(List values) { method andAddressDetailBetween (line 1188) | public Criteria andAddressDetailBetween(String value1, String value2) { method andAddressDetailNotBetween (line 1193) | public Criteria andAddressDetailNotBetween(String value1, String val... method andAreaCodeIsNull (line 1198) | public Criteria andAreaCodeIsNull() { method andAreaCodeIsNotNull (line 1203) | public Criteria andAreaCodeIsNotNull() { method andAreaCodeEqualTo (line 1208) | public Criteria andAreaCodeEqualTo(String value) { method andAreaCodeEqualToColumn (line 1219) | public Criteria andAreaCodeEqualToColumn(LitemallAddress.Column colu... method andAreaCodeNotEqualTo (line 1224) | public Criteria andAreaCodeNotEqualTo(String value) { method andAreaCodeNotEqualToColumn (line 1235) | public Criteria andAreaCodeNotEqualToColumn(LitemallAddress.Column c... method andAreaCodeGreaterThan (line 1240) | public Criteria andAreaCodeGreaterThan(String value) { method andAreaCodeGreaterThanColumn (line 1251) | public Criteria andAreaCodeGreaterThanColumn(LitemallAddress.Column ... method andAreaCodeGreaterThanOrEqualTo (line 1256) | public Criteria andAreaCodeGreaterThanOrEqualTo(String value) { method andAreaCodeGreaterThanOrEqualToColumn (line 1267) | public Criteria andAreaCodeGreaterThanOrEqualToColumn(LitemallAddres... method andAreaCodeLessThan (line 1272) | public Criteria andAreaCodeLessThan(String value) { method andAreaCodeLessThanColumn (line 1283) | public Criteria andAreaCodeLessThanColumn(LitemallAddress.Column col... method andAreaCodeLessThanOrEqualTo (line 1288) | public Criteria andAreaCodeLessThanOrEqualTo(String value) { method andAreaCodeLessThanOrEqualToColumn (line 1299) | public Criteria andAreaCodeLessThanOrEqualToColumn(LitemallAddress.C... method andAreaCodeLike (line 1304) | public Criteria andAreaCodeLike(String value) { method andAreaCodeNotLike (line 1309) | public Criteria andAreaCodeNotLike(String value) { method andAreaCodeIn (line 1314) | public Criteria andAreaCodeIn(List values) { method andAreaCodeNotIn (line 1319) | public Criteria andAreaCodeNotIn(List values) { method andAreaCodeBetween (line 1324) | public Criteria andAreaCodeBetween(String value1, String value2) { method andAreaCodeNotBetween (line 1329) | public Criteria andAreaCodeNotBetween(String value1, String value2) { method andPostalCodeIsNull (line 1334) | public Criteria andPostalCodeIsNull() { method andPostalCodeIsNotNull (line 1339) | public Criteria andPostalCodeIsNotNull() { method andPostalCodeEqualTo (line 1344) | public Criteria andPostalCodeEqualTo(String value) { method andPostalCodeEqualToColumn (line 1355) | public Criteria andPostalCodeEqualToColumn(LitemallAddress.Column co... method andPostalCodeNotEqualTo (line 1360) | public Criteria andPostalCodeNotEqualTo(String value) { method andPostalCodeNotEqualToColumn (line 1371) | public Criteria andPostalCodeNotEqualToColumn(LitemallAddress.Column... method andPostalCodeGreaterThan (line 1376) | public Criteria andPostalCodeGreaterThan(String value) { method andPostalCodeGreaterThanColumn (line 1387) | public Criteria andPostalCodeGreaterThanColumn(LitemallAddress.Colum... method andPostalCodeGreaterThanOrEqualTo (line 1392) | public Criteria andPostalCodeGreaterThanOrEqualTo(String value) { method andPostalCodeGreaterThanOrEqualToColumn (line 1403) | public Criteria andPostalCodeGreaterThanOrEqualToColumn(LitemallAddr... method andPostalCodeLessThan (line 1408) | public Criteria andPostalCodeLessThan(String value) { method andPostalCodeLessThanColumn (line 1419) | public Criteria andPostalCodeLessThanColumn(LitemallAddress.Column c... method andPostalCodeLessThanOrEqualTo (line 1424) | public Criteria andPostalCodeLessThanOrEqualTo(String value) { method andPostalCodeLessThanOrEqualToColumn (line 1435) | public Criteria andPostalCodeLessThanOrEqualToColumn(LitemallAddress... method andPostalCodeLike (line 1440) | public Criteria andPostalCodeLike(String value) { method andPostalCodeNotLike (line 1445) | public Criteria andPostalCodeNotLike(String value) { method andPostalCodeIn (line 1450) | public Criteria andPostalCodeIn(List values) { method andPostalCodeNotIn (line 1455) | public Criteria andPostalCodeNotIn(List values) { method andPostalCodeBetween (line 1460) | public Criteria andPostalCodeBetween(String value1, String value2) { method andPostalCodeNotBetween (line 1465) | public Criteria andPostalCodeNotBetween(String value1, String value2) { method andTelIsNull (line 1470) | public Criteria andTelIsNull() { method andTelIsNotNull (line 1475) | public Criteria andTelIsNotNull() { method andTelEqualTo (line 1480) | public Criteria andTelEqualTo(String value) { method andTelEqualToColumn (line 1491) | public Criteria andTelEqualToColumn(LitemallAddress.Column column) { method andTelNotEqualTo (line 1496) | public Criteria andTelNotEqualTo(String value) { method andTelNotEqualToColumn (line 1507) | public Criteria andTelNotEqualToColumn(LitemallAddress.Column column) { method andTelGreaterThan (line 1512) | public Criteria andTelGreaterThan(String value) { method andTelGreaterThanColumn (line 1523) | public Criteria andTelGreaterThanColumn(LitemallAddress.Column colum... method andTelGreaterThanOrEqualTo (line 1528) | public Criteria andTelGreaterThanOrEqualTo(String value) { method andTelGreaterThanOrEqualToColumn (line 1539) | public Criteria andTelGreaterThanOrEqualToColumn(LitemallAddress.Col... method andTelLessThan (line 1544) | public Criteria andTelLessThan(String value) { method andTelLessThanColumn (line 1555) | public Criteria andTelLessThanColumn(LitemallAddress.Column column) { method andTelLessThanOrEqualTo (line 1560) | public Criteria andTelLessThanOrEqualTo(String value) { method andTelLessThanOrEqualToColumn (line 1571) | public Criteria andTelLessThanOrEqualToColumn(LitemallAddress.Column... method andTelLike (line 1576) | public Criteria andTelLike(String value) { method andTelNotLike (line 1581) | public Criteria andTelNotLike(String value) { method andTelIn (line 1586) | public Criteria andTelIn(List values) { method andTelNotIn (line 1591) | public Criteria andTelNotIn(List values) { method andTelBetween (line 1596) | public Criteria andTelBetween(String value1, String value2) { method andTelNotBetween (line 1601) | public Criteria andTelNotBetween(String value1, String value2) { method andIsDefaultIsNull (line 1606) | public Criteria andIsDefaultIsNull() { method andIsDefaultIsNotNull (line 1611) | public Criteria andIsDefaultIsNotNull() { method andIsDefaultEqualTo (line 1616) | public Criteria andIsDefaultEqualTo(Boolean value) { method andIsDefaultEqualToColumn (line 1627) | public Criteria andIsDefaultEqualToColumn(LitemallAddress.Column col... method andIsDefaultNotEqualTo (line 1632) | public Criteria andIsDefaultNotEqualTo(Boolean value) { method andIsDefaultNotEqualToColumn (line 1643) | public Criteria andIsDefaultNotEqualToColumn(LitemallAddress.Column ... method andIsDefaultGreaterThan (line 1648) | public Criteria andIsDefaultGreaterThan(Boolean value) { method andIsDefaultGreaterThanColumn (line 1659) | public Criteria andIsDefaultGreaterThanColumn(LitemallAddress.Column... method andIsDefaultGreaterThanOrEqualTo (line 1664) | public Criteria andIsDefaultGreaterThanOrEqualTo(Boolean value) { method andIsDefaultGreaterThanOrEqualToColumn (line 1675) | public Criteria andIsDefaultGreaterThanOrEqualToColumn(LitemallAddre... method andIsDefaultLessThan (line 1680) | public Criteria andIsDefaultLessThan(Boolean value) { method andIsDefaultLessThanColumn (line 1691) | public Criteria andIsDefaultLessThanColumn(LitemallAddress.Column co... method andIsDefaultLessThanOrEqualTo (line 1696) | public Criteria andIsDefaultLessThanOrEqualTo(Boolean value) { method andIsDefaultLessThanOrEqualToColumn (line 1707) | public Criteria andIsDefaultLessThanOrEqualToColumn(LitemallAddress.... method andIsDefaultIn (line 1712) | public Criteria andIsDefaultIn(List values) { method andIsDefaultNotIn (line 1717) | public Criteria andIsDefaultNotIn(List values) { method andIsDefaultBetween (line 1722) | public Criteria andIsDefaultBetween(Boolean value1, Boolean value2) { method andIsDefaultNotBetween (line 1727) | public Criteria andIsDefaultNotBetween(Boolean value1, Boolean value... method andAddTimeIsNull (line 1732) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1737) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1742) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1753) | public Criteria andAddTimeEqualToColumn(LitemallAddress.Column colum... method andAddTimeNotEqualTo (line 1758) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1769) | public Criteria andAddTimeNotEqualToColumn(LitemallAddress.Column co... method andAddTimeGreaterThan (line 1774) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1785) | public Criteria andAddTimeGreaterThanColumn(LitemallAddress.Column c... method andAddTimeGreaterThanOrEqualTo (line 1790) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1801) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallAddress... method andAddTimeLessThan (line 1806) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1817) | public Criteria andAddTimeLessThanColumn(LitemallAddress.Column colu... method andAddTimeLessThanOrEqualTo (line 1822) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1833) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallAddress.Co... method andAddTimeIn (line 1838) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1843) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1848) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1853) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1858) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1863) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1868) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1879) | public Criteria andUpdateTimeEqualToColumn(LitemallAddress.Column co... method andUpdateTimeNotEqualTo (line 1884) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1895) | public Criteria andUpdateTimeNotEqualToColumn(LitemallAddress.Column... method andUpdateTimeGreaterThan (line 1900) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1911) | public Criteria andUpdateTimeGreaterThanColumn(LitemallAddress.Colum... method andUpdateTimeGreaterThanOrEqualTo (line 1916) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1927) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallAddr... method andUpdateTimeLessThan (line 1932) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1943) | public Criteria andUpdateTimeLessThanColumn(LitemallAddress.Column c... method andUpdateTimeLessThanOrEqualTo (line 1948) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1959) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallAddress... method andUpdateTimeIn (line 1964) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1969) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1974) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1979) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1984) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1989) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1994) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 2005) | public Criteria andDeletedEqualToColumn(LitemallAddress.Column colum... method andDeletedNotEqualTo (line 2010) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 2021) | public Criteria andDeletedNotEqualToColumn(LitemallAddress.Column co... method andDeletedGreaterThan (line 2026) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 2037) | public Criteria andDeletedGreaterThanColumn(LitemallAddress.Column c... method andDeletedGreaterThanOrEqualTo (line 2042) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 2053) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallAddress... method andDeletedLessThan (line 2058) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 2069) | public Criteria andDeletedLessThanColumn(LitemallAddress.Column colu... method andDeletedLessThanOrEqualTo (line 2074) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 2085) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallAddress.Co... method andDeletedIn (line 2090) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 2095) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 2100) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 2105) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 2117) | public static class Criteria extends GeneratedCriteria { method Criteria (line 2132) | protected Criteria(LitemallAddressExample example) { method example (line 2143) | public LitemallAddressExample example() { method andIf (line 2153) | @Deprecated method when (line 2167) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 2180) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 2195) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 2199) | @Deprecated method add (line 2207) | Criteria add(Criteria add); class Criterion (line 2217) | public static class Criterion { method getCondition (line 2234) | public String getCondition() { method getValue (line 2238) | public Object getValue() { method getSecondValue (line 2242) | public Object getSecondValue() { method isNoValue (line 2246) | public boolean isNoValue() { method isSingleValue (line 2250) | public boolean isSingleValue() { method isBetweenValue (line 2254) | public boolean isBetweenValue() { method isListValue (line 2258) | public boolean isListValue() { method getTypeHandler (line 2262) | public String getTypeHandler() { method Criterion (line 2266) | protected Criterion(String condition) { method Criterion (line 2273) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2285) | protected Criterion(String condition, Object value) { method Criterion (line 2289) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2298) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2303) | public interface ICriteriaWhen { method criteria (line 2310) | void criteria(Criteria criteria); type IExampleWhen (line 2313) | public interface IExampleWhen { method example (line 2320) | void example(org.linlinjava.litemall.db.domain.LitemallAddressExampl... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAdmin.java class LitemallAdmin (line 7) | public class LitemallAdmin { method getId (line 122) | public Integer getId() { method setId (line 134) | public void setId(Integer id) { method getUsername (line 146) | public String getUsername() { method setUsername (line 158) | public void setUsername(String username) { method getPassword (line 170) | public String getPassword() { method setPassword (line 182) | public void setPassword(String password) { method getLastLoginIp (line 194) | public String getLastLoginIp() { method setLastLoginIp (line 206) | public void setLastLoginIp(String lastLoginIp) { method getLastLoginTime (line 218) | public LocalDateTime getLastLoginTime() { method setLastLoginTime (line 230) | public void setLastLoginTime(LocalDateTime lastLoginTime) { method getAvatar (line 242) | public String getAvatar() { method setAvatar (line 254) | public void setAvatar(String avatar) { method getAddTime (line 266) | public LocalDateTime getAddTime() { method setAddTime (line 278) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 290) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 302) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 312) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 324) | public Boolean getDeleted() { method setDeleted (line 336) | public void setDeleted(Boolean deleted) { method getRoleIds (line 348) | public Integer[] getRoleIds() { method setRoleIds (line 360) | public void setRoleIds(Integer[] roleIds) { method toString (line 370) | @Override method equals (line 398) | @Override method hashCode (line 428) | @Override type Deleted (line 451) | public enum Deleted { method Deleted (line 477) | Deleted(Boolean value, String name) { method getValue (line 488) | public Boolean getValue() { method value (line 498) | public Boolean value() { method getName (line 508) | public String getName() { type Column (line 519) | public enum Column { method value (line 585) | public String value() { method getValue (line 595) | public String getValue() { method getJavaProperty (line 605) | public String getJavaProperty() { method getJdbcType (line 615) | public String getJdbcType() { method Column (line 625) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 638) | public String desc() { method asc (line 648) | public String asc() { method excludes (line 658) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 672) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 686) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAdminExample.java class LitemallAdminExample (line 7) | public class LitemallAdminExample { method LitemallAdminExample (line 38) | public LitemallAdminExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallAdminExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallAdminExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallAdminExample when(boolean condition, IExampleWhen then) { method when (line 210) | public LitemallAdminExample when(boolean condition, IExampleWhen then,... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 232) | protected GeneratedCriteria() { method getRoleIdsCriteria (line 238) | public List getRoleIdsCriteria() { method addRoleIdsCriterion (line 242) | protected void addRoleIdsCriterion(String condition, Object value, S... method addRoleIdsCriterion (line 250) | protected void addRoleIdsCriterion(String condition, Integer[] value... method isValid (line 258) | public boolean isValid() { method getAllCriteria (line 263) | public List getAllCriteria() { method getCriteria (line 272) | public List getCriteria() { method addCriterion (line 276) | protected void addCriterion(String condition) { method addCriterion (line 284) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 292) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 300) | public Criteria andIdIsNull() { method andIdIsNotNull (line 305) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 310) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 321) | public Criteria andIdEqualToColumn(LitemallAdmin.Column column) { method andIdNotEqualTo (line 326) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 337) | public Criteria andIdNotEqualToColumn(LitemallAdmin.Column column) { method andIdGreaterThan (line 342) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 353) | public Criteria andIdGreaterThanColumn(LitemallAdmin.Column column) { method andIdGreaterThanOrEqualTo (line 358) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 369) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallAdmin.Column... method andIdLessThan (line 374) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 385) | public Criteria andIdLessThanColumn(LitemallAdmin.Column column) { method andIdLessThanOrEqualTo (line 390) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 401) | public Criteria andIdLessThanOrEqualToColumn(LitemallAdmin.Column co... method andIdIn (line 406) | public Criteria andIdIn(List values) { method andIdNotIn (line 411) | public Criteria andIdNotIn(List values) { method andIdBetween (line 416) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 421) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUsernameIsNull (line 426) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 431) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 436) | public Criteria andUsernameEqualTo(String value) { method andUsernameEqualToColumn (line 447) | public Criteria andUsernameEqualToColumn(LitemallAdmin.Column column) { method andUsernameNotEqualTo (line 452) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameNotEqualToColumn (line 463) | public Criteria andUsernameNotEqualToColumn(LitemallAdmin.Column col... method andUsernameGreaterThan (line 468) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanColumn (line 479) | public Criteria andUsernameGreaterThanColumn(LitemallAdmin.Column co... method andUsernameGreaterThanOrEqualTo (line 484) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameGreaterThanOrEqualToColumn (line 495) | public Criteria andUsernameGreaterThanOrEqualToColumn(LitemallAdmin.... method andUsernameLessThan (line 500) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanColumn (line 511) | public Criteria andUsernameLessThanColumn(LitemallAdmin.Column colum... method andUsernameLessThanOrEqualTo (line 516) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLessThanOrEqualToColumn (line 527) | public Criteria andUsernameLessThanOrEqualToColumn(LitemallAdmin.Col... method andUsernameLike (line 532) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 537) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 542) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 547) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 552) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 557) | public Criteria andUsernameNotBetween(String value1, String value2) { method andPasswordIsNull (line 562) | public Criteria andPasswordIsNull() { method andPasswordIsNotNull (line 567) | public Criteria andPasswordIsNotNull() { method andPasswordEqualTo (line 572) | public Criteria andPasswordEqualTo(String value) { method andPasswordEqualToColumn (line 583) | public Criteria andPasswordEqualToColumn(LitemallAdmin.Column column) { method andPasswordNotEqualTo (line 588) | public Criteria andPasswordNotEqualTo(String value) { method andPasswordNotEqualToColumn (line 599) | public Criteria andPasswordNotEqualToColumn(LitemallAdmin.Column col... method andPasswordGreaterThan (line 604) | public Criteria andPasswordGreaterThan(String value) { method andPasswordGreaterThanColumn (line 615) | public Criteria andPasswordGreaterThanColumn(LitemallAdmin.Column co... method andPasswordGreaterThanOrEqualTo (line 620) | public Criteria andPasswordGreaterThanOrEqualTo(String value) { method andPasswordGreaterThanOrEqualToColumn (line 631) | public Criteria andPasswordGreaterThanOrEqualToColumn(LitemallAdmin.... method andPasswordLessThan (line 636) | public Criteria andPasswordLessThan(String value) { method andPasswordLessThanColumn (line 647) | public Criteria andPasswordLessThanColumn(LitemallAdmin.Column colum... method andPasswordLessThanOrEqualTo (line 652) | public Criteria andPasswordLessThanOrEqualTo(String value) { method andPasswordLessThanOrEqualToColumn (line 663) | public Criteria andPasswordLessThanOrEqualToColumn(LitemallAdmin.Col... method andPasswordLike (line 668) | public Criteria andPasswordLike(String value) { method andPasswordNotLike (line 673) | public Criteria andPasswordNotLike(String value) { method andPasswordIn (line 678) | public Criteria andPasswordIn(List values) { method andPasswordNotIn (line 683) | public Criteria andPasswordNotIn(List values) { method andPasswordBetween (line 688) | public Criteria andPasswordBetween(String value1, String value2) { method andPasswordNotBetween (line 693) | public Criteria andPasswordNotBetween(String value1, String value2) { method andLastLoginIpIsNull (line 698) | public Criteria andLastLoginIpIsNull() { method andLastLoginIpIsNotNull (line 703) | public Criteria andLastLoginIpIsNotNull() { method andLastLoginIpEqualTo (line 708) | public Criteria andLastLoginIpEqualTo(String value) { method andLastLoginIpEqualToColumn (line 719) | public Criteria andLastLoginIpEqualToColumn(LitemallAdmin.Column col... method andLastLoginIpNotEqualTo (line 724) | public Criteria andLastLoginIpNotEqualTo(String value) { method andLastLoginIpNotEqualToColumn (line 735) | public Criteria andLastLoginIpNotEqualToColumn(LitemallAdmin.Column ... method andLastLoginIpGreaterThan (line 740) | public Criteria andLastLoginIpGreaterThan(String value) { method andLastLoginIpGreaterThanColumn (line 751) | public Criteria andLastLoginIpGreaterThanColumn(LitemallAdmin.Column... method andLastLoginIpGreaterThanOrEqualTo (line 756) | public Criteria andLastLoginIpGreaterThanOrEqualTo(String value) { method andLastLoginIpGreaterThanOrEqualToColumn (line 767) | public Criteria andLastLoginIpGreaterThanOrEqualToColumn(LitemallAdm... method andLastLoginIpLessThan (line 772) | public Criteria andLastLoginIpLessThan(String value) { method andLastLoginIpLessThanColumn (line 783) | public Criteria andLastLoginIpLessThanColumn(LitemallAdmin.Column co... method andLastLoginIpLessThanOrEqualTo (line 788) | public Criteria andLastLoginIpLessThanOrEqualTo(String value) { method andLastLoginIpLessThanOrEqualToColumn (line 799) | public Criteria andLastLoginIpLessThanOrEqualToColumn(LitemallAdmin.... method andLastLoginIpLike (line 804) | public Criteria andLastLoginIpLike(String value) { method andLastLoginIpNotLike (line 809) | public Criteria andLastLoginIpNotLike(String value) { method andLastLoginIpIn (line 814) | public Criteria andLastLoginIpIn(List values) { method andLastLoginIpNotIn (line 819) | public Criteria andLastLoginIpNotIn(List values) { method andLastLoginIpBetween (line 824) | public Criteria andLastLoginIpBetween(String value1, String value2) { method andLastLoginIpNotBetween (line 829) | public Criteria andLastLoginIpNotBetween(String value1, String value... method andLastLoginTimeIsNull (line 834) | public Criteria andLastLoginTimeIsNull() { method andLastLoginTimeIsNotNull (line 839) | public Criteria andLastLoginTimeIsNotNull() { method andLastLoginTimeEqualTo (line 844) | public Criteria andLastLoginTimeEqualTo(LocalDateTime value) { method andLastLoginTimeEqualToColumn (line 855) | public Criteria andLastLoginTimeEqualToColumn(LitemallAdmin.Column c... method andLastLoginTimeNotEqualTo (line 860) | public Criteria andLastLoginTimeNotEqualTo(LocalDateTime value) { method andLastLoginTimeNotEqualToColumn (line 871) | public Criteria andLastLoginTimeNotEqualToColumn(LitemallAdmin.Colum... method andLastLoginTimeGreaterThan (line 876) | public Criteria andLastLoginTimeGreaterThan(LocalDateTime value) { method andLastLoginTimeGreaterThanColumn (line 887) | public Criteria andLastLoginTimeGreaterThanColumn(LitemallAdmin.Colu... method andLastLoginTimeGreaterThanOrEqualTo (line 892) | public Criteria andLastLoginTimeGreaterThanOrEqualTo(LocalDateTime v... method andLastLoginTimeGreaterThanOrEqualToColumn (line 903) | public Criteria andLastLoginTimeGreaterThanOrEqualToColumn(LitemallA... method andLastLoginTimeLessThan (line 908) | public Criteria andLastLoginTimeLessThan(LocalDateTime value) { method andLastLoginTimeLessThanColumn (line 919) | public Criteria andLastLoginTimeLessThanColumn(LitemallAdmin.Column ... method andLastLoginTimeLessThanOrEqualTo (line 924) | public Criteria andLastLoginTimeLessThanOrEqualTo(LocalDateTime valu... method andLastLoginTimeLessThanOrEqualToColumn (line 935) | public Criteria andLastLoginTimeLessThanOrEqualToColumn(LitemallAdmi... method andLastLoginTimeIn (line 940) | public Criteria andLastLoginTimeIn(List values) { method andLastLoginTimeNotIn (line 945) | public Criteria andLastLoginTimeNotIn(List values) { method andLastLoginTimeBetween (line 950) | public Criteria andLastLoginTimeBetween(LocalDateTime value1, LocalD... method andLastLoginTimeNotBetween (line 955) | public Criteria andLastLoginTimeNotBetween(LocalDateTime value1, Loc... method andAvatarIsNull (line 960) | public Criteria andAvatarIsNull() { method andAvatarIsNotNull (line 965) | public Criteria andAvatarIsNotNull() { method andAvatarEqualTo (line 970) | public Criteria andAvatarEqualTo(String value) { method andAvatarEqualToColumn (line 981) | public Criteria andAvatarEqualToColumn(LitemallAdmin.Column column) { method andAvatarNotEqualTo (line 986) | public Criteria andAvatarNotEqualTo(String value) { method andAvatarNotEqualToColumn (line 997) | public Criteria andAvatarNotEqualToColumn(LitemallAdmin.Column colum... method andAvatarGreaterThan (line 1002) | public Criteria andAvatarGreaterThan(String value) { method andAvatarGreaterThanColumn (line 1013) | public Criteria andAvatarGreaterThanColumn(LitemallAdmin.Column colu... method andAvatarGreaterThanOrEqualTo (line 1018) | public Criteria andAvatarGreaterThanOrEqualTo(String value) { method andAvatarGreaterThanOrEqualToColumn (line 1029) | public Criteria andAvatarGreaterThanOrEqualToColumn(LitemallAdmin.Co... method andAvatarLessThan (line 1034) | public Criteria andAvatarLessThan(String value) { method andAvatarLessThanColumn (line 1045) | public Criteria andAvatarLessThanColumn(LitemallAdmin.Column column) { method andAvatarLessThanOrEqualTo (line 1050) | public Criteria andAvatarLessThanOrEqualTo(String value) { method andAvatarLessThanOrEqualToColumn (line 1061) | public Criteria andAvatarLessThanOrEqualToColumn(LitemallAdmin.Colum... method andAvatarLike (line 1066) | public Criteria andAvatarLike(String value) { method andAvatarNotLike (line 1071) | public Criteria andAvatarNotLike(String value) { method andAvatarIn (line 1076) | public Criteria andAvatarIn(List values) { method andAvatarNotIn (line 1081) | public Criteria andAvatarNotIn(List values) { method andAvatarBetween (line 1086) | public Criteria andAvatarBetween(String value1, String value2) { method andAvatarNotBetween (line 1091) | public Criteria andAvatarNotBetween(String value1, String value2) { method andAddTimeIsNull (line 1096) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1101) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1106) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1117) | public Criteria andAddTimeEqualToColumn(LitemallAdmin.Column column) { method andAddTimeNotEqualTo (line 1122) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1133) | public Criteria andAddTimeNotEqualToColumn(LitemallAdmin.Column colu... method andAddTimeGreaterThan (line 1138) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1149) | public Criteria andAddTimeGreaterThanColumn(LitemallAdmin.Column col... method andAddTimeGreaterThanOrEqualTo (line 1154) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1165) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallAdmin.C... method andAddTimeLessThan (line 1170) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1181) | public Criteria andAddTimeLessThanColumn(LitemallAdmin.Column column) { method andAddTimeLessThanOrEqualTo (line 1186) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1197) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallAdmin.Colu... method andAddTimeIn (line 1202) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1207) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1212) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1217) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1222) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1227) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1232) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1243) | public Criteria andUpdateTimeEqualToColumn(LitemallAdmin.Column colu... method andUpdateTimeNotEqualTo (line 1248) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1259) | public Criteria andUpdateTimeNotEqualToColumn(LitemallAdmin.Column c... method andUpdateTimeGreaterThan (line 1264) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1275) | public Criteria andUpdateTimeGreaterThanColumn(LitemallAdmin.Column ... method andUpdateTimeGreaterThanOrEqualTo (line 1280) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1291) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallAdmi... method andUpdateTimeLessThan (line 1296) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1307) | public Criteria andUpdateTimeLessThanColumn(LitemallAdmin.Column col... method andUpdateTimeLessThanOrEqualTo (line 1312) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1323) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallAdmin.C... method andUpdateTimeIn (line 1328) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1333) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1338) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1343) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1348) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1353) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1358) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1369) | public Criteria andDeletedEqualToColumn(LitemallAdmin.Column column) { method andDeletedNotEqualTo (line 1374) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1385) | public Criteria andDeletedNotEqualToColumn(LitemallAdmin.Column colu... method andDeletedGreaterThan (line 1390) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1401) | public Criteria andDeletedGreaterThanColumn(LitemallAdmin.Column col... method andDeletedGreaterThanOrEqualTo (line 1406) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1417) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallAdmin.C... method andDeletedLessThan (line 1422) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1433) | public Criteria andDeletedLessThanColumn(LitemallAdmin.Column column) { method andDeletedLessThanOrEqualTo (line 1438) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1449) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallAdmin.Colu... method andDeletedIn (line 1454) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1459) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1464) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1469) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { method andRoleIdsIsNull (line 1474) | public Criteria andRoleIdsIsNull() { method andRoleIdsIsNotNull (line 1479) | public Criteria andRoleIdsIsNotNull() { method andRoleIdsEqualTo (line 1484) | public Criteria andRoleIdsEqualTo(Integer[] value) { method andRoleIdsEqualToColumn (line 1495) | public Criteria andRoleIdsEqualToColumn(LitemallAdmin.Column column) { method andRoleIdsNotEqualTo (line 1500) | public Criteria andRoleIdsNotEqualTo(Integer[] value) { method andRoleIdsNotEqualToColumn (line 1511) | public Criteria andRoleIdsNotEqualToColumn(LitemallAdmin.Column colu... method andRoleIdsGreaterThan (line 1516) | public Criteria andRoleIdsGreaterThan(Integer[] value) { method andRoleIdsGreaterThanColumn (line 1527) | public Criteria andRoleIdsGreaterThanColumn(LitemallAdmin.Column col... method andRoleIdsGreaterThanOrEqualTo (line 1532) | public Criteria andRoleIdsGreaterThanOrEqualTo(Integer[] value) { method andRoleIdsGreaterThanOrEqualToColumn (line 1543) | public Criteria andRoleIdsGreaterThanOrEqualToColumn(LitemallAdmin.C... method andRoleIdsLessThan (line 1548) | public Criteria andRoleIdsLessThan(Integer[] value) { method andRoleIdsLessThanColumn (line 1559) | public Criteria andRoleIdsLessThanColumn(LitemallAdmin.Column column) { method andRoleIdsLessThanOrEqualTo (line 1564) | public Criteria andRoleIdsLessThanOrEqualTo(Integer[] value) { method andRoleIdsLessThanOrEqualToColumn (line 1575) | public Criteria andRoleIdsLessThanOrEqualToColumn(LitemallAdmin.Colu... method andRoleIdsLike (line 1580) | public Criteria andRoleIdsLike(Integer[] value) { method andRoleIdsNotLike (line 1585) | public Criteria andRoleIdsNotLike(Integer[] value) { method andRoleIdsIn (line 1590) | public Criteria andRoleIdsIn(List values) { method andRoleIdsNotIn (line 1595) | public Criteria andRoleIdsNotIn(List values) { method andRoleIdsBetween (line 1600) | public Criteria andRoleIdsBetween(Integer[] value1, Integer[] value2) { method andRoleIdsNotBetween (line 1605) | public Criteria andRoleIdsNotBetween(Integer[] value1, Integer[] val... class Criteria (line 1617) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1632) | protected Criteria(LitemallAdminExample example) { method example (line 1643) | public LitemallAdminExample example() { method andIf (line 1653) | @Deprecated method when (line 1667) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1680) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1695) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1699) | @Deprecated method add (line 1707) | Criteria add(Criteria add); class Criterion (line 1717) | public static class Criterion { method getCondition (line 1734) | public String getCondition() { method getValue (line 1738) | public Object getValue() { method getSecondValue (line 1742) | public Object getSecondValue() { method isNoValue (line 1746) | public boolean isNoValue() { method isSingleValue (line 1750) | public boolean isSingleValue() { method isBetweenValue (line 1754) | public boolean isBetweenValue() { method isListValue (line 1758) | public boolean isListValue() { method getTypeHandler (line 1762) | public String getTypeHandler() { method Criterion (line 1766) | protected Criterion(String condition) { method Criterion (line 1773) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1785) | protected Criterion(String condition, Object value) { method Criterion (line 1789) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1798) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1803) | public interface ICriteriaWhen { method criteria (line 1810) | void criteria(Criteria criteria); type IExampleWhen (line 1813) | public interface IExampleWhen { method example (line 1820) | void example(org.linlinjava.litemall.db.domain.LitemallAdminExample ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAftersale.java class LitemallAftersale (line 8) | public class LitemallAftersale { method getId (line 159) | public Integer getId() { method setId (line 171) | public void setId(Integer id) { method getAftersaleSn (line 183) | public String getAftersaleSn() { method setAftersaleSn (line 195) | public void setAftersaleSn(String aftersaleSn) { method getOrderId (line 207) | public Integer getOrderId() { method setOrderId (line 219) | public void setOrderId(Integer orderId) { method getUserId (line 231) | public Integer getUserId() { method setUserId (line 243) | public void setUserId(Integer userId) { method getType (line 255) | public Short getType() { method setType (line 267) | public void setType(Short type) { method getReason (line 279) | public String getReason() { method setReason (line 291) | public void setReason(String reason) { method getAmount (line 303) | public BigDecimal getAmount() { method setAmount (line 315) | public void setAmount(BigDecimal amount) { method getPictures (line 327) | public String[] getPictures() { method setPictures (line 339) | public void setPictures(String[] pictures) { method getComment (line 351) | public String getComment() { method setComment (line 363) | public void setComment(String comment) { method getStatus (line 375) | public Short getStatus() { method setStatus (line 387) | public void setStatus(Short status) { method getHandleTime (line 399) | public LocalDateTime getHandleTime() { method setHandleTime (line 411) | public void setHandleTime(LocalDateTime handleTime) { method getAddTime (line 423) | public LocalDateTime getAddTime() { method setAddTime (line 435) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 447) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 459) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 469) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 481) | public Boolean getDeleted() { method setDeleted (line 493) | public void setDeleted(Boolean deleted) { method toString (line 503) | @Override method equals (line 535) | @Override method hashCode (line 569) | @Override type Deleted (line 596) | public enum Deleted { method Deleted (line 622) | Deleted(Boolean value, String name) { method getValue (line 633) | public Boolean getValue() { method value (line 643) | public Boolean value() { method getName (line 653) | public String getName() { type Column (line 664) | public enum Column { method value (line 734) | public String value() { method getValue (line 744) | public String getValue() { method getJavaProperty (line 754) | public String getJavaProperty() { method getJdbcType (line 764) | public String getJdbcType() { method Column (line 774) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 787) | public String desc() { method asc (line 797) | public String asc() { method excludes (line 807) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 821) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 835) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallAftersaleExample.java class LitemallAftersaleExample (line 8) | public class LitemallAftersaleExample { method LitemallAftersaleExample (line 39) | public LitemallAftersaleExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallAftersaleExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallAftersaleExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallAftersaleExample when(boolean condition, IExampleWhen t... method when (line 211) | public LitemallAftersaleExample when(boolean condition, IExampleWhen t... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 233) | protected GeneratedCriteria() { method getPicturesCriteria (line 239) | public List getPicturesCriteria() { method addPicturesCriterion (line 243) | protected void addPicturesCriterion(String condition, Object value, ... method addPicturesCriterion (line 251) | protected void addPicturesCriterion(String condition, String[] value... method isValid (line 259) | public boolean isValid() { method getAllCriteria (line 264) | public List getAllCriteria() { method getCriteria (line 273) | public List getCriteria() { method addCriterion (line 277) | protected void addCriterion(String condition) { method addCriterion (line 285) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 293) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 301) | public Criteria andIdIsNull() { method andIdIsNotNull (line 306) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 311) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 322) | public Criteria andIdEqualToColumn(LitemallAftersale.Column column) { method andIdNotEqualTo (line 327) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 338) | public Criteria andIdNotEqualToColumn(LitemallAftersale.Column colum... method andIdGreaterThan (line 343) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 354) | public Criteria andIdGreaterThanColumn(LitemallAftersale.Column colu... method andIdGreaterThanOrEqualTo (line 359) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 370) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallAftersale.Co... method andIdLessThan (line 375) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 386) | public Criteria andIdLessThanColumn(LitemallAftersale.Column column) { method andIdLessThanOrEqualTo (line 391) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 402) | public Criteria andIdLessThanOrEqualToColumn(LitemallAftersale.Colum... method andIdIn (line 407) | public Criteria andIdIn(List values) { method andIdNotIn (line 412) | public Criteria andIdNotIn(List values) { method andIdBetween (line 417) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 422) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andAftersaleSnIsNull (line 427) | public Criteria andAftersaleSnIsNull() { method andAftersaleSnIsNotNull (line 432) | public Criteria andAftersaleSnIsNotNull() { method andAftersaleSnEqualTo (line 437) | public Criteria andAftersaleSnEqualTo(String value) { method andAftersaleSnEqualToColumn (line 448) | public Criteria andAftersaleSnEqualToColumn(LitemallAftersale.Column... method andAftersaleSnNotEqualTo (line 453) | public Criteria andAftersaleSnNotEqualTo(String value) { method andAftersaleSnNotEqualToColumn (line 464) | public Criteria andAftersaleSnNotEqualToColumn(LitemallAftersale.Col... method andAftersaleSnGreaterThan (line 469) | public Criteria andAftersaleSnGreaterThan(String value) { method andAftersaleSnGreaterThanColumn (line 480) | public Criteria andAftersaleSnGreaterThanColumn(LitemallAftersale.Co... method andAftersaleSnGreaterThanOrEqualTo (line 485) | public Criteria andAftersaleSnGreaterThanOrEqualTo(String value) { method andAftersaleSnGreaterThanOrEqualToColumn (line 496) | public Criteria andAftersaleSnGreaterThanOrEqualToColumn(LitemallAft... method andAftersaleSnLessThan (line 501) | public Criteria andAftersaleSnLessThan(String value) { method andAftersaleSnLessThanColumn (line 512) | public Criteria andAftersaleSnLessThanColumn(LitemallAftersale.Colum... method andAftersaleSnLessThanOrEqualTo (line 517) | public Criteria andAftersaleSnLessThanOrEqualTo(String value) { method andAftersaleSnLessThanOrEqualToColumn (line 528) | public Criteria andAftersaleSnLessThanOrEqualToColumn(LitemallAfters... method andAftersaleSnLike (line 533) | public Criteria andAftersaleSnLike(String value) { method andAftersaleSnNotLike (line 538) | public Criteria andAftersaleSnNotLike(String value) { method andAftersaleSnIn (line 543) | public Criteria andAftersaleSnIn(List values) { method andAftersaleSnNotIn (line 548) | public Criteria andAftersaleSnNotIn(List values) { method andAftersaleSnBetween (line 553) | public Criteria andAftersaleSnBetween(String value1, String value2) { method andAftersaleSnNotBetween (line 558) | public Criteria andAftersaleSnNotBetween(String value1, String value... method andOrderIdIsNull (line 563) | public Criteria andOrderIdIsNull() { method andOrderIdIsNotNull (line 568) | public Criteria andOrderIdIsNotNull() { method andOrderIdEqualTo (line 573) | public Criteria andOrderIdEqualTo(Integer value) { method andOrderIdEqualToColumn (line 584) | public Criteria andOrderIdEqualToColumn(LitemallAftersale.Column col... method andOrderIdNotEqualTo (line 589) | public Criteria andOrderIdNotEqualTo(Integer value) { method andOrderIdNotEqualToColumn (line 600) | public Criteria andOrderIdNotEqualToColumn(LitemallAftersale.Column ... method andOrderIdGreaterThan (line 605) | public Criteria andOrderIdGreaterThan(Integer value) { method andOrderIdGreaterThanColumn (line 616) | public Criteria andOrderIdGreaterThanColumn(LitemallAftersale.Column... method andOrderIdGreaterThanOrEqualTo (line 621) | public Criteria andOrderIdGreaterThanOrEqualTo(Integer value) { method andOrderIdGreaterThanOrEqualToColumn (line 632) | public Criteria andOrderIdGreaterThanOrEqualToColumn(LitemallAftersa... method andOrderIdLessThan (line 637) | public Criteria andOrderIdLessThan(Integer value) { method andOrderIdLessThanColumn (line 648) | public Criteria andOrderIdLessThanColumn(LitemallAftersale.Column co... method andOrderIdLessThanOrEqualTo (line 653) | public Criteria andOrderIdLessThanOrEqualTo(Integer value) { method andOrderIdLessThanOrEqualToColumn (line 664) | public Criteria andOrderIdLessThanOrEqualToColumn(LitemallAftersale.... method andOrderIdIn (line 669) | public Criteria andOrderIdIn(List values) { method andOrderIdNotIn (line 674) | public Criteria andOrderIdNotIn(List values) { method andOrderIdBetween (line 679) | public Criteria andOrderIdBetween(Integer value1, Integer value2) { method andOrderIdNotBetween (line 684) | public Criteria andOrderIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 689) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 694) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 699) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 710) | public Criteria andUserIdEqualToColumn(LitemallAftersale.Column colu... method andUserIdNotEqualTo (line 715) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 726) | public Criteria andUserIdNotEqualToColumn(LitemallAftersale.Column c... method andUserIdGreaterThan (line 731) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 742) | public Criteria andUserIdGreaterThanColumn(LitemallAftersale.Column ... method andUserIdGreaterThanOrEqualTo (line 747) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 758) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallAftersal... method andUserIdLessThan (line 763) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 774) | public Criteria andUserIdLessThanColumn(LitemallAftersale.Column col... method andUserIdLessThanOrEqualTo (line 779) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 790) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallAftersale.C... method andUserIdIn (line 795) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 800) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 805) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 810) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andTypeIsNull (line 815) | public Criteria andTypeIsNull() { method andTypeIsNotNull (line 820) | public Criteria andTypeIsNotNull() { method andTypeEqualTo (line 825) | public Criteria andTypeEqualTo(Short value) { method andTypeEqualToColumn (line 836) | public Criteria andTypeEqualToColumn(LitemallAftersale.Column column) { method andTypeNotEqualTo (line 841) | public Criteria andTypeNotEqualTo(Short value) { method andTypeNotEqualToColumn (line 852) | public Criteria andTypeNotEqualToColumn(LitemallAftersale.Column col... method andTypeGreaterThan (line 857) | public Criteria andTypeGreaterThan(Short value) { method andTypeGreaterThanColumn (line 868) | public Criteria andTypeGreaterThanColumn(LitemallAftersale.Column co... method andTypeGreaterThanOrEqualTo (line 873) | public Criteria andTypeGreaterThanOrEqualTo(Short value) { method andTypeGreaterThanOrEqualToColumn (line 884) | public Criteria andTypeGreaterThanOrEqualToColumn(LitemallAftersale.... method andTypeLessThan (line 889) | public Criteria andTypeLessThan(Short value) { method andTypeLessThanColumn (line 900) | public Criteria andTypeLessThanColumn(LitemallAftersale.Column colum... method andTypeLessThanOrEqualTo (line 905) | public Criteria andTypeLessThanOrEqualTo(Short value) { method andTypeLessThanOrEqualToColumn (line 916) | public Criteria andTypeLessThanOrEqualToColumn(LitemallAftersale.Col... method andTypeIn (line 921) | public Criteria andTypeIn(List values) { method andTypeNotIn (line 926) | public Criteria andTypeNotIn(List values) { method andTypeBetween (line 931) | public Criteria andTypeBetween(Short value1, Short value2) { method andTypeNotBetween (line 936) | public Criteria andTypeNotBetween(Short value1, Short value2) { method andReasonIsNull (line 941) | public Criteria andReasonIsNull() { method andReasonIsNotNull (line 946) | public Criteria andReasonIsNotNull() { method andReasonEqualTo (line 951) | public Criteria andReasonEqualTo(String value) { method andReasonEqualToColumn (line 962) | public Criteria andReasonEqualToColumn(LitemallAftersale.Column colu... method andReasonNotEqualTo (line 967) | public Criteria andReasonNotEqualTo(String value) { method andReasonNotEqualToColumn (line 978) | public Criteria andReasonNotEqualToColumn(LitemallAftersale.Column c... method andReasonGreaterThan (line 983) | public Criteria andReasonGreaterThan(String value) { method andReasonGreaterThanColumn (line 994) | public Criteria andReasonGreaterThanColumn(LitemallAftersale.Column ... method andReasonGreaterThanOrEqualTo (line 999) | public Criteria andReasonGreaterThanOrEqualTo(String value) { method andReasonGreaterThanOrEqualToColumn (line 1010) | public Criteria andReasonGreaterThanOrEqualToColumn(LitemallAftersal... method andReasonLessThan (line 1015) | public Criteria andReasonLessThan(String value) { method andReasonLessThanColumn (line 1026) | public Criteria andReasonLessThanColumn(LitemallAftersale.Column col... method andReasonLessThanOrEqualTo (line 1031) | public Criteria andReasonLessThanOrEqualTo(String value) { method andReasonLessThanOrEqualToColumn (line 1042) | public Criteria andReasonLessThanOrEqualToColumn(LitemallAftersale.C... method andReasonLike (line 1047) | public Criteria andReasonLike(String value) { method andReasonNotLike (line 1052) | public Criteria andReasonNotLike(String value) { method andReasonIn (line 1057) | public Criteria andReasonIn(List values) { method andReasonNotIn (line 1062) | public Criteria andReasonNotIn(List values) { method andReasonBetween (line 1067) | public Criteria andReasonBetween(String value1, String value2) { method andReasonNotBetween (line 1072) | public Criteria andReasonNotBetween(String value1, String value2) { method andAmountIsNull (line 1077) | public Criteria andAmountIsNull() { method andAmountIsNotNull (line 1082) | public Criteria andAmountIsNotNull() { method andAmountEqualTo (line 1087) | public Criteria andAmountEqualTo(BigDecimal value) { method andAmountEqualToColumn (line 1098) | public Criteria andAmountEqualToColumn(LitemallAftersale.Column colu... method andAmountNotEqualTo (line 1103) | public Criteria andAmountNotEqualTo(BigDecimal value) { method andAmountNotEqualToColumn (line 1114) | public Criteria andAmountNotEqualToColumn(LitemallAftersale.Column c... method andAmountGreaterThan (line 1119) | public Criteria andAmountGreaterThan(BigDecimal value) { method andAmountGreaterThanColumn (line 1130) | public Criteria andAmountGreaterThanColumn(LitemallAftersale.Column ... method andAmountGreaterThanOrEqualTo (line 1135) | public Criteria andAmountGreaterThanOrEqualTo(BigDecimal value) { method andAmountGreaterThanOrEqualToColumn (line 1146) | public Criteria andAmountGreaterThanOrEqualToColumn(LitemallAftersal... method andAmountLessThan (line 1151) | public Criteria andAmountLessThan(BigDecimal value) { method andAmountLessThanColumn (line 1162) | public Criteria andAmountLessThanColumn(LitemallAftersale.Column col... method andAmountLessThanOrEqualTo (line 1167) | public Criteria andAmountLessThanOrEqualTo(BigDecimal value) { method andAmountLessThanOrEqualToColumn (line 1178) | public Criteria andAmountLessThanOrEqualToColumn(LitemallAftersale.C... method andAmountIn (line 1183) | public Criteria andAmountIn(List values) { method andAmountNotIn (line 1188) | public Criteria andAmountNotIn(List values) { method andAmountBetween (line 1193) | public Criteria andAmountBetween(BigDecimal value1, BigDecimal value... method andAmountNotBetween (line 1198) | public Criteria andAmountNotBetween(BigDecimal value1, BigDecimal va... method andPicturesIsNull (line 1203) | public Criteria andPicturesIsNull() { method andPicturesIsNotNull (line 1208) | public Criteria andPicturesIsNotNull() { method andPicturesEqualTo (line 1213) | public Criteria andPicturesEqualTo(String[] value) { method andPicturesEqualToColumn (line 1224) | public Criteria andPicturesEqualToColumn(LitemallAftersale.Column co... method andPicturesNotEqualTo (line 1229) | public Criteria andPicturesNotEqualTo(String[] value) { method andPicturesNotEqualToColumn (line 1240) | public Criteria andPicturesNotEqualToColumn(LitemallAftersale.Column... method andPicturesGreaterThan (line 1245) | public Criteria andPicturesGreaterThan(String[] value) { method andPicturesGreaterThanColumn (line 1256) | public Criteria andPicturesGreaterThanColumn(LitemallAftersale.Colum... method andPicturesGreaterThanOrEqualTo (line 1261) | public Criteria andPicturesGreaterThanOrEqualTo(String[] value) { method andPicturesGreaterThanOrEqualToColumn (line 1272) | public Criteria andPicturesGreaterThanOrEqualToColumn(LitemallAfters... method andPicturesLessThan (line 1277) | public Criteria andPicturesLessThan(String[] value) { method andPicturesLessThanColumn (line 1288) | public Criteria andPicturesLessThanColumn(LitemallAftersale.Column c... method andPicturesLessThanOrEqualTo (line 1293) | public Criteria andPicturesLessThanOrEqualTo(String[] value) { method andPicturesLessThanOrEqualToColumn (line 1304) | public Criteria andPicturesLessThanOrEqualToColumn(LitemallAftersale... method andPicturesLike (line 1309) | public Criteria andPicturesLike(String[] value) { method andPicturesNotLike (line 1314) | public Criteria andPicturesNotLike(String[] value) { method andPicturesIn (line 1319) | public Criteria andPicturesIn(List values) { method andPicturesNotIn (line 1324) | public Criteria andPicturesNotIn(List values) { method andPicturesBetween (line 1329) | public Criteria andPicturesBetween(String[] value1, String[] value2) { method andPicturesNotBetween (line 1334) | public Criteria andPicturesNotBetween(String[] value1, String[] valu... method andCommentIsNull (line 1339) | public Criteria andCommentIsNull() { method andCommentIsNotNull (line 1344) | public Criteria andCommentIsNotNull() { method andCommentEqualTo (line 1349) | public Criteria andCommentEqualTo(String value) { method andCommentEqualToColumn (line 1360) | public Criteria andCommentEqualToColumn(LitemallAftersale.Column col... method andCommentNotEqualTo (line 1365) | public Criteria andCommentNotEqualTo(String value) { method andCommentNotEqualToColumn (line 1376) | public Criteria andCommentNotEqualToColumn(LitemallAftersale.Column ... method andCommentGreaterThan (line 1381) | public Criteria andCommentGreaterThan(String value) { method andCommentGreaterThanColumn (line 1392) | public Criteria andCommentGreaterThanColumn(LitemallAftersale.Column... method andCommentGreaterThanOrEqualTo (line 1397) | public Criteria andCommentGreaterThanOrEqualTo(String value) { method andCommentGreaterThanOrEqualToColumn (line 1408) | public Criteria andCommentGreaterThanOrEqualToColumn(LitemallAftersa... method andCommentLessThan (line 1413) | public Criteria andCommentLessThan(String value) { method andCommentLessThanColumn (line 1424) | public Criteria andCommentLessThanColumn(LitemallAftersale.Column co... method andCommentLessThanOrEqualTo (line 1429) | public Criteria andCommentLessThanOrEqualTo(String value) { method andCommentLessThanOrEqualToColumn (line 1440) | public Criteria andCommentLessThanOrEqualToColumn(LitemallAftersale.... method andCommentLike (line 1445) | public Criteria andCommentLike(String value) { method andCommentNotLike (line 1450) | public Criteria andCommentNotLike(String value) { method andCommentIn (line 1455) | public Criteria andCommentIn(List values) { method andCommentNotIn (line 1460) | public Criteria andCommentNotIn(List values) { method andCommentBetween (line 1465) | public Criteria andCommentBetween(String value1, String value2) { method andCommentNotBetween (line 1470) | public Criteria andCommentNotBetween(String value1, String value2) { method andStatusIsNull (line 1475) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 1480) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 1485) | public Criteria andStatusEqualTo(Short value) { method andStatusEqualToColumn (line 1496) | public Criteria andStatusEqualToColumn(LitemallAftersale.Column colu... method andStatusNotEqualTo (line 1501) | public Criteria andStatusNotEqualTo(Short value) { method andStatusNotEqualToColumn (line 1512) | public Criteria andStatusNotEqualToColumn(LitemallAftersale.Column c... method andStatusGreaterThan (line 1517) | public Criteria andStatusGreaterThan(Short value) { method andStatusGreaterThanColumn (line 1528) | public Criteria andStatusGreaterThanColumn(LitemallAftersale.Column ... method andStatusGreaterThanOrEqualTo (line 1533) | public Criteria andStatusGreaterThanOrEqualTo(Short value) { method andStatusGreaterThanOrEqualToColumn (line 1544) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallAftersal... method andStatusLessThan (line 1549) | public Criteria andStatusLessThan(Short value) { method andStatusLessThanColumn (line 1560) | public Criteria andStatusLessThanColumn(LitemallAftersale.Column col... method andStatusLessThanOrEqualTo (line 1565) | public Criteria andStatusLessThanOrEqualTo(Short value) { method andStatusLessThanOrEqualToColumn (line 1576) | public Criteria andStatusLessThanOrEqualToColumn(LitemallAftersale.C... method andStatusIn (line 1581) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 1586) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 1591) | public Criteria andStatusBetween(Short value1, Short value2) { method andStatusNotBetween (line 1596) | public Criteria andStatusNotBetween(Short value1, Short value2) { method andHandleTimeIsNull (line 1601) | public Criteria andHandleTimeIsNull() { method andHandleTimeIsNotNull (line 1606) | public Criteria andHandleTimeIsNotNull() { method andHandleTimeEqualTo (line 1611) | public Criteria andHandleTimeEqualTo(LocalDateTime value) { method andHandleTimeEqualToColumn (line 1622) | public Criteria andHandleTimeEqualToColumn(LitemallAftersale.Column ... method andHandleTimeNotEqualTo (line 1627) | public Criteria andHandleTimeNotEqualTo(LocalDateTime value) { method andHandleTimeNotEqualToColumn (line 1638) | public Criteria andHandleTimeNotEqualToColumn(LitemallAftersale.Colu... method andHandleTimeGreaterThan (line 1643) | public Criteria andHandleTimeGreaterThan(LocalDateTime value) { method andHandleTimeGreaterThanColumn (line 1654) | public Criteria andHandleTimeGreaterThanColumn(LitemallAftersale.Col... method andHandleTimeGreaterThanOrEqualTo (line 1659) | public Criteria andHandleTimeGreaterThanOrEqualTo(LocalDateTime valu... method andHandleTimeGreaterThanOrEqualToColumn (line 1670) | public Criteria andHandleTimeGreaterThanOrEqualToColumn(LitemallAfte... method andHandleTimeLessThan (line 1675) | public Criteria andHandleTimeLessThan(LocalDateTime value) { method andHandleTimeLessThanColumn (line 1686) | public Criteria andHandleTimeLessThanColumn(LitemallAftersale.Column... method andHandleTimeLessThanOrEqualTo (line 1691) | public Criteria andHandleTimeLessThanOrEqualTo(LocalDateTime value) { method andHandleTimeLessThanOrEqualToColumn (line 1702) | public Criteria andHandleTimeLessThanOrEqualToColumn(LitemallAftersa... method andHandleTimeIn (line 1707) | public Criteria andHandleTimeIn(List values) { method andHandleTimeNotIn (line 1712) | public Criteria andHandleTimeNotIn(List values) { method andHandleTimeBetween (line 1717) | public Criteria andHandleTimeBetween(LocalDateTime value1, LocalDate... method andHandleTimeNotBetween (line 1722) | public Criteria andHandleTimeNotBetween(LocalDateTime value1, LocalD... method andAddTimeIsNull (line 1727) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1732) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1737) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1748) | public Criteria andAddTimeEqualToColumn(LitemallAftersale.Column col... method andAddTimeNotEqualTo (line 1753) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1764) | public Criteria andAddTimeNotEqualToColumn(LitemallAftersale.Column ... method andAddTimeGreaterThan (line 1769) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1780) | public Criteria andAddTimeGreaterThanColumn(LitemallAftersale.Column... method andAddTimeGreaterThanOrEqualTo (line 1785) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1796) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallAftersa... method andAddTimeLessThan (line 1801) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1812) | public Criteria andAddTimeLessThanColumn(LitemallAftersale.Column co... method andAddTimeLessThanOrEqualTo (line 1817) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1828) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallAftersale.... method andAddTimeIn (line 1833) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1838) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1843) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1848) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1853) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1858) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1863) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1874) | public Criteria andUpdateTimeEqualToColumn(LitemallAftersale.Column ... method andUpdateTimeNotEqualTo (line 1879) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1890) | public Criteria andUpdateTimeNotEqualToColumn(LitemallAftersale.Colu... method andUpdateTimeGreaterThan (line 1895) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1906) | public Criteria andUpdateTimeGreaterThanColumn(LitemallAftersale.Col... method andUpdateTimeGreaterThanOrEqualTo (line 1911) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1922) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallAfte... method andUpdateTimeLessThan (line 1927) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1938) | public Criteria andUpdateTimeLessThanColumn(LitemallAftersale.Column... method andUpdateTimeLessThanOrEqualTo (line 1943) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1954) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallAftersa... method andUpdateTimeIn (line 1959) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1964) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1969) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1974) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1979) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1984) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1989) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 2000) | public Criteria andDeletedEqualToColumn(LitemallAftersale.Column col... method andDeletedNotEqualTo (line 2005) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 2016) | public Criteria andDeletedNotEqualToColumn(LitemallAftersale.Column ... method andDeletedGreaterThan (line 2021) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 2032) | public Criteria andDeletedGreaterThanColumn(LitemallAftersale.Column... method andDeletedGreaterThanOrEqualTo (line 2037) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 2048) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallAftersa... method andDeletedLessThan (line 2053) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 2064) | public Criteria andDeletedLessThanColumn(LitemallAftersale.Column co... method andDeletedLessThanOrEqualTo (line 2069) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 2080) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallAftersale.... method andDeletedIn (line 2085) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 2090) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 2095) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 2100) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 2112) | public static class Criteria extends GeneratedCriteria { method Criteria (line 2127) | protected Criteria(LitemallAftersaleExample example) { method example (line 2138) | public LitemallAftersaleExample example() { method andIf (line 2148) | @Deprecated method when (line 2162) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 2175) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 2190) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 2194) | @Deprecated method add (line 2202) | Criteria add(Criteria add); class Criterion (line 2212) | public static class Criterion { method getCondition (line 2229) | public String getCondition() { method getValue (line 2233) | public Object getValue() { method getSecondValue (line 2237) | public Object getSecondValue() { method isNoValue (line 2241) | public boolean isNoValue() { method isSingleValue (line 2245) | public boolean isSingleValue() { method isBetweenValue (line 2249) | public boolean isBetweenValue() { method isListValue (line 2253) | public boolean isListValue() { method getTypeHandler (line 2257) | public String getTypeHandler() { method Criterion (line 2261) | protected Criterion(String condition) { method Criterion (line 2268) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2280) | protected Criterion(String condition, Object value) { method Criterion (line 2284) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2293) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2298) | public interface ICriteriaWhen { method criteria (line 2305) | void criteria(Criteria criteria); type IExampleWhen (line 2308) | public interface IExampleWhen { method example (line 2315) | void example(org.linlinjava.litemall.db.domain.LitemallAftersaleExam... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallBrand.java class LitemallBrand (line 8) | public class LitemallBrand { method getId (line 114) | public Integer getId() { method setId (line 126) | public void setId(Integer id) { method getName (line 138) | public String getName() { method setName (line 150) | public void setName(String name) { method getDesc (line 162) | public String getDesc() { method setDesc (line 174) | public void setDesc(String desc) { method getPicUrl (line 186) | public String getPicUrl() { method setPicUrl (line 198) | public void setPicUrl(String picUrl) { method getSortOrder (line 210) | public Byte getSortOrder() { method setSortOrder (line 222) | public void setSortOrder(Byte sortOrder) { method getFloorPrice (line 234) | public BigDecimal getFloorPrice() { method setFloorPrice (line 246) | public void setFloorPrice(BigDecimal floorPrice) { method getAddTime (line 258) | public LocalDateTime getAddTime() { method setAddTime (line 270) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 282) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 294) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 304) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 316) | public Boolean getDeleted() { method setDeleted (line 328) | public void setDeleted(Boolean deleted) { method toString (line 338) | @Override method equals (line 365) | @Override method hashCode (line 394) | @Override type Deleted (line 416) | public enum Deleted { method Deleted (line 442) | Deleted(Boolean value, String name) { method getValue (line 453) | public Boolean getValue() { method value (line 463) | public Boolean value() { method getName (line 473) | public String getName() { type Column (line 484) | public enum Column { method value (line 549) | public String value() { method getValue (line 559) | public String getValue() { method getJavaProperty (line 569) | public String getJavaProperty() { method getJdbcType (line 579) | public String getJdbcType() { method Column (line 589) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 602) | public String desc() { method asc (line 612) | public String asc() { method excludes (line 622) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 636) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 650) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallBrandExample.java class LitemallBrandExample (line 8) | public class LitemallBrandExample { method LitemallBrandExample (line 39) | public LitemallBrandExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallBrandExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallBrandExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallBrandExample when(boolean condition, IExampleWhen then) { method when (line 211) | public LitemallBrandExample when(boolean condition, IExampleWhen then,... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 229) | protected GeneratedCriteria() { method isValid (line 234) | public boolean isValid() { method getAllCriteria (line 238) | public List getAllCriteria() { method getCriteria (line 242) | public List getCriteria() { method addCriterion (line 246) | protected void addCriterion(String condition) { method addCriterion (line 253) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 260) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 267) | public Criteria andIdIsNull() { method andIdIsNotNull (line 272) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 277) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 288) | public Criteria andIdEqualToColumn(LitemallBrand.Column column) { method andIdNotEqualTo (line 293) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 304) | public Criteria andIdNotEqualToColumn(LitemallBrand.Column column) { method andIdGreaterThan (line 309) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 320) | public Criteria andIdGreaterThanColumn(LitemallBrand.Column column) { method andIdGreaterThanOrEqualTo (line 325) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 336) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallBrand.Column... method andIdLessThan (line 341) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 352) | public Criteria andIdLessThanColumn(LitemallBrand.Column column) { method andIdLessThanOrEqualTo (line 357) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 368) | public Criteria andIdLessThanOrEqualToColumn(LitemallBrand.Column co... method andIdIn (line 373) | public Criteria andIdIn(List values) { method andIdNotIn (line 378) | public Criteria andIdNotIn(List values) { method andIdBetween (line 383) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 388) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 393) | public Criteria andNameIsNull() { method andNameIsNotNull (line 398) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 403) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 414) | public Criteria andNameEqualToColumn(LitemallBrand.Column column) { method andNameNotEqualTo (line 419) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 430) | public Criteria andNameNotEqualToColumn(LitemallBrand.Column column) { method andNameGreaterThan (line 435) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 446) | public Criteria andNameGreaterThanColumn(LitemallBrand.Column column) { method andNameGreaterThanOrEqualTo (line 451) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 462) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallBrand.Colu... method andNameLessThan (line 467) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 478) | public Criteria andNameLessThanColumn(LitemallBrand.Column column) { method andNameLessThanOrEqualTo (line 483) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 494) | public Criteria andNameLessThanOrEqualToColumn(LitemallBrand.Column ... method andNameLike (line 499) | public Criteria andNameLike(String value) { method andNameNotLike (line 504) | public Criteria andNameNotLike(String value) { method andNameIn (line 509) | public Criteria andNameIn(List values) { method andNameNotIn (line 514) | public Criteria andNameNotIn(List values) { method andNameBetween (line 519) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 524) | public Criteria andNameNotBetween(String value1, String value2) { method andDescIsNull (line 529) | public Criteria andDescIsNull() { method andDescIsNotNull (line 534) | public Criteria andDescIsNotNull() { method andDescEqualTo (line 539) | public Criteria andDescEqualTo(String value) { method andDescEqualToColumn (line 550) | public Criteria andDescEqualToColumn(LitemallBrand.Column column) { method andDescNotEqualTo (line 555) | public Criteria andDescNotEqualTo(String value) { method andDescNotEqualToColumn (line 566) | public Criteria andDescNotEqualToColumn(LitemallBrand.Column column) { method andDescGreaterThan (line 571) | public Criteria andDescGreaterThan(String value) { method andDescGreaterThanColumn (line 582) | public Criteria andDescGreaterThanColumn(LitemallBrand.Column column) { method andDescGreaterThanOrEqualTo (line 587) | public Criteria andDescGreaterThanOrEqualTo(String value) { method andDescGreaterThanOrEqualToColumn (line 598) | public Criteria andDescGreaterThanOrEqualToColumn(LitemallBrand.Colu... method andDescLessThan (line 603) | public Criteria andDescLessThan(String value) { method andDescLessThanColumn (line 614) | public Criteria andDescLessThanColumn(LitemallBrand.Column column) { method andDescLessThanOrEqualTo (line 619) | public Criteria andDescLessThanOrEqualTo(String value) { method andDescLessThanOrEqualToColumn (line 630) | public Criteria andDescLessThanOrEqualToColumn(LitemallBrand.Column ... method andDescLike (line 635) | public Criteria andDescLike(String value) { method andDescNotLike (line 640) | public Criteria andDescNotLike(String value) { method andDescIn (line 645) | public Criteria andDescIn(List values) { method andDescNotIn (line 650) | public Criteria andDescNotIn(List values) { method andDescBetween (line 655) | public Criteria andDescBetween(String value1, String value2) { method andDescNotBetween (line 660) | public Criteria andDescNotBetween(String value1, String value2) { method andPicUrlIsNull (line 665) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 670) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 675) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 686) | public Criteria andPicUrlEqualToColumn(LitemallBrand.Column column) { method andPicUrlNotEqualTo (line 691) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 702) | public Criteria andPicUrlNotEqualToColumn(LitemallBrand.Column colum... method andPicUrlGreaterThan (line 707) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 718) | public Criteria andPicUrlGreaterThanColumn(LitemallBrand.Column colu... method andPicUrlGreaterThanOrEqualTo (line 723) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 734) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallBrand.Co... method andPicUrlLessThan (line 739) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 750) | public Criteria andPicUrlLessThanColumn(LitemallBrand.Column column) { method andPicUrlLessThanOrEqualTo (line 755) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 766) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallBrand.Colum... method andPicUrlLike (line 771) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 776) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 781) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 786) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 791) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 796) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andSortOrderIsNull (line 801) | public Criteria andSortOrderIsNull() { method andSortOrderIsNotNull (line 806) | public Criteria andSortOrderIsNotNull() { method andSortOrderEqualTo (line 811) | public Criteria andSortOrderEqualTo(Byte value) { method andSortOrderEqualToColumn (line 822) | public Criteria andSortOrderEqualToColumn(LitemallBrand.Column colum... method andSortOrderNotEqualTo (line 827) | public Criteria andSortOrderNotEqualTo(Byte value) { method andSortOrderNotEqualToColumn (line 838) | public Criteria andSortOrderNotEqualToColumn(LitemallBrand.Column co... method andSortOrderGreaterThan (line 843) | public Criteria andSortOrderGreaterThan(Byte value) { method andSortOrderGreaterThanColumn (line 854) | public Criteria andSortOrderGreaterThanColumn(LitemallBrand.Column c... method andSortOrderGreaterThanOrEqualTo (line 859) | public Criteria andSortOrderGreaterThanOrEqualTo(Byte value) { method andSortOrderGreaterThanOrEqualToColumn (line 870) | public Criteria andSortOrderGreaterThanOrEqualToColumn(LitemallBrand... method andSortOrderLessThan (line 875) | public Criteria andSortOrderLessThan(Byte value) { method andSortOrderLessThanColumn (line 886) | public Criteria andSortOrderLessThanColumn(LitemallBrand.Column colu... method andSortOrderLessThanOrEqualTo (line 891) | public Criteria andSortOrderLessThanOrEqualTo(Byte value) { method andSortOrderLessThanOrEqualToColumn (line 902) | public Criteria andSortOrderLessThanOrEqualToColumn(LitemallBrand.Co... method andSortOrderIn (line 907) | public Criteria andSortOrderIn(List values) { method andSortOrderNotIn (line 912) | public Criteria andSortOrderNotIn(List values) { method andSortOrderBetween (line 917) | public Criteria andSortOrderBetween(Byte value1, Byte value2) { method andSortOrderNotBetween (line 922) | public Criteria andSortOrderNotBetween(Byte value1, Byte value2) { method andFloorPriceIsNull (line 927) | public Criteria andFloorPriceIsNull() { method andFloorPriceIsNotNull (line 932) | public Criteria andFloorPriceIsNotNull() { method andFloorPriceEqualTo (line 937) | public Criteria andFloorPriceEqualTo(BigDecimal value) { method andFloorPriceEqualToColumn (line 948) | public Criteria andFloorPriceEqualToColumn(LitemallBrand.Column colu... method andFloorPriceNotEqualTo (line 953) | public Criteria andFloorPriceNotEqualTo(BigDecimal value) { method andFloorPriceNotEqualToColumn (line 964) | public Criteria andFloorPriceNotEqualToColumn(LitemallBrand.Column c... method andFloorPriceGreaterThan (line 969) | public Criteria andFloorPriceGreaterThan(BigDecimal value) { method andFloorPriceGreaterThanColumn (line 980) | public Criteria andFloorPriceGreaterThanColumn(LitemallBrand.Column ... method andFloorPriceGreaterThanOrEqualTo (line 985) | public Criteria andFloorPriceGreaterThanOrEqualTo(BigDecimal value) { method andFloorPriceGreaterThanOrEqualToColumn (line 996) | public Criteria andFloorPriceGreaterThanOrEqualToColumn(LitemallBran... method andFloorPriceLessThan (line 1001) | public Criteria andFloorPriceLessThan(BigDecimal value) { method andFloorPriceLessThanColumn (line 1012) | public Criteria andFloorPriceLessThanColumn(LitemallBrand.Column col... method andFloorPriceLessThanOrEqualTo (line 1017) | public Criteria andFloorPriceLessThanOrEqualTo(BigDecimal value) { method andFloorPriceLessThanOrEqualToColumn (line 1028) | public Criteria andFloorPriceLessThanOrEqualToColumn(LitemallBrand.C... method andFloorPriceIn (line 1033) | public Criteria andFloorPriceIn(List values) { method andFloorPriceNotIn (line 1038) | public Criteria andFloorPriceNotIn(List values) { method andFloorPriceBetween (line 1043) | public Criteria andFloorPriceBetween(BigDecimal value1, BigDecimal v... method andFloorPriceNotBetween (line 1048) | public Criteria andFloorPriceNotBetween(BigDecimal value1, BigDecima... method andAddTimeIsNull (line 1053) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1058) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1063) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1074) | public Criteria andAddTimeEqualToColumn(LitemallBrand.Column column) { method andAddTimeNotEqualTo (line 1079) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1090) | public Criteria andAddTimeNotEqualToColumn(LitemallBrand.Column colu... method andAddTimeGreaterThan (line 1095) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1106) | public Criteria andAddTimeGreaterThanColumn(LitemallBrand.Column col... method andAddTimeGreaterThanOrEqualTo (line 1111) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1122) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallBrand.C... method andAddTimeLessThan (line 1127) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1138) | public Criteria andAddTimeLessThanColumn(LitemallBrand.Column column) { method andAddTimeLessThanOrEqualTo (line 1143) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1154) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallBrand.Colu... method andAddTimeIn (line 1159) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1164) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1169) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1174) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1179) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1184) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1189) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1200) | public Criteria andUpdateTimeEqualToColumn(LitemallBrand.Column colu... method andUpdateTimeNotEqualTo (line 1205) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1216) | public Criteria andUpdateTimeNotEqualToColumn(LitemallBrand.Column c... method andUpdateTimeGreaterThan (line 1221) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1232) | public Criteria andUpdateTimeGreaterThanColumn(LitemallBrand.Column ... method andUpdateTimeGreaterThanOrEqualTo (line 1237) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1248) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallBran... method andUpdateTimeLessThan (line 1253) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1264) | public Criteria andUpdateTimeLessThanColumn(LitemallBrand.Column col... method andUpdateTimeLessThanOrEqualTo (line 1269) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1280) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallBrand.C... method andUpdateTimeIn (line 1285) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1290) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1295) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1300) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1305) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1310) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1315) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1326) | public Criteria andDeletedEqualToColumn(LitemallBrand.Column column) { method andDeletedNotEqualTo (line 1331) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1342) | public Criteria andDeletedNotEqualToColumn(LitemallBrand.Column colu... method andDeletedGreaterThan (line 1347) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1358) | public Criteria andDeletedGreaterThanColumn(LitemallBrand.Column col... method andDeletedGreaterThanOrEqualTo (line 1363) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1374) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallBrand.C... method andDeletedLessThan (line 1379) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1390) | public Criteria andDeletedLessThanColumn(LitemallBrand.Column column) { method andDeletedLessThanOrEqualTo (line 1395) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1406) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallBrand.Colu... method andDeletedIn (line 1411) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1416) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1421) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1426) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1438) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1453) | protected Criteria(LitemallBrandExample example) { method example (line 1464) | public LitemallBrandExample example() { method andIf (line 1474) | @Deprecated method when (line 1488) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1501) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1516) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1520) | @Deprecated method add (line 1528) | Criteria add(Criteria add); class Criterion (line 1538) | public static class Criterion { method getCondition (line 1555) | public String getCondition() { method getValue (line 1559) | public Object getValue() { method getSecondValue (line 1563) | public Object getSecondValue() { method isNoValue (line 1567) | public boolean isNoValue() { method isSingleValue (line 1571) | public boolean isSingleValue() { method isBetweenValue (line 1575) | public boolean isBetweenValue() { method isListValue (line 1579) | public boolean isListValue() { method getTypeHandler (line 1583) | public String getTypeHandler() { method Criterion (line 1587) | protected Criterion(String condition) { method Criterion (line 1594) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1606) | protected Criterion(String condition, Object value) { method Criterion (line 1610) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1619) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1624) | public interface ICriteriaWhen { method criteria (line 1631) | void criteria(Criteria criteria); type IExampleWhen (line 1634) | public interface IExampleWhen { method example (line 1641) | void example(org.linlinjava.litemall.db.domain.LitemallBrandExample ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCart.java class LitemallCart (line 8) | public class LitemallCart { method getId (line 159) | public Integer getId() { method setId (line 171) | public void setId(Integer id) { method getUserId (line 183) | public Integer getUserId() { method setUserId (line 195) | public void setUserId(Integer userId) { method getGoodsId (line 207) | public Integer getGoodsId() { method setGoodsId (line 219) | public void setGoodsId(Integer goodsId) { method getGoodsSn (line 231) | public String getGoodsSn() { method setGoodsSn (line 243) | public void setGoodsSn(String goodsSn) { method getGoodsName (line 255) | public String getGoodsName() { method setGoodsName (line 267) | public void setGoodsName(String goodsName) { method getProductId (line 279) | public Integer getProductId() { method setProductId (line 291) | public void setProductId(Integer productId) { method getPrice (line 303) | public BigDecimal getPrice() { method setPrice (line 315) | public void setPrice(BigDecimal price) { method getNumber (line 327) | public Short getNumber() { method setNumber (line 339) | public void setNumber(Short number) { method getSpecifications (line 351) | public String[] getSpecifications() { method setSpecifications (line 363) | public void setSpecifications(String[] specifications) { method getChecked (line 375) | public Boolean getChecked() { method setChecked (line 387) | public void setChecked(Boolean checked) { method getPicUrl (line 399) | public String getPicUrl() { method setPicUrl (line 411) | public void setPicUrl(String picUrl) { method getAddTime (line 423) | public LocalDateTime getAddTime() { method setAddTime (line 435) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 447) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 459) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 469) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 481) | public Boolean getDeleted() { method setDeleted (line 493) | public void setDeleted(Boolean deleted) { method toString (line 503) | @Override method equals (line 535) | @Override method hashCode (line 569) | @Override type Deleted (line 596) | public enum Deleted { method Deleted (line 622) | Deleted(Boolean value, String name) { method getValue (line 633) | public Boolean getValue() { method value (line 643) | public Boolean value() { method getName (line 653) | public String getName() { type Column (line 664) | public enum Column { method value (line 734) | public String value() { method getValue (line 744) | public String getValue() { method getJavaProperty (line 754) | public String getJavaProperty() { method getJdbcType (line 764) | public String getJdbcType() { method Column (line 774) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 787) | public String desc() { method asc (line 797) | public String asc() { method excludes (line 807) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 821) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 835) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCartExample.java class LitemallCartExample (line 8) | public class LitemallCartExample { method LitemallCartExample (line 39) | public LitemallCartExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallCartExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallCartExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallCartExample when(boolean condition, IExampleWhen then) { method when (line 211) | public LitemallCartExample when(boolean condition, IExampleWhen then, ... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 233) | protected GeneratedCriteria() { method getSpecificationsCriteria (line 239) | public List getSpecificationsCriteria() { method addSpecificationsCriterion (line 243) | protected void addSpecificationsCriterion(String condition, Object v... method addSpecificationsCriterion (line 251) | protected void addSpecificationsCriterion(String condition, String[]... method isValid (line 259) | public boolean isValid() { method getAllCriteria (line 264) | public List getAllCriteria() { method getCriteria (line 273) | public List getCriteria() { method addCriterion (line 277) | protected void addCriterion(String condition) { method addCriterion (line 285) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 293) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 301) | public Criteria andIdIsNull() { method andIdIsNotNull (line 306) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 311) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 322) | public Criteria andIdEqualToColumn(LitemallCart.Column column) { method andIdNotEqualTo (line 327) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 338) | public Criteria andIdNotEqualToColumn(LitemallCart.Column column) { method andIdGreaterThan (line 343) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 354) | public Criteria andIdGreaterThanColumn(LitemallCart.Column column) { method andIdGreaterThanOrEqualTo (line 359) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 370) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallCart.Column ... method andIdLessThan (line 375) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 386) | public Criteria andIdLessThanColumn(LitemallCart.Column column) { method andIdLessThanOrEqualTo (line 391) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 402) | public Criteria andIdLessThanOrEqualToColumn(LitemallCart.Column col... method andIdIn (line 407) | public Criteria andIdIn(List values) { method andIdNotIn (line 412) | public Criteria andIdNotIn(List values) { method andIdBetween (line 417) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 422) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 427) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 432) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 437) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 448) | public Criteria andUserIdEqualToColumn(LitemallCart.Column column) { method andUserIdNotEqualTo (line 453) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 464) | public Criteria andUserIdNotEqualToColumn(LitemallCart.Column column) { method andUserIdGreaterThan (line 469) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 480) | public Criteria andUserIdGreaterThanColumn(LitemallCart.Column colum... method andUserIdGreaterThanOrEqualTo (line 485) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 496) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallCart.Col... method andUserIdLessThan (line 501) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 512) | public Criteria andUserIdLessThanColumn(LitemallCart.Column column) { method andUserIdLessThanOrEqualTo (line 517) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 528) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallCart.Column... method andUserIdIn (line 533) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 538) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 543) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 548) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andGoodsIdIsNull (line 553) | public Criteria andGoodsIdIsNull() { method andGoodsIdIsNotNull (line 558) | public Criteria andGoodsIdIsNotNull() { method andGoodsIdEqualTo (line 563) | public Criteria andGoodsIdEqualTo(Integer value) { method andGoodsIdEqualToColumn (line 574) | public Criteria andGoodsIdEqualToColumn(LitemallCart.Column column) { method andGoodsIdNotEqualTo (line 579) | public Criteria andGoodsIdNotEqualTo(Integer value) { method andGoodsIdNotEqualToColumn (line 590) | public Criteria andGoodsIdNotEqualToColumn(LitemallCart.Column colum... method andGoodsIdGreaterThan (line 595) | public Criteria andGoodsIdGreaterThan(Integer value) { method andGoodsIdGreaterThanColumn (line 606) | public Criteria andGoodsIdGreaterThanColumn(LitemallCart.Column colu... method andGoodsIdGreaterThanOrEqualTo (line 611) | public Criteria andGoodsIdGreaterThanOrEqualTo(Integer value) { method andGoodsIdGreaterThanOrEqualToColumn (line 622) | public Criteria andGoodsIdGreaterThanOrEqualToColumn(LitemallCart.Co... method andGoodsIdLessThan (line 627) | public Criteria andGoodsIdLessThan(Integer value) { method andGoodsIdLessThanColumn (line 638) | public Criteria andGoodsIdLessThanColumn(LitemallCart.Column column) { method andGoodsIdLessThanOrEqualTo (line 643) | public Criteria andGoodsIdLessThanOrEqualTo(Integer value) { method andGoodsIdLessThanOrEqualToColumn (line 654) | public Criteria andGoodsIdLessThanOrEqualToColumn(LitemallCart.Colum... method andGoodsIdIn (line 659) | public Criteria andGoodsIdIn(List values) { method andGoodsIdNotIn (line 664) | public Criteria andGoodsIdNotIn(List values) { method andGoodsIdBetween (line 669) | public Criteria andGoodsIdBetween(Integer value1, Integer value2) { method andGoodsIdNotBetween (line 674) | public Criteria andGoodsIdNotBetween(Integer value1, Integer value2) { method andGoodsSnIsNull (line 679) | public Criteria andGoodsSnIsNull() { method andGoodsSnIsNotNull (line 684) | public Criteria andGoodsSnIsNotNull() { method andGoodsSnEqualTo (line 689) | public Criteria andGoodsSnEqualTo(String value) { method andGoodsSnEqualToColumn (line 700) | public Criteria andGoodsSnEqualToColumn(LitemallCart.Column column) { method andGoodsSnNotEqualTo (line 705) | public Criteria andGoodsSnNotEqualTo(String value) { method andGoodsSnNotEqualToColumn (line 716) | public Criteria andGoodsSnNotEqualToColumn(LitemallCart.Column colum... method andGoodsSnGreaterThan (line 721) | public Criteria andGoodsSnGreaterThan(String value) { method andGoodsSnGreaterThanColumn (line 732) | public Criteria andGoodsSnGreaterThanColumn(LitemallCart.Column colu... method andGoodsSnGreaterThanOrEqualTo (line 737) | public Criteria andGoodsSnGreaterThanOrEqualTo(String value) { method andGoodsSnGreaterThanOrEqualToColumn (line 748) | public Criteria andGoodsSnGreaterThanOrEqualToColumn(LitemallCart.Co... method andGoodsSnLessThan (line 753) | public Criteria andGoodsSnLessThan(String value) { method andGoodsSnLessThanColumn (line 764) | public Criteria andGoodsSnLessThanColumn(LitemallCart.Column column) { method andGoodsSnLessThanOrEqualTo (line 769) | public Criteria andGoodsSnLessThanOrEqualTo(String value) { method andGoodsSnLessThanOrEqualToColumn (line 780) | public Criteria andGoodsSnLessThanOrEqualToColumn(LitemallCart.Colum... method andGoodsSnLike (line 785) | public Criteria andGoodsSnLike(String value) { method andGoodsSnNotLike (line 790) | public Criteria andGoodsSnNotLike(String value) { method andGoodsSnIn (line 795) | public Criteria andGoodsSnIn(List values) { method andGoodsSnNotIn (line 800) | public Criteria andGoodsSnNotIn(List values) { method andGoodsSnBetween (line 805) | public Criteria andGoodsSnBetween(String value1, String value2) { method andGoodsSnNotBetween (line 810) | public Criteria andGoodsSnNotBetween(String value1, String value2) { method andGoodsNameIsNull (line 815) | public Criteria andGoodsNameIsNull() { method andGoodsNameIsNotNull (line 820) | public Criteria andGoodsNameIsNotNull() { method andGoodsNameEqualTo (line 825) | public Criteria andGoodsNameEqualTo(String value) { method andGoodsNameEqualToColumn (line 836) | public Criteria andGoodsNameEqualToColumn(LitemallCart.Column column) { method andGoodsNameNotEqualTo (line 841) | public Criteria andGoodsNameNotEqualTo(String value) { method andGoodsNameNotEqualToColumn (line 852) | public Criteria andGoodsNameNotEqualToColumn(LitemallCart.Column col... method andGoodsNameGreaterThan (line 857) | public Criteria andGoodsNameGreaterThan(String value) { method andGoodsNameGreaterThanColumn (line 868) | public Criteria andGoodsNameGreaterThanColumn(LitemallCart.Column co... method andGoodsNameGreaterThanOrEqualTo (line 873) | public Criteria andGoodsNameGreaterThanOrEqualTo(String value) { method andGoodsNameGreaterThanOrEqualToColumn (line 884) | public Criteria andGoodsNameGreaterThanOrEqualToColumn(LitemallCart.... method andGoodsNameLessThan (line 889) | public Criteria andGoodsNameLessThan(String value) { method andGoodsNameLessThanColumn (line 900) | public Criteria andGoodsNameLessThanColumn(LitemallCart.Column colum... method andGoodsNameLessThanOrEqualTo (line 905) | public Criteria andGoodsNameLessThanOrEqualTo(String value) { method andGoodsNameLessThanOrEqualToColumn (line 916) | public Criteria andGoodsNameLessThanOrEqualToColumn(LitemallCart.Col... method andGoodsNameLike (line 921) | public Criteria andGoodsNameLike(String value) { method andGoodsNameNotLike (line 926) | public Criteria andGoodsNameNotLike(String value) { method andGoodsNameIn (line 931) | public Criteria andGoodsNameIn(List values) { method andGoodsNameNotIn (line 936) | public Criteria andGoodsNameNotIn(List values) { method andGoodsNameBetween (line 941) | public Criteria andGoodsNameBetween(String value1, String value2) { method andGoodsNameNotBetween (line 946) | public Criteria andGoodsNameNotBetween(String value1, String value2) { method andProductIdIsNull (line 951) | public Criteria andProductIdIsNull() { method andProductIdIsNotNull (line 956) | public Criteria andProductIdIsNotNull() { method andProductIdEqualTo (line 961) | public Criteria andProductIdEqualTo(Integer value) { method andProductIdEqualToColumn (line 972) | public Criteria andProductIdEqualToColumn(LitemallCart.Column column) { method andProductIdNotEqualTo (line 977) | public Criteria andProductIdNotEqualTo(Integer value) { method andProductIdNotEqualToColumn (line 988) | public Criteria andProductIdNotEqualToColumn(LitemallCart.Column col... method andProductIdGreaterThan (line 993) | public Criteria andProductIdGreaterThan(Integer value) { method andProductIdGreaterThanColumn (line 1004) | public Criteria andProductIdGreaterThanColumn(LitemallCart.Column co... method andProductIdGreaterThanOrEqualTo (line 1009) | public Criteria andProductIdGreaterThanOrEqualTo(Integer value) { method andProductIdGreaterThanOrEqualToColumn (line 1020) | public Criteria andProductIdGreaterThanOrEqualToColumn(LitemallCart.... method andProductIdLessThan (line 1025) | public Criteria andProductIdLessThan(Integer value) { method andProductIdLessThanColumn (line 1036) | public Criteria andProductIdLessThanColumn(LitemallCart.Column colum... method andProductIdLessThanOrEqualTo (line 1041) | public Criteria andProductIdLessThanOrEqualTo(Integer value) { method andProductIdLessThanOrEqualToColumn (line 1052) | public Criteria andProductIdLessThanOrEqualToColumn(LitemallCart.Col... method andProductIdIn (line 1057) | public Criteria andProductIdIn(List values) { method andProductIdNotIn (line 1062) | public Criteria andProductIdNotIn(List values) { method andProductIdBetween (line 1067) | public Criteria andProductIdBetween(Integer value1, Integer value2) { method andProductIdNotBetween (line 1072) | public Criteria andProductIdNotBetween(Integer value1, Integer value... method andPriceIsNull (line 1077) | public Criteria andPriceIsNull() { method andPriceIsNotNull (line 1082) | public Criteria andPriceIsNotNull() { method andPriceEqualTo (line 1087) | public Criteria andPriceEqualTo(BigDecimal value) { method andPriceEqualToColumn (line 1098) | public Criteria andPriceEqualToColumn(LitemallCart.Column column) { method andPriceNotEqualTo (line 1103) | public Criteria andPriceNotEqualTo(BigDecimal value) { method andPriceNotEqualToColumn (line 1114) | public Criteria andPriceNotEqualToColumn(LitemallCart.Column column) { method andPriceGreaterThan (line 1119) | public Criteria andPriceGreaterThan(BigDecimal value) { method andPriceGreaterThanColumn (line 1130) | public Criteria andPriceGreaterThanColumn(LitemallCart.Column column) { method andPriceGreaterThanOrEqualTo (line 1135) | public Criteria andPriceGreaterThanOrEqualTo(BigDecimal value) { method andPriceGreaterThanOrEqualToColumn (line 1146) | public Criteria andPriceGreaterThanOrEqualToColumn(LitemallCart.Colu... method andPriceLessThan (line 1151) | public Criteria andPriceLessThan(BigDecimal value) { method andPriceLessThanColumn (line 1162) | public Criteria andPriceLessThanColumn(LitemallCart.Column column) { method andPriceLessThanOrEqualTo (line 1167) | public Criteria andPriceLessThanOrEqualTo(BigDecimal value) { method andPriceLessThanOrEqualToColumn (line 1178) | public Criteria andPriceLessThanOrEqualToColumn(LitemallCart.Column ... method andPriceIn (line 1183) | public Criteria andPriceIn(List values) { method andPriceNotIn (line 1188) | public Criteria andPriceNotIn(List values) { method andPriceBetween (line 1193) | public Criteria andPriceBetween(BigDecimal value1, BigDecimal value2) { method andPriceNotBetween (line 1198) | public Criteria andPriceNotBetween(BigDecimal value1, BigDecimal val... method andNumberIsNull (line 1203) | public Criteria andNumberIsNull() { method andNumberIsNotNull (line 1208) | public Criteria andNumberIsNotNull() { method andNumberEqualTo (line 1213) | public Criteria andNumberEqualTo(Short value) { method andNumberEqualToColumn (line 1224) | public Criteria andNumberEqualToColumn(LitemallCart.Column column) { method andNumberNotEqualTo (line 1229) | public Criteria andNumberNotEqualTo(Short value) { method andNumberNotEqualToColumn (line 1240) | public Criteria andNumberNotEqualToColumn(LitemallCart.Column column) { method andNumberGreaterThan (line 1245) | public Criteria andNumberGreaterThan(Short value) { method andNumberGreaterThanColumn (line 1256) | public Criteria andNumberGreaterThanColumn(LitemallCart.Column colum... method andNumberGreaterThanOrEqualTo (line 1261) | public Criteria andNumberGreaterThanOrEqualTo(Short value) { method andNumberGreaterThanOrEqualToColumn (line 1272) | public Criteria andNumberGreaterThanOrEqualToColumn(LitemallCart.Col... method andNumberLessThan (line 1277) | public Criteria andNumberLessThan(Short value) { method andNumberLessThanColumn (line 1288) | public Criteria andNumberLessThanColumn(LitemallCart.Column column) { method andNumberLessThanOrEqualTo (line 1293) | public Criteria andNumberLessThanOrEqualTo(Short value) { method andNumberLessThanOrEqualToColumn (line 1304) | public Criteria andNumberLessThanOrEqualToColumn(LitemallCart.Column... method andNumberIn (line 1309) | public Criteria andNumberIn(List values) { method andNumberNotIn (line 1314) | public Criteria andNumberNotIn(List values) { method andNumberBetween (line 1319) | public Criteria andNumberBetween(Short value1, Short value2) { method andNumberNotBetween (line 1324) | public Criteria andNumberNotBetween(Short value1, Short value2) { method andSpecificationsIsNull (line 1329) | public Criteria andSpecificationsIsNull() { method andSpecificationsIsNotNull (line 1334) | public Criteria andSpecificationsIsNotNull() { method andSpecificationsEqualTo (line 1339) | public Criteria andSpecificationsEqualTo(String[] value) { method andSpecificationsEqualToColumn (line 1350) | public Criteria andSpecificationsEqualToColumn(LitemallCart.Column c... method andSpecificationsNotEqualTo (line 1355) | public Criteria andSpecificationsNotEqualTo(String[] value) { method andSpecificationsNotEqualToColumn (line 1366) | public Criteria andSpecificationsNotEqualToColumn(LitemallCart.Colum... method andSpecificationsGreaterThan (line 1371) | public Criteria andSpecificationsGreaterThan(String[] value) { method andSpecificationsGreaterThanColumn (line 1382) | public Criteria andSpecificationsGreaterThanColumn(LitemallCart.Colu... method andSpecificationsGreaterThanOrEqualTo (line 1387) | public Criteria andSpecificationsGreaterThanOrEqualTo(String[] value) { method andSpecificationsGreaterThanOrEqualToColumn (line 1398) | public Criteria andSpecificationsGreaterThanOrEqualToColumn(Litemall... method andSpecificationsLessThan (line 1403) | public Criteria andSpecificationsLessThan(String[] value) { method andSpecificationsLessThanColumn (line 1414) | public Criteria andSpecificationsLessThanColumn(LitemallCart.Column ... method andSpecificationsLessThanOrEqualTo (line 1419) | public Criteria andSpecificationsLessThanOrEqualTo(String[] value) { method andSpecificationsLessThanOrEqualToColumn (line 1430) | public Criteria andSpecificationsLessThanOrEqualToColumn(LitemallCar... method andSpecificationsLike (line 1435) | public Criteria andSpecificationsLike(String[] value) { method andSpecificationsNotLike (line 1440) | public Criteria andSpecificationsNotLike(String[] value) { method andSpecificationsIn (line 1445) | public Criteria andSpecificationsIn(List values) { method andSpecificationsNotIn (line 1450) | public Criteria andSpecificationsNotIn(List values) { method andSpecificationsBetween (line 1455) | public Criteria andSpecificationsBetween(String[] value1, String[] v... method andSpecificationsNotBetween (line 1460) | public Criteria andSpecificationsNotBetween(String[] value1, String[... method andCheckedIsNull (line 1465) | public Criteria andCheckedIsNull() { method andCheckedIsNotNull (line 1470) | public Criteria andCheckedIsNotNull() { method andCheckedEqualTo (line 1475) | public Criteria andCheckedEqualTo(Boolean value) { method andCheckedEqualToColumn (line 1486) | public Criteria andCheckedEqualToColumn(LitemallCart.Column column) { method andCheckedNotEqualTo (line 1491) | public Criteria andCheckedNotEqualTo(Boolean value) { method andCheckedNotEqualToColumn (line 1502) | public Criteria andCheckedNotEqualToColumn(LitemallCart.Column colum... method andCheckedGreaterThan (line 1507) | public Criteria andCheckedGreaterThan(Boolean value) { method andCheckedGreaterThanColumn (line 1518) | public Criteria andCheckedGreaterThanColumn(LitemallCart.Column colu... method andCheckedGreaterThanOrEqualTo (line 1523) | public Criteria andCheckedGreaterThanOrEqualTo(Boolean value) { method andCheckedGreaterThanOrEqualToColumn (line 1534) | public Criteria andCheckedGreaterThanOrEqualToColumn(LitemallCart.Co... method andCheckedLessThan (line 1539) | public Criteria andCheckedLessThan(Boolean value) { method andCheckedLessThanColumn (line 1550) | public Criteria andCheckedLessThanColumn(LitemallCart.Column column) { method andCheckedLessThanOrEqualTo (line 1555) | public Criteria andCheckedLessThanOrEqualTo(Boolean value) { method andCheckedLessThanOrEqualToColumn (line 1566) | public Criteria andCheckedLessThanOrEqualToColumn(LitemallCart.Colum... method andCheckedIn (line 1571) | public Criteria andCheckedIn(List values) { method andCheckedNotIn (line 1576) | public Criteria andCheckedNotIn(List values) { method andCheckedBetween (line 1581) | public Criteria andCheckedBetween(Boolean value1, Boolean value2) { method andCheckedNotBetween (line 1586) | public Criteria andCheckedNotBetween(Boolean value1, Boolean value2) { method andPicUrlIsNull (line 1591) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 1596) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 1601) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 1612) | public Criteria andPicUrlEqualToColumn(LitemallCart.Column column) { method andPicUrlNotEqualTo (line 1617) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 1628) | public Criteria andPicUrlNotEqualToColumn(LitemallCart.Column column) { method andPicUrlGreaterThan (line 1633) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 1644) | public Criteria andPicUrlGreaterThanColumn(LitemallCart.Column colum... method andPicUrlGreaterThanOrEqualTo (line 1649) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 1660) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallCart.Col... method andPicUrlLessThan (line 1665) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 1676) | public Criteria andPicUrlLessThanColumn(LitemallCart.Column column) { method andPicUrlLessThanOrEqualTo (line 1681) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 1692) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallCart.Column... method andPicUrlLike (line 1697) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 1702) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 1707) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 1712) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 1717) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 1722) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andAddTimeIsNull (line 1727) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1732) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1737) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1748) | public Criteria andAddTimeEqualToColumn(LitemallCart.Column column) { method andAddTimeNotEqualTo (line 1753) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1764) | public Criteria andAddTimeNotEqualToColumn(LitemallCart.Column colum... method andAddTimeGreaterThan (line 1769) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1780) | public Criteria andAddTimeGreaterThanColumn(LitemallCart.Column colu... method andAddTimeGreaterThanOrEqualTo (line 1785) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1796) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallCart.Co... method andAddTimeLessThan (line 1801) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1812) | public Criteria andAddTimeLessThanColumn(LitemallCart.Column column) { method andAddTimeLessThanOrEqualTo (line 1817) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1828) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallCart.Colum... method andAddTimeIn (line 1833) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1838) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1843) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1848) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1853) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1858) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1863) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1874) | public Criteria andUpdateTimeEqualToColumn(LitemallCart.Column colum... method andUpdateTimeNotEqualTo (line 1879) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1890) | public Criteria andUpdateTimeNotEqualToColumn(LitemallCart.Column co... method andUpdateTimeGreaterThan (line 1895) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1906) | public Criteria andUpdateTimeGreaterThanColumn(LitemallCart.Column c... method andUpdateTimeGreaterThanOrEqualTo (line 1911) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1922) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallCart... method andUpdateTimeLessThan (line 1927) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1938) | public Criteria andUpdateTimeLessThanColumn(LitemallCart.Column colu... method andUpdateTimeLessThanOrEqualTo (line 1943) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1954) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallCart.Co... method andUpdateTimeIn (line 1959) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1964) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1969) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1974) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1979) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1984) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1989) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 2000) | public Criteria andDeletedEqualToColumn(LitemallCart.Column column) { method andDeletedNotEqualTo (line 2005) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 2016) | public Criteria andDeletedNotEqualToColumn(LitemallCart.Column colum... method andDeletedGreaterThan (line 2021) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 2032) | public Criteria andDeletedGreaterThanColumn(LitemallCart.Column colu... method andDeletedGreaterThanOrEqualTo (line 2037) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 2048) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallCart.Co... method andDeletedLessThan (line 2053) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 2064) | public Criteria andDeletedLessThanColumn(LitemallCart.Column column) { method andDeletedLessThanOrEqualTo (line 2069) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 2080) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallCart.Colum... method andDeletedIn (line 2085) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 2090) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 2095) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 2100) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 2112) | public static class Criteria extends GeneratedCriteria { method Criteria (line 2127) | protected Criteria(LitemallCartExample example) { method example (line 2138) | public LitemallCartExample example() { method andIf (line 2148) | @Deprecated method when (line 2162) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 2175) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 2190) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 2194) | @Deprecated method add (line 2202) | Criteria add(Criteria add); class Criterion (line 2212) | public static class Criterion { method getCondition (line 2229) | public String getCondition() { method getValue (line 2233) | public Object getValue() { method getSecondValue (line 2237) | public Object getSecondValue() { method isNoValue (line 2241) | public boolean isNoValue() { method isSingleValue (line 2245) | public boolean isSingleValue() { method isBetweenValue (line 2249) | public boolean isBetweenValue() { method isListValue (line 2253) | public boolean isListValue() { method getTypeHandler (line 2257) | public String getTypeHandler() { method Criterion (line 2261) | protected Criterion(String condition) { method Criterion (line 2268) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2280) | protected Criterion(String condition, Object value) { method Criterion (line 2284) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2293) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2298) | public interface ICriteriaWhen { method criteria (line 2305) | void criteria(Criteria criteria); type IExampleWhen (line 2308) | public interface IExampleWhen { method example (line 2315) | void example(org.linlinjava.litemall.db.domain.LitemallCartExample e... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCategory.java class LitemallCategory (line 7) | public class LitemallCategory { method getId (line 140) | public Integer getId() { method setId (line 152) | public void setId(Integer id) { method getName (line 164) | public String getName() { method setName (line 176) | public void setName(String name) { method getKeywords (line 188) | public String getKeywords() { method setKeywords (line 200) | public void setKeywords(String keywords) { method getDesc (line 212) | public String getDesc() { method setDesc (line 224) | public void setDesc(String desc) { method getPid (line 236) | public Integer getPid() { method setPid (line 248) | public void setPid(Integer pid) { method getIconUrl (line 260) | public String getIconUrl() { method setIconUrl (line 272) | public void setIconUrl(String iconUrl) { method getPicUrl (line 284) | public String getPicUrl() { method setPicUrl (line 296) | public void setPicUrl(String picUrl) { method getLevel (line 308) | public String getLevel() { method setLevel (line 320) | public void setLevel(String level) { method getSortOrder (line 332) | public Byte getSortOrder() { method setSortOrder (line 344) | public void setSortOrder(Byte sortOrder) { method getAddTime (line 356) | public LocalDateTime getAddTime() { method setAddTime (line 368) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 380) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 392) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 402) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 414) | public Boolean getDeleted() { method setDeleted (line 426) | public void setDeleted(Boolean deleted) { method toString (line 436) | @Override method equals (line 466) | @Override method hashCode (line 498) | @Override type Deleted (line 523) | public enum Deleted { method Deleted (line 549) | Deleted(Boolean value, String name) { method getValue (line 560) | public Boolean getValue() { method value (line 570) | public Boolean value() { method getName (line 580) | public String getName() { type Column (line 591) | public enum Column { method value (line 659) | public String value() { method getValue (line 669) | public String getValue() { method getJavaProperty (line 679) | public String getJavaProperty() { method getJdbcType (line 689) | public String getJdbcType() { method Column (line 699) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 712) | public String desc() { method asc (line 722) | public String asc() { method excludes (line 732) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 746) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 760) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCategoryExample.java class LitemallCategoryExample (line 7) | public class LitemallCategoryExample { method LitemallCategoryExample (line 38) | public LitemallCategoryExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallCategoryExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallCategoryExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallCategoryExample when(boolean condition, IExampleWhen th... method when (line 210) | public LitemallCategoryExample when(boolean condition, IExampleWhen th... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallCategory.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallCategory.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallCategory.Column colum... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallCategory.Col... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallCategory.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallCategory.Column... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 392) | public Criteria andNameIsNull() { method andNameIsNotNull (line 397) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 402) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 413) | public Criteria andNameEqualToColumn(LitemallCategory.Column column) { method andNameNotEqualTo (line 418) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 429) | public Criteria andNameNotEqualToColumn(LitemallCategory.Column colu... method andNameGreaterThan (line 434) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 445) | public Criteria andNameGreaterThanColumn(LitemallCategory.Column col... method andNameGreaterThanOrEqualTo (line 450) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 461) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallCategory.C... method andNameLessThan (line 466) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 477) | public Criteria andNameLessThanColumn(LitemallCategory.Column column) { method andNameLessThanOrEqualTo (line 482) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 493) | public Criteria andNameLessThanOrEqualToColumn(LitemallCategory.Colu... method andNameLike (line 498) | public Criteria andNameLike(String value) { method andNameNotLike (line 503) | public Criteria andNameNotLike(String value) { method andNameIn (line 508) | public Criteria andNameIn(List values) { method andNameNotIn (line 513) | public Criteria andNameNotIn(List values) { method andNameBetween (line 518) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 523) | public Criteria andNameNotBetween(String value1, String value2) { method andKeywordsIsNull (line 528) | public Criteria andKeywordsIsNull() { method andKeywordsIsNotNull (line 533) | public Criteria andKeywordsIsNotNull() { method andKeywordsEqualTo (line 538) | public Criteria andKeywordsEqualTo(String value) { method andKeywordsEqualToColumn (line 549) | public Criteria andKeywordsEqualToColumn(LitemallCategory.Column col... method andKeywordsNotEqualTo (line 554) | public Criteria andKeywordsNotEqualTo(String value) { method andKeywordsNotEqualToColumn (line 565) | public Criteria andKeywordsNotEqualToColumn(LitemallCategory.Column ... method andKeywordsGreaterThan (line 570) | public Criteria andKeywordsGreaterThan(String value) { method andKeywordsGreaterThanColumn (line 581) | public Criteria andKeywordsGreaterThanColumn(LitemallCategory.Column... method andKeywordsGreaterThanOrEqualTo (line 586) | public Criteria andKeywordsGreaterThanOrEqualTo(String value) { method andKeywordsGreaterThanOrEqualToColumn (line 597) | public Criteria andKeywordsGreaterThanOrEqualToColumn(LitemallCatego... method andKeywordsLessThan (line 602) | public Criteria andKeywordsLessThan(String value) { method andKeywordsLessThanColumn (line 613) | public Criteria andKeywordsLessThanColumn(LitemallCategory.Column co... method andKeywordsLessThanOrEqualTo (line 618) | public Criteria andKeywordsLessThanOrEqualTo(String value) { method andKeywordsLessThanOrEqualToColumn (line 629) | public Criteria andKeywordsLessThanOrEqualToColumn(LitemallCategory.... method andKeywordsLike (line 634) | public Criteria andKeywordsLike(String value) { method andKeywordsNotLike (line 639) | public Criteria andKeywordsNotLike(String value) { method andKeywordsIn (line 644) | public Criteria andKeywordsIn(List values) { method andKeywordsNotIn (line 649) | public Criteria andKeywordsNotIn(List values) { method andKeywordsBetween (line 654) | public Criteria andKeywordsBetween(String value1, String value2) { method andKeywordsNotBetween (line 659) | public Criteria andKeywordsNotBetween(String value1, String value2) { method andDescIsNull (line 664) | public Criteria andDescIsNull() { method andDescIsNotNull (line 669) | public Criteria andDescIsNotNull() { method andDescEqualTo (line 674) | public Criteria andDescEqualTo(String value) { method andDescEqualToColumn (line 685) | public Criteria andDescEqualToColumn(LitemallCategory.Column column) { method andDescNotEqualTo (line 690) | public Criteria andDescNotEqualTo(String value) { method andDescNotEqualToColumn (line 701) | public Criteria andDescNotEqualToColumn(LitemallCategory.Column colu... method andDescGreaterThan (line 706) | public Criteria andDescGreaterThan(String value) { method andDescGreaterThanColumn (line 717) | public Criteria andDescGreaterThanColumn(LitemallCategory.Column col... method andDescGreaterThanOrEqualTo (line 722) | public Criteria andDescGreaterThanOrEqualTo(String value) { method andDescGreaterThanOrEqualToColumn (line 733) | public Criteria andDescGreaterThanOrEqualToColumn(LitemallCategory.C... method andDescLessThan (line 738) | public Criteria andDescLessThan(String value) { method andDescLessThanColumn (line 749) | public Criteria andDescLessThanColumn(LitemallCategory.Column column) { method andDescLessThanOrEqualTo (line 754) | public Criteria andDescLessThanOrEqualTo(String value) { method andDescLessThanOrEqualToColumn (line 765) | public Criteria andDescLessThanOrEqualToColumn(LitemallCategory.Colu... method andDescLike (line 770) | public Criteria andDescLike(String value) { method andDescNotLike (line 775) | public Criteria andDescNotLike(String value) { method andDescIn (line 780) | public Criteria andDescIn(List values) { method andDescNotIn (line 785) | public Criteria andDescNotIn(List values) { method andDescBetween (line 790) | public Criteria andDescBetween(String value1, String value2) { method andDescNotBetween (line 795) | public Criteria andDescNotBetween(String value1, String value2) { method andPidIsNull (line 800) | public Criteria andPidIsNull() { method andPidIsNotNull (line 805) | public Criteria andPidIsNotNull() { method andPidEqualTo (line 810) | public Criteria andPidEqualTo(Integer value) { method andPidEqualToColumn (line 821) | public Criteria andPidEqualToColumn(LitemallCategory.Column column) { method andPidNotEqualTo (line 826) | public Criteria andPidNotEqualTo(Integer value) { method andPidNotEqualToColumn (line 837) | public Criteria andPidNotEqualToColumn(LitemallCategory.Column colum... method andPidGreaterThan (line 842) | public Criteria andPidGreaterThan(Integer value) { method andPidGreaterThanColumn (line 853) | public Criteria andPidGreaterThanColumn(LitemallCategory.Column colu... method andPidGreaterThanOrEqualTo (line 858) | public Criteria andPidGreaterThanOrEqualTo(Integer value) { method andPidGreaterThanOrEqualToColumn (line 869) | public Criteria andPidGreaterThanOrEqualToColumn(LitemallCategory.Co... method andPidLessThan (line 874) | public Criteria andPidLessThan(Integer value) { method andPidLessThanColumn (line 885) | public Criteria andPidLessThanColumn(LitemallCategory.Column column) { method andPidLessThanOrEqualTo (line 890) | public Criteria andPidLessThanOrEqualTo(Integer value) { method andPidLessThanOrEqualToColumn (line 901) | public Criteria andPidLessThanOrEqualToColumn(LitemallCategory.Colum... method andPidIn (line 906) | public Criteria andPidIn(List values) { method andPidNotIn (line 911) | public Criteria andPidNotIn(List values) { method andPidBetween (line 916) | public Criteria andPidBetween(Integer value1, Integer value2) { method andPidNotBetween (line 921) | public Criteria andPidNotBetween(Integer value1, Integer value2) { method andIconUrlIsNull (line 926) | public Criteria andIconUrlIsNull() { method andIconUrlIsNotNull (line 931) | public Criteria andIconUrlIsNotNull() { method andIconUrlEqualTo (line 936) | public Criteria andIconUrlEqualTo(String value) { method andIconUrlEqualToColumn (line 947) | public Criteria andIconUrlEqualToColumn(LitemallCategory.Column colu... method andIconUrlNotEqualTo (line 952) | public Criteria andIconUrlNotEqualTo(String value) { method andIconUrlNotEqualToColumn (line 963) | public Criteria andIconUrlNotEqualToColumn(LitemallCategory.Column c... method andIconUrlGreaterThan (line 968) | public Criteria andIconUrlGreaterThan(String value) { method andIconUrlGreaterThanColumn (line 979) | public Criteria andIconUrlGreaterThanColumn(LitemallCategory.Column ... method andIconUrlGreaterThanOrEqualTo (line 984) | public Criteria andIconUrlGreaterThanOrEqualTo(String value) { method andIconUrlGreaterThanOrEqualToColumn (line 995) | public Criteria andIconUrlGreaterThanOrEqualToColumn(LitemallCategor... method andIconUrlLessThan (line 1000) | public Criteria andIconUrlLessThan(String value) { method andIconUrlLessThanColumn (line 1011) | public Criteria andIconUrlLessThanColumn(LitemallCategory.Column col... method andIconUrlLessThanOrEqualTo (line 1016) | public Criteria andIconUrlLessThanOrEqualTo(String value) { method andIconUrlLessThanOrEqualToColumn (line 1027) | public Criteria andIconUrlLessThanOrEqualToColumn(LitemallCategory.C... method andIconUrlLike (line 1032) | public Criteria andIconUrlLike(String value) { method andIconUrlNotLike (line 1037) | public Criteria andIconUrlNotLike(String value) { method andIconUrlIn (line 1042) | public Criteria andIconUrlIn(List values) { method andIconUrlNotIn (line 1047) | public Criteria andIconUrlNotIn(List values) { method andIconUrlBetween (line 1052) | public Criteria andIconUrlBetween(String value1, String value2) { method andIconUrlNotBetween (line 1057) | public Criteria andIconUrlNotBetween(String value1, String value2) { method andPicUrlIsNull (line 1062) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 1067) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 1072) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 1083) | public Criteria andPicUrlEqualToColumn(LitemallCategory.Column colum... method andPicUrlNotEqualTo (line 1088) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 1099) | public Criteria andPicUrlNotEqualToColumn(LitemallCategory.Column co... method andPicUrlGreaterThan (line 1104) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 1115) | public Criteria andPicUrlGreaterThanColumn(LitemallCategory.Column c... method andPicUrlGreaterThanOrEqualTo (line 1120) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 1131) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallCategory... method andPicUrlLessThan (line 1136) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 1147) | public Criteria andPicUrlLessThanColumn(LitemallCategory.Column colu... method andPicUrlLessThanOrEqualTo (line 1152) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 1163) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallCategory.Co... method andPicUrlLike (line 1168) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 1173) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 1178) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 1183) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 1188) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 1193) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andLevelIsNull (line 1198) | public Criteria andLevelIsNull() { method andLevelIsNotNull (line 1203) | public Criteria andLevelIsNotNull() { method andLevelEqualTo (line 1208) | public Criteria andLevelEqualTo(String value) { method andLevelEqualToColumn (line 1219) | public Criteria andLevelEqualToColumn(LitemallCategory.Column column) { method andLevelNotEqualTo (line 1224) | public Criteria andLevelNotEqualTo(String value) { method andLevelNotEqualToColumn (line 1235) | public Criteria andLevelNotEqualToColumn(LitemallCategory.Column col... method andLevelGreaterThan (line 1240) | public Criteria andLevelGreaterThan(String value) { method andLevelGreaterThanColumn (line 1251) | public Criteria andLevelGreaterThanColumn(LitemallCategory.Column co... method andLevelGreaterThanOrEqualTo (line 1256) | public Criteria andLevelGreaterThanOrEqualTo(String value) { method andLevelGreaterThanOrEqualToColumn (line 1267) | public Criteria andLevelGreaterThanOrEqualToColumn(LitemallCategory.... method andLevelLessThan (line 1272) | public Criteria andLevelLessThan(String value) { method andLevelLessThanColumn (line 1283) | public Criteria andLevelLessThanColumn(LitemallCategory.Column colum... method andLevelLessThanOrEqualTo (line 1288) | public Criteria andLevelLessThanOrEqualTo(String value) { method andLevelLessThanOrEqualToColumn (line 1299) | public Criteria andLevelLessThanOrEqualToColumn(LitemallCategory.Col... method andLevelLike (line 1304) | public Criteria andLevelLike(String value) { method andLevelNotLike (line 1309) | public Criteria andLevelNotLike(String value) { method andLevelIn (line 1314) | public Criteria andLevelIn(List values) { method andLevelNotIn (line 1319) | public Criteria andLevelNotIn(List values) { method andLevelBetween (line 1324) | public Criteria andLevelBetween(String value1, String value2) { method andLevelNotBetween (line 1329) | public Criteria andLevelNotBetween(String value1, String value2) { method andSortOrderIsNull (line 1334) | public Criteria andSortOrderIsNull() { method andSortOrderIsNotNull (line 1339) | public Criteria andSortOrderIsNotNull() { method andSortOrderEqualTo (line 1344) | public Criteria andSortOrderEqualTo(Byte value) { method andSortOrderEqualToColumn (line 1355) | public Criteria andSortOrderEqualToColumn(LitemallCategory.Column co... method andSortOrderNotEqualTo (line 1360) | public Criteria andSortOrderNotEqualTo(Byte value) { method andSortOrderNotEqualToColumn (line 1371) | public Criteria andSortOrderNotEqualToColumn(LitemallCategory.Column... method andSortOrderGreaterThan (line 1376) | public Criteria andSortOrderGreaterThan(Byte value) { method andSortOrderGreaterThanColumn (line 1387) | public Criteria andSortOrderGreaterThanColumn(LitemallCategory.Colum... method andSortOrderGreaterThanOrEqualTo (line 1392) | public Criteria andSortOrderGreaterThanOrEqualTo(Byte value) { method andSortOrderGreaterThanOrEqualToColumn (line 1403) | public Criteria andSortOrderGreaterThanOrEqualToColumn(LitemallCateg... method andSortOrderLessThan (line 1408) | public Criteria andSortOrderLessThan(Byte value) { method andSortOrderLessThanColumn (line 1419) | public Criteria andSortOrderLessThanColumn(LitemallCategory.Column c... method andSortOrderLessThanOrEqualTo (line 1424) | public Criteria andSortOrderLessThanOrEqualTo(Byte value) { method andSortOrderLessThanOrEqualToColumn (line 1435) | public Criteria andSortOrderLessThanOrEqualToColumn(LitemallCategory... method andSortOrderIn (line 1440) | public Criteria andSortOrderIn(List values) { method andSortOrderNotIn (line 1445) | public Criteria andSortOrderNotIn(List values) { method andSortOrderBetween (line 1450) | public Criteria andSortOrderBetween(Byte value1, Byte value2) { method andSortOrderNotBetween (line 1455) | public Criteria andSortOrderNotBetween(Byte value1, Byte value2) { method andAddTimeIsNull (line 1460) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1465) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1470) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1481) | public Criteria andAddTimeEqualToColumn(LitemallCategory.Column colu... method andAddTimeNotEqualTo (line 1486) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1497) | public Criteria andAddTimeNotEqualToColumn(LitemallCategory.Column c... method andAddTimeGreaterThan (line 1502) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1513) | public Criteria andAddTimeGreaterThanColumn(LitemallCategory.Column ... method andAddTimeGreaterThanOrEqualTo (line 1518) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1529) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallCategor... method andAddTimeLessThan (line 1534) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1545) | public Criteria andAddTimeLessThanColumn(LitemallCategory.Column col... method andAddTimeLessThanOrEqualTo (line 1550) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1561) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallCategory.C... method andAddTimeIn (line 1566) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1571) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1576) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1581) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1586) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1591) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1596) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1607) | public Criteria andUpdateTimeEqualToColumn(LitemallCategory.Column c... method andUpdateTimeNotEqualTo (line 1612) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1623) | public Criteria andUpdateTimeNotEqualToColumn(LitemallCategory.Colum... method andUpdateTimeGreaterThan (line 1628) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1639) | public Criteria andUpdateTimeGreaterThanColumn(LitemallCategory.Colu... method andUpdateTimeGreaterThanOrEqualTo (line 1644) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1655) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallCate... method andUpdateTimeLessThan (line 1660) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1671) | public Criteria andUpdateTimeLessThanColumn(LitemallCategory.Column ... method andUpdateTimeLessThanOrEqualTo (line 1676) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1687) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallCategor... method andUpdateTimeIn (line 1692) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1697) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1702) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1707) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1712) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1717) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1722) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1733) | public Criteria andDeletedEqualToColumn(LitemallCategory.Column colu... method andDeletedNotEqualTo (line 1738) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1749) | public Criteria andDeletedNotEqualToColumn(LitemallCategory.Column c... method andDeletedGreaterThan (line 1754) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1765) | public Criteria andDeletedGreaterThanColumn(LitemallCategory.Column ... method andDeletedGreaterThanOrEqualTo (line 1770) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1781) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallCategor... method andDeletedLessThan (line 1786) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1797) | public Criteria andDeletedLessThanColumn(LitemallCategory.Column col... method andDeletedLessThanOrEqualTo (line 1802) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1813) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallCategory.C... method andDeletedIn (line 1818) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1823) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1828) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1833) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1845) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1860) | protected Criteria(LitemallCategoryExample example) { method example (line 1871) | public LitemallCategoryExample example() { method andIf (line 1881) | @Deprecated method when (line 1895) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1908) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1923) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1927) | @Deprecated method add (line 1935) | Criteria add(Criteria add); class Criterion (line 1945) | public static class Criterion { method getCondition (line 1962) | public String getCondition() { method getValue (line 1966) | public Object getValue() { method getSecondValue (line 1970) | public Object getSecondValue() { method isNoValue (line 1974) | public boolean isNoValue() { method isSingleValue (line 1978) | public boolean isSingleValue() { method isBetweenValue (line 1982) | public boolean isBetweenValue() { method isListValue (line 1986) | public boolean isListValue() { method getTypeHandler (line 1990) | public String getTypeHandler() { method Criterion (line 1994) | protected Criterion(String condition) { method Criterion (line 2001) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2013) | protected Criterion(String condition, Object value) { method Criterion (line 2017) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2026) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2031) | public interface ICriteriaWhen { method criteria (line 2038) | void criteria(Criteria criteria); type IExampleWhen (line 2041) | public interface IExampleWhen { method example (line 2048) | void example(org.linlinjava.litemall.db.domain.LitemallCategoryExamp... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCollect.java class LitemallCollect (line 7) | public class LitemallCollect { method getId (line 95) | public Integer getId() { method setId (line 107) | public void setId(Integer id) { method getUserId (line 119) | public Integer getUserId() { method setUserId (line 131) | public void setUserId(Integer userId) { method getValueId (line 143) | public Integer getValueId() { method setValueId (line 155) | public void setValueId(Integer valueId) { method getType (line 167) | public Byte getType() { method setType (line 179) | public void setType(Byte type) { method getAddTime (line 191) | public LocalDateTime getAddTime() { method setAddTime (line 203) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 215) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 227) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 237) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 249) | public Boolean getDeleted() { method setDeleted (line 261) | public void setDeleted(Boolean deleted) { method toString (line 271) | @Override method equals (line 296) | @Override method hashCode (line 323) | @Override type Deleted (line 343) | public enum Deleted { method Deleted (line 369) | Deleted(Boolean value, String name) { method getValue (line 380) | public Boolean getValue() { method value (line 390) | public Boolean value() { method getName (line 400) | public String getName() { type Column (line 411) | public enum Column { method value (line 474) | public String value() { method getValue (line 484) | public String getValue() { method getJavaProperty (line 494) | public String getJavaProperty() { method getJdbcType (line 504) | public String getJdbcType() { method Column (line 514) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 527) | public String desc() { method asc (line 537) | public String asc() { method excludes (line 547) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 561) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 575) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCollectExample.java class LitemallCollectExample (line 7) | public class LitemallCollectExample { method LitemallCollectExample (line 38) | public LitemallCollectExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallCollectExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallCollectExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallCollectExample when(boolean condition, IExampleWhen the... method when (line 210) | public LitemallCollectExample when(boolean condition, IExampleWhen the... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallCollect.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallCollect.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallCollect.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallCollect.Colu... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallCollect.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallCollect.Column ... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 392) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 397) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 402) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 413) | public Criteria andUserIdEqualToColumn(LitemallCollect.Column column) { method andUserIdNotEqualTo (line 418) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 429) | public Criteria andUserIdNotEqualToColumn(LitemallCollect.Column col... method andUserIdGreaterThan (line 434) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 445) | public Criteria andUserIdGreaterThanColumn(LitemallCollect.Column co... method andUserIdGreaterThanOrEqualTo (line 450) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 461) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallCollect.... method andUserIdLessThan (line 466) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 477) | public Criteria andUserIdLessThanColumn(LitemallCollect.Column colum... method andUserIdLessThanOrEqualTo (line 482) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 493) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallCollect.Col... method andUserIdIn (line 498) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 503) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 508) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 513) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andValueIdIsNull (line 518) | public Criteria andValueIdIsNull() { method andValueIdIsNotNull (line 523) | public Criteria andValueIdIsNotNull() { method andValueIdEqualTo (line 528) | public Criteria andValueIdEqualTo(Integer value) { method andValueIdEqualToColumn (line 539) | public Criteria andValueIdEqualToColumn(LitemallCollect.Column colum... method andValueIdNotEqualTo (line 544) | public Criteria andValueIdNotEqualTo(Integer value) { method andValueIdNotEqualToColumn (line 555) | public Criteria andValueIdNotEqualToColumn(LitemallCollect.Column co... method andValueIdGreaterThan (line 560) | public Criteria andValueIdGreaterThan(Integer value) { method andValueIdGreaterThanColumn (line 571) | public Criteria andValueIdGreaterThanColumn(LitemallCollect.Column c... method andValueIdGreaterThanOrEqualTo (line 576) | public Criteria andValueIdGreaterThanOrEqualTo(Integer value) { method andValueIdGreaterThanOrEqualToColumn (line 587) | public Criteria andValueIdGreaterThanOrEqualToColumn(LitemallCollect... method andValueIdLessThan (line 592) | public Criteria andValueIdLessThan(Integer value) { method andValueIdLessThanColumn (line 603) | public Criteria andValueIdLessThanColumn(LitemallCollect.Column colu... method andValueIdLessThanOrEqualTo (line 608) | public Criteria andValueIdLessThanOrEqualTo(Integer value) { method andValueIdLessThanOrEqualToColumn (line 619) | public Criteria andValueIdLessThanOrEqualToColumn(LitemallCollect.Co... method andValueIdIn (line 624) | public Criteria andValueIdIn(List values) { method andValueIdNotIn (line 629) | public Criteria andValueIdNotIn(List values) { method andValueIdBetween (line 634) | public Criteria andValueIdBetween(Integer value1, Integer value2) { method andValueIdNotBetween (line 639) | public Criteria andValueIdNotBetween(Integer value1, Integer value2) { method andTypeIsNull (line 644) | public Criteria andTypeIsNull() { method andTypeIsNotNull (line 649) | public Criteria andTypeIsNotNull() { method andTypeEqualTo (line 654) | public Criteria andTypeEqualTo(Byte value) { method andTypeEqualToColumn (line 665) | public Criteria andTypeEqualToColumn(LitemallCollect.Column column) { method andTypeNotEqualTo (line 670) | public Criteria andTypeNotEqualTo(Byte value) { method andTypeNotEqualToColumn (line 681) | public Criteria andTypeNotEqualToColumn(LitemallCollect.Column colum... method andTypeGreaterThan (line 686) | public Criteria andTypeGreaterThan(Byte value) { method andTypeGreaterThanColumn (line 697) | public Criteria andTypeGreaterThanColumn(LitemallCollect.Column colu... method andTypeGreaterThanOrEqualTo (line 702) | public Criteria andTypeGreaterThanOrEqualTo(Byte value) { method andTypeGreaterThanOrEqualToColumn (line 713) | public Criteria andTypeGreaterThanOrEqualToColumn(LitemallCollect.Co... method andTypeLessThan (line 718) | public Criteria andTypeLessThan(Byte value) { method andTypeLessThanColumn (line 729) | public Criteria andTypeLessThanColumn(LitemallCollect.Column column) { method andTypeLessThanOrEqualTo (line 734) | public Criteria andTypeLessThanOrEqualTo(Byte value) { method andTypeLessThanOrEqualToColumn (line 745) | public Criteria andTypeLessThanOrEqualToColumn(LitemallCollect.Colum... method andTypeIn (line 750) | public Criteria andTypeIn(List values) { method andTypeNotIn (line 755) | public Criteria andTypeNotIn(List values) { method andTypeBetween (line 760) | public Criteria andTypeBetween(Byte value1, Byte value2) { method andTypeNotBetween (line 765) | public Criteria andTypeNotBetween(Byte value1, Byte value2) { method andAddTimeIsNull (line 770) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 775) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 780) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 791) | public Criteria andAddTimeEqualToColumn(LitemallCollect.Column colum... method andAddTimeNotEqualTo (line 796) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 807) | public Criteria andAddTimeNotEqualToColumn(LitemallCollect.Column co... method andAddTimeGreaterThan (line 812) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 823) | public Criteria andAddTimeGreaterThanColumn(LitemallCollect.Column c... method andAddTimeGreaterThanOrEqualTo (line 828) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 839) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallCollect... method andAddTimeLessThan (line 844) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 855) | public Criteria andAddTimeLessThanColumn(LitemallCollect.Column colu... method andAddTimeLessThanOrEqualTo (line 860) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 871) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallCollect.Co... method andAddTimeIn (line 876) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 881) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 886) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 891) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 896) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 901) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 906) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 917) | public Criteria andUpdateTimeEqualToColumn(LitemallCollect.Column co... method andUpdateTimeNotEqualTo (line 922) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 933) | public Criteria andUpdateTimeNotEqualToColumn(LitemallCollect.Column... method andUpdateTimeGreaterThan (line 938) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 949) | public Criteria andUpdateTimeGreaterThanColumn(LitemallCollect.Colum... method andUpdateTimeGreaterThanOrEqualTo (line 954) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 965) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallColl... method andUpdateTimeLessThan (line 970) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 981) | public Criteria andUpdateTimeLessThanColumn(LitemallCollect.Column c... method andUpdateTimeLessThanOrEqualTo (line 986) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 997) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallCollect... method andUpdateTimeIn (line 1002) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1007) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1012) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1017) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1022) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1027) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1032) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1043) | public Criteria andDeletedEqualToColumn(LitemallCollect.Column colum... method andDeletedNotEqualTo (line 1048) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1059) | public Criteria andDeletedNotEqualToColumn(LitemallCollect.Column co... method andDeletedGreaterThan (line 1064) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1075) | public Criteria andDeletedGreaterThanColumn(LitemallCollect.Column c... method andDeletedGreaterThanOrEqualTo (line 1080) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1091) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallCollect... method andDeletedLessThan (line 1096) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1107) | public Criteria andDeletedLessThanColumn(LitemallCollect.Column colu... method andDeletedLessThanOrEqualTo (line 1112) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1123) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallCollect.Co... method andDeletedIn (line 1128) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1133) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1138) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1143) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1155) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1170) | protected Criteria(LitemallCollectExample example) { method example (line 1181) | public LitemallCollectExample example() { method andIf (line 1191) | @Deprecated method when (line 1205) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1218) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1233) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1237) | @Deprecated method add (line 1245) | Criteria add(Criteria add); class Criterion (line 1255) | public static class Criterion { method getCondition (line 1272) | public String getCondition() { method getValue (line 1276) | public Object getValue() { method getSecondValue (line 1280) | public Object getSecondValue() { method isNoValue (line 1284) | public boolean isNoValue() { method isSingleValue (line 1288) | public boolean isSingleValue() { method isBetweenValue (line 1292) | public boolean isBetweenValue() { method isListValue (line 1296) | public boolean isListValue() { method getTypeHandler (line 1300) | public String getTypeHandler() { method Criterion (line 1304) | protected Criterion(String condition) { method Criterion (line 1311) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1323) | protected Criterion(String condition, Object value) { method Criterion (line 1327) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1336) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1341) | public interface ICriteriaWhen { method criteria (line 1348) | void criteria(Criteria criteria); type IExampleWhen (line 1351) | public interface IExampleWhen { method example (line 1358) | void example(org.linlinjava.litemall.db.domain.LitemallCollectExampl... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallComment.java class LitemallComment (line 7) | public class LitemallComment { method getId (line 140) | public Integer getId() { method setId (line 152) | public void setId(Integer id) { method getValueId (line 164) | public Integer getValueId() { method setValueId (line 176) | public void setValueId(Integer valueId) { method getType (line 188) | public Byte getType() { method setType (line 200) | public void setType(Byte type) { method getContent (line 212) | public String getContent() { method setContent (line 224) | public void setContent(String content) { method getAdminContent (line 236) | public String getAdminContent() { method setAdminContent (line 248) | public void setAdminContent(String adminContent) { method getUserId (line 260) | public Integer getUserId() { method setUserId (line 272) | public void setUserId(Integer userId) { method getHasPicture (line 284) | public Boolean getHasPicture() { method setHasPicture (line 296) | public void setHasPicture(Boolean hasPicture) { method getPicUrls (line 308) | public String[] getPicUrls() { method setPicUrls (line 320) | public void setPicUrls(String[] picUrls) { method getStar (line 332) | public Short getStar() { method setStar (line 344) | public void setStar(Short star) { method getAddTime (line 356) | public LocalDateTime getAddTime() { method setAddTime (line 368) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 380) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 392) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 402) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 414) | public Boolean getDeleted() { method setDeleted (line 426) | public void setDeleted(Boolean deleted) { method toString (line 436) | @Override method equals (line 466) | @Override method hashCode (line 498) | @Override type Deleted (line 523) | public enum Deleted { method Deleted (line 549) | Deleted(Boolean value, String name) { method getValue (line 560) | public Boolean getValue() { method value (line 570) | public Boolean value() { method getName (line 580) | public String getName() { type Column (line 591) | public enum Column { method value (line 659) | public String value() { method getValue (line 669) | public String getValue() { method getJavaProperty (line 679) | public String getJavaProperty() { method getJdbcType (line 689) | public String getJdbcType() { method Column (line 699) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 712) | public String desc() { method asc (line 722) | public String asc() { method excludes (line 732) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 746) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 760) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCommentExample.java class LitemallCommentExample (line 7) | public class LitemallCommentExample { method LitemallCommentExample (line 38) | public LitemallCommentExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallCommentExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallCommentExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallCommentExample when(boolean condition, IExampleWhen the... method when (line 210) | public LitemallCommentExample when(boolean condition, IExampleWhen the... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 232) | protected GeneratedCriteria() { method getPicUrlsCriteria (line 238) | public List getPicUrlsCriteria() { method addPicUrlsCriterion (line 242) | protected void addPicUrlsCriterion(String condition, Object value, S... method addPicUrlsCriterion (line 250) | protected void addPicUrlsCriterion(String condition, String[] value1... method isValid (line 258) | public boolean isValid() { method getAllCriteria (line 263) | public List getAllCriteria() { method getCriteria (line 272) | public List getCriteria() { method addCriterion (line 276) | protected void addCriterion(String condition) { method addCriterion (line 284) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 292) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 300) | public Criteria andIdIsNull() { method andIdIsNotNull (line 305) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 310) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 321) | public Criteria andIdEqualToColumn(LitemallComment.Column column) { method andIdNotEqualTo (line 326) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 337) | public Criteria andIdNotEqualToColumn(LitemallComment.Column column) { method andIdGreaterThan (line 342) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 353) | public Criteria andIdGreaterThanColumn(LitemallComment.Column column) { method andIdGreaterThanOrEqualTo (line 358) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 369) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallComment.Colu... method andIdLessThan (line 374) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 385) | public Criteria andIdLessThanColumn(LitemallComment.Column column) { method andIdLessThanOrEqualTo (line 390) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 401) | public Criteria andIdLessThanOrEqualToColumn(LitemallComment.Column ... method andIdIn (line 406) | public Criteria andIdIn(List values) { method andIdNotIn (line 411) | public Criteria andIdNotIn(List values) { method andIdBetween (line 416) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 421) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andValueIdIsNull (line 426) | public Criteria andValueIdIsNull() { method andValueIdIsNotNull (line 431) | public Criteria andValueIdIsNotNull() { method andValueIdEqualTo (line 436) | public Criteria andValueIdEqualTo(Integer value) { method andValueIdEqualToColumn (line 447) | public Criteria andValueIdEqualToColumn(LitemallComment.Column colum... method andValueIdNotEqualTo (line 452) | public Criteria andValueIdNotEqualTo(Integer value) { method andValueIdNotEqualToColumn (line 463) | public Criteria andValueIdNotEqualToColumn(LitemallComment.Column co... method andValueIdGreaterThan (line 468) | public Criteria andValueIdGreaterThan(Integer value) { method andValueIdGreaterThanColumn (line 479) | public Criteria andValueIdGreaterThanColumn(LitemallComment.Column c... method andValueIdGreaterThanOrEqualTo (line 484) | public Criteria andValueIdGreaterThanOrEqualTo(Integer value) { method andValueIdGreaterThanOrEqualToColumn (line 495) | public Criteria andValueIdGreaterThanOrEqualToColumn(LitemallComment... method andValueIdLessThan (line 500) | public Criteria andValueIdLessThan(Integer value) { method andValueIdLessThanColumn (line 511) | public Criteria andValueIdLessThanColumn(LitemallComment.Column colu... method andValueIdLessThanOrEqualTo (line 516) | public Criteria andValueIdLessThanOrEqualTo(Integer value) { method andValueIdLessThanOrEqualToColumn (line 527) | public Criteria andValueIdLessThanOrEqualToColumn(LitemallComment.Co... method andValueIdIn (line 532) | public Criteria andValueIdIn(List values) { method andValueIdNotIn (line 537) | public Criteria andValueIdNotIn(List values) { method andValueIdBetween (line 542) | public Criteria andValueIdBetween(Integer value1, Integer value2) { method andValueIdNotBetween (line 547) | public Criteria andValueIdNotBetween(Integer value1, Integer value2) { method andTypeIsNull (line 552) | public Criteria andTypeIsNull() { method andTypeIsNotNull (line 557) | public Criteria andTypeIsNotNull() { method andTypeEqualTo (line 562) | public Criteria andTypeEqualTo(Byte value) { method andTypeEqualToColumn (line 573) | public Criteria andTypeEqualToColumn(LitemallComment.Column column) { method andTypeNotEqualTo (line 578) | public Criteria andTypeNotEqualTo(Byte value) { method andTypeNotEqualToColumn (line 589) | public Criteria andTypeNotEqualToColumn(LitemallComment.Column colum... method andTypeGreaterThan (line 594) | public Criteria andTypeGreaterThan(Byte value) { method andTypeGreaterThanColumn (line 605) | public Criteria andTypeGreaterThanColumn(LitemallComment.Column colu... method andTypeGreaterThanOrEqualTo (line 610) | public Criteria andTypeGreaterThanOrEqualTo(Byte value) { method andTypeGreaterThanOrEqualToColumn (line 621) | public Criteria andTypeGreaterThanOrEqualToColumn(LitemallComment.Co... method andTypeLessThan (line 626) | public Criteria andTypeLessThan(Byte value) { method andTypeLessThanColumn (line 637) | public Criteria andTypeLessThanColumn(LitemallComment.Column column) { method andTypeLessThanOrEqualTo (line 642) | public Criteria andTypeLessThanOrEqualTo(Byte value) { method andTypeLessThanOrEqualToColumn (line 653) | public Criteria andTypeLessThanOrEqualToColumn(LitemallComment.Colum... method andTypeIn (line 658) | public Criteria andTypeIn(List values) { method andTypeNotIn (line 663) | public Criteria andTypeNotIn(List values) { method andTypeBetween (line 668) | public Criteria andTypeBetween(Byte value1, Byte value2) { method andTypeNotBetween (line 673) | public Criteria andTypeNotBetween(Byte value1, Byte value2) { method andContentIsNull (line 678) | public Criteria andContentIsNull() { method andContentIsNotNull (line 683) | public Criteria andContentIsNotNull() { method andContentEqualTo (line 688) | public Criteria andContentEqualTo(String value) { method andContentEqualToColumn (line 699) | public Criteria andContentEqualToColumn(LitemallComment.Column colum... method andContentNotEqualTo (line 704) | public Criteria andContentNotEqualTo(String value) { method andContentNotEqualToColumn (line 715) | public Criteria andContentNotEqualToColumn(LitemallComment.Column co... method andContentGreaterThan (line 720) | public Criteria andContentGreaterThan(String value) { method andContentGreaterThanColumn (line 731) | public Criteria andContentGreaterThanColumn(LitemallComment.Column c... method andContentGreaterThanOrEqualTo (line 736) | public Criteria andContentGreaterThanOrEqualTo(String value) { method andContentGreaterThanOrEqualToColumn (line 747) | public Criteria andContentGreaterThanOrEqualToColumn(LitemallComment... method andContentLessThan (line 752) | public Criteria andContentLessThan(String value) { method andContentLessThanColumn (line 763) | public Criteria andContentLessThanColumn(LitemallComment.Column colu... method andContentLessThanOrEqualTo (line 768) | public Criteria andContentLessThanOrEqualTo(String value) { method andContentLessThanOrEqualToColumn (line 779) | public Criteria andContentLessThanOrEqualToColumn(LitemallComment.Co... method andContentLike (line 784) | public Criteria andContentLike(String value) { method andContentNotLike (line 789) | public Criteria andContentNotLike(String value) { method andContentIn (line 794) | public Criteria andContentIn(List values) { method andContentNotIn (line 799) | public Criteria andContentNotIn(List values) { method andContentBetween (line 804) | public Criteria andContentBetween(String value1, String value2) { method andContentNotBetween (line 809) | public Criteria andContentNotBetween(String value1, String value2) { method andAdminContentIsNull (line 814) | public Criteria andAdminContentIsNull() { method andAdminContentIsNotNull (line 819) | public Criteria andAdminContentIsNotNull() { method andAdminContentEqualTo (line 824) | public Criteria andAdminContentEqualTo(String value) { method andAdminContentEqualToColumn (line 835) | public Criteria andAdminContentEqualToColumn(LitemallComment.Column ... method andAdminContentNotEqualTo (line 840) | public Criteria andAdminContentNotEqualTo(String value) { method andAdminContentNotEqualToColumn (line 851) | public Criteria andAdminContentNotEqualToColumn(LitemallComment.Colu... method andAdminContentGreaterThan (line 856) | public Criteria andAdminContentGreaterThan(String value) { method andAdminContentGreaterThanColumn (line 867) | public Criteria andAdminContentGreaterThanColumn(LitemallComment.Col... method andAdminContentGreaterThanOrEqualTo (line 872) | public Criteria andAdminContentGreaterThanOrEqualTo(String value) { method andAdminContentGreaterThanOrEqualToColumn (line 883) | public Criteria andAdminContentGreaterThanOrEqualToColumn(LitemallCo... method andAdminContentLessThan (line 888) | public Criteria andAdminContentLessThan(String value) { method andAdminContentLessThanColumn (line 899) | public Criteria andAdminContentLessThanColumn(LitemallComment.Column... method andAdminContentLessThanOrEqualTo (line 904) | public Criteria andAdminContentLessThanOrEqualTo(String value) { method andAdminContentLessThanOrEqualToColumn (line 915) | public Criteria andAdminContentLessThanOrEqualToColumn(LitemallComme... method andAdminContentLike (line 920) | public Criteria andAdminContentLike(String value) { method andAdminContentNotLike (line 925) | public Criteria andAdminContentNotLike(String value) { method andAdminContentIn (line 930) | public Criteria andAdminContentIn(List values) { method andAdminContentNotIn (line 935) | public Criteria andAdminContentNotIn(List values) { method andAdminContentBetween (line 940) | public Criteria andAdminContentBetween(String value1, String value2) { method andAdminContentNotBetween (line 945) | public Criteria andAdminContentNotBetween(String value1, String valu... method andUserIdIsNull (line 950) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 955) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 960) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 971) | public Criteria andUserIdEqualToColumn(LitemallComment.Column column) { method andUserIdNotEqualTo (line 976) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 987) | public Criteria andUserIdNotEqualToColumn(LitemallComment.Column col... method andUserIdGreaterThan (line 992) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 1003) | public Criteria andUserIdGreaterThanColumn(LitemallComment.Column co... method andUserIdGreaterThanOrEqualTo (line 1008) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 1019) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallComment.... method andUserIdLessThan (line 1024) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 1035) | public Criteria andUserIdLessThanColumn(LitemallComment.Column colum... method andUserIdLessThanOrEqualTo (line 1040) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 1051) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallComment.Col... method andUserIdIn (line 1056) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 1061) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 1066) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 1071) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andHasPictureIsNull (line 1076) | public Criteria andHasPictureIsNull() { method andHasPictureIsNotNull (line 1081) | public Criteria andHasPictureIsNotNull() { method andHasPictureEqualTo (line 1086) | public Criteria andHasPictureEqualTo(Boolean value) { method andHasPictureEqualToColumn (line 1097) | public Criteria andHasPictureEqualToColumn(LitemallComment.Column co... method andHasPictureNotEqualTo (line 1102) | public Criteria andHasPictureNotEqualTo(Boolean value) { method andHasPictureNotEqualToColumn (line 1113) | public Criteria andHasPictureNotEqualToColumn(LitemallComment.Column... method andHasPictureGreaterThan (line 1118) | public Criteria andHasPictureGreaterThan(Boolean value) { method andHasPictureGreaterThanColumn (line 1129) | public Criteria andHasPictureGreaterThanColumn(LitemallComment.Colum... method andHasPictureGreaterThanOrEqualTo (line 1134) | public Criteria andHasPictureGreaterThanOrEqualTo(Boolean value) { method andHasPictureGreaterThanOrEqualToColumn (line 1145) | public Criteria andHasPictureGreaterThanOrEqualToColumn(LitemallComm... method andHasPictureLessThan (line 1150) | public Criteria andHasPictureLessThan(Boolean value) { method andHasPictureLessThanColumn (line 1161) | public Criteria andHasPictureLessThanColumn(LitemallComment.Column c... method andHasPictureLessThanOrEqualTo (line 1166) | public Criteria andHasPictureLessThanOrEqualTo(Boolean value) { method andHasPictureLessThanOrEqualToColumn (line 1177) | public Criteria andHasPictureLessThanOrEqualToColumn(LitemallComment... method andHasPictureIn (line 1182) | public Criteria andHasPictureIn(List values) { method andHasPictureNotIn (line 1187) | public Criteria andHasPictureNotIn(List values) { method andHasPictureBetween (line 1192) | public Criteria andHasPictureBetween(Boolean value1, Boolean value2) { method andHasPictureNotBetween (line 1197) | public Criteria andHasPictureNotBetween(Boolean value1, Boolean valu... method andPicUrlsIsNull (line 1202) | public Criteria andPicUrlsIsNull() { method andPicUrlsIsNotNull (line 1207) | public Criteria andPicUrlsIsNotNull() { method andPicUrlsEqualTo (line 1212) | public Criteria andPicUrlsEqualTo(String[] value) { method andPicUrlsEqualToColumn (line 1223) | public Criteria andPicUrlsEqualToColumn(LitemallComment.Column colum... method andPicUrlsNotEqualTo (line 1228) | public Criteria andPicUrlsNotEqualTo(String[] value) { method andPicUrlsNotEqualToColumn (line 1239) | public Criteria andPicUrlsNotEqualToColumn(LitemallComment.Column co... method andPicUrlsGreaterThan (line 1244) | public Criteria andPicUrlsGreaterThan(String[] value) { method andPicUrlsGreaterThanColumn (line 1255) | public Criteria andPicUrlsGreaterThanColumn(LitemallComment.Column c... method andPicUrlsGreaterThanOrEqualTo (line 1260) | public Criteria andPicUrlsGreaterThanOrEqualTo(String[] value) { method andPicUrlsGreaterThanOrEqualToColumn (line 1271) | public Criteria andPicUrlsGreaterThanOrEqualToColumn(LitemallComment... method andPicUrlsLessThan (line 1276) | public Criteria andPicUrlsLessThan(String[] value) { method andPicUrlsLessThanColumn (line 1287) | public Criteria andPicUrlsLessThanColumn(LitemallComment.Column colu... method andPicUrlsLessThanOrEqualTo (line 1292) | public Criteria andPicUrlsLessThanOrEqualTo(String[] value) { method andPicUrlsLessThanOrEqualToColumn (line 1303) | public Criteria andPicUrlsLessThanOrEqualToColumn(LitemallComment.Co... method andPicUrlsLike (line 1308) | public Criteria andPicUrlsLike(String[] value) { method andPicUrlsNotLike (line 1313) | public Criteria andPicUrlsNotLike(String[] value) { method andPicUrlsIn (line 1318) | public Criteria andPicUrlsIn(List values) { method andPicUrlsNotIn (line 1323) | public Criteria andPicUrlsNotIn(List values) { method andPicUrlsBetween (line 1328) | public Criteria andPicUrlsBetween(String[] value1, String[] value2) { method andPicUrlsNotBetween (line 1333) | public Criteria andPicUrlsNotBetween(String[] value1, String[] value... method andStarIsNull (line 1338) | public Criteria andStarIsNull() { method andStarIsNotNull (line 1343) | public Criteria andStarIsNotNull() { method andStarEqualTo (line 1348) | public Criteria andStarEqualTo(Short value) { method andStarEqualToColumn (line 1359) | public Criteria andStarEqualToColumn(LitemallComment.Column column) { method andStarNotEqualTo (line 1364) | public Criteria andStarNotEqualTo(Short value) { method andStarNotEqualToColumn (line 1375) | public Criteria andStarNotEqualToColumn(LitemallComment.Column colum... method andStarGreaterThan (line 1380) | public Criteria andStarGreaterThan(Short value) { method andStarGreaterThanColumn (line 1391) | public Criteria andStarGreaterThanColumn(LitemallComment.Column colu... method andStarGreaterThanOrEqualTo (line 1396) | public Criteria andStarGreaterThanOrEqualTo(Short value) { method andStarGreaterThanOrEqualToColumn (line 1407) | public Criteria andStarGreaterThanOrEqualToColumn(LitemallComment.Co... method andStarLessThan (line 1412) | public Criteria andStarLessThan(Short value) { method andStarLessThanColumn (line 1423) | public Criteria andStarLessThanColumn(LitemallComment.Column column) { method andStarLessThanOrEqualTo (line 1428) | public Criteria andStarLessThanOrEqualTo(Short value) { method andStarLessThanOrEqualToColumn (line 1439) | public Criteria andStarLessThanOrEqualToColumn(LitemallComment.Colum... method andStarIn (line 1444) | public Criteria andStarIn(List values) { method andStarNotIn (line 1449) | public Criteria andStarNotIn(List values) { method andStarBetween (line 1454) | public Criteria andStarBetween(Short value1, Short value2) { method andStarNotBetween (line 1459) | public Criteria andStarNotBetween(Short value1, Short value2) { method andAddTimeIsNull (line 1464) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1469) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1474) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1485) | public Criteria andAddTimeEqualToColumn(LitemallComment.Column colum... method andAddTimeNotEqualTo (line 1490) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1501) | public Criteria andAddTimeNotEqualToColumn(LitemallComment.Column co... method andAddTimeGreaterThan (line 1506) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1517) | public Criteria andAddTimeGreaterThanColumn(LitemallComment.Column c... method andAddTimeGreaterThanOrEqualTo (line 1522) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1533) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallComment... method andAddTimeLessThan (line 1538) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1549) | public Criteria andAddTimeLessThanColumn(LitemallComment.Column colu... method andAddTimeLessThanOrEqualTo (line 1554) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1565) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallComment.Co... method andAddTimeIn (line 1570) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1575) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1580) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1585) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1590) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1595) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1600) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1611) | public Criteria andUpdateTimeEqualToColumn(LitemallComment.Column co... method andUpdateTimeNotEqualTo (line 1616) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1627) | public Criteria andUpdateTimeNotEqualToColumn(LitemallComment.Column... method andUpdateTimeGreaterThan (line 1632) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1643) | public Criteria andUpdateTimeGreaterThanColumn(LitemallComment.Colum... method andUpdateTimeGreaterThanOrEqualTo (line 1648) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1659) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallComm... method andUpdateTimeLessThan (line 1664) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1675) | public Criteria andUpdateTimeLessThanColumn(LitemallComment.Column c... method andUpdateTimeLessThanOrEqualTo (line 1680) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1691) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallComment... method andUpdateTimeIn (line 1696) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1701) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1706) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1711) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1716) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1721) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1726) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1737) | public Criteria andDeletedEqualToColumn(LitemallComment.Column colum... method andDeletedNotEqualTo (line 1742) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1753) | public Criteria andDeletedNotEqualToColumn(LitemallComment.Column co... method andDeletedGreaterThan (line 1758) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1769) | public Criteria andDeletedGreaterThanColumn(LitemallComment.Column c... method andDeletedGreaterThanOrEqualTo (line 1774) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1785) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallComment... method andDeletedLessThan (line 1790) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1801) | public Criteria andDeletedLessThanColumn(LitemallComment.Column colu... method andDeletedLessThanOrEqualTo (line 1806) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1817) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallComment.Co... method andDeletedIn (line 1822) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1827) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1832) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1837) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1849) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1864) | protected Criteria(LitemallCommentExample example) { method example (line 1875) | public LitemallCommentExample example() { method andIf (line 1885) | @Deprecated method when (line 1899) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1912) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1927) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1931) | @Deprecated method add (line 1939) | Criteria add(Criteria add); class Criterion (line 1949) | public static class Criterion { method getCondition (line 1966) | public String getCondition() { method getValue (line 1970) | public Object getValue() { method getSecondValue (line 1974) | public Object getSecondValue() { method isNoValue (line 1978) | public boolean isNoValue() { method isSingleValue (line 1982) | public boolean isSingleValue() { method isBetweenValue (line 1986) | public boolean isBetweenValue() { method isListValue (line 1990) | public boolean isListValue() { method getTypeHandler (line 1994) | public String getTypeHandler() { method Criterion (line 1998) | protected Criterion(String condition) { method Criterion (line 2005) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2017) | protected Criterion(String condition, Object value) { method Criterion (line 2021) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2030) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2035) | public interface ICriteriaWhen { method criteria (line 2042) | void criteria(Criteria criteria); type IExampleWhen (line 2045) | public interface IExampleWhen { method example (line 2052) | void example(org.linlinjava.litemall.db.domain.LitemallCommentExampl... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCoupon.java class LitemallCoupon (line 8) | public class LitemallCoupon { method getId (line 213) | public Integer getId() { method setId (line 225) | public void setId(Integer id) { method getName (line 237) | public String getName() { method setName (line 249) | public void setName(String name) { method getDesc (line 261) | public String getDesc() { method setDesc (line 273) | public void setDesc(String desc) { method getTag (line 285) | public String getTag() { method setTag (line 297) | public void setTag(String tag) { method getTotal (line 309) | public Integer getTotal() { method setTotal (line 321) | public void setTotal(Integer total) { method getDiscount (line 333) | public BigDecimal getDiscount() { method setDiscount (line 345) | public void setDiscount(BigDecimal discount) { method getMin (line 357) | public BigDecimal getMin() { method setMin (line 369) | public void setMin(BigDecimal min) { method getLimit (line 381) | public Short getLimit() { method setLimit (line 393) | public void setLimit(Short limit) { method getType (line 405) | public Short getType() { method setType (line 417) | public void setType(Short type) { method getStatus (line 429) | public Short getStatus() { method setStatus (line 441) | public void setStatus(Short status) { method getGoodsType (line 453) | public Short getGoodsType() { method setGoodsType (line 465) | public void setGoodsType(Short goodsType) { method getGoodsValue (line 477) | public Integer[] getGoodsValue() { method setGoodsValue (line 489) | public void setGoodsValue(Integer[] goodsValue) { method getCode (line 501) | public String getCode() { method setCode (line 513) | public void setCode(String code) { method getTimeType (line 525) | public Short getTimeType() { method setTimeType (line 537) | public void setTimeType(Short timeType) { method getDays (line 549) | public Short getDays() { method setDays (line 561) | public void setDays(Short days) { method getStartTime (line 573) | public LocalDateTime getStartTime() { method setStartTime (line 585) | public void setStartTime(LocalDateTime startTime) { method getEndTime (line 597) | public LocalDateTime getEndTime() { method setEndTime (line 609) | public void setEndTime(LocalDateTime endTime) { method getAddTime (line 621) | public LocalDateTime getAddTime() { method setAddTime (line 633) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 645) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 657) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 667) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 679) | public Boolean getDeleted() { method setDeleted (line 691) | public void setDeleted(Boolean deleted) { method toString (line 701) | @Override method equals (line 739) | @Override method hashCode (line 779) | @Override type Deleted (line 812) | public enum Deleted { method Deleted (line 838) | Deleted(Boolean value, String name) { method getValue (line 849) | public Boolean getValue() { method value (line 859) | public Boolean value() { method getName (line 869) | public String getName() { type Column (line 880) | public enum Column { method value (line 956) | public String value() { method getValue (line 966) | public String getValue() { method getJavaProperty (line 976) | public String getJavaProperty() { method getJdbcType (line 986) | public String getJdbcType() { method Column (line 996) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 1009) | public String desc() { method asc (line 1019) | public String asc() { method excludes (line 1029) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 1043) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 1057) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCouponExample.java class LitemallCouponExample (line 8) | public class LitemallCouponExample { method LitemallCouponExample (line 39) | public LitemallCouponExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallCouponExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallCouponExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallCouponExample when(boolean condition, IExampleWhen then) { method when (line 211) | public LitemallCouponExample when(boolean condition, IExampleWhen then... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 233) | protected GeneratedCriteria() { method getGoodsValueCriteria (line 239) | public List getGoodsValueCriteria() { method addGoodsValueCriterion (line 243) | protected void addGoodsValueCriterion(String condition, Object value... method addGoodsValueCriterion (line 251) | protected void addGoodsValueCriterion(String condition, Integer[] va... method isValid (line 259) | public boolean isValid() { method getAllCriteria (line 264) | public List getAllCriteria() { method getCriteria (line 273) | public List getCriteria() { method addCriterion (line 277) | protected void addCriterion(String condition) { method addCriterion (line 285) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 293) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 301) | public Criteria andIdIsNull() { method andIdIsNotNull (line 306) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 311) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 322) | public Criteria andIdEqualToColumn(LitemallCoupon.Column column) { method andIdNotEqualTo (line 327) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 338) | public Criteria andIdNotEqualToColumn(LitemallCoupon.Column column) { method andIdGreaterThan (line 343) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 354) | public Criteria andIdGreaterThanColumn(LitemallCoupon.Column column) { method andIdGreaterThanOrEqualTo (line 359) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 370) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallCoupon.Colum... method andIdLessThan (line 375) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 386) | public Criteria andIdLessThanColumn(LitemallCoupon.Column column) { method andIdLessThanOrEqualTo (line 391) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 402) | public Criteria andIdLessThanOrEqualToColumn(LitemallCoupon.Column c... method andIdIn (line 407) | public Criteria andIdIn(List values) { method andIdNotIn (line 412) | public Criteria andIdNotIn(List values) { method andIdBetween (line 417) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 422) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 427) | public Criteria andNameIsNull() { method andNameIsNotNull (line 432) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 437) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 448) | public Criteria andNameEqualToColumn(LitemallCoupon.Column column) { method andNameNotEqualTo (line 453) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 464) | public Criteria andNameNotEqualToColumn(LitemallCoupon.Column column) { method andNameGreaterThan (line 469) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 480) | public Criteria andNameGreaterThanColumn(LitemallCoupon.Column colum... method andNameGreaterThanOrEqualTo (line 485) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 496) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallCoupon.Col... method andNameLessThan (line 501) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 512) | public Criteria andNameLessThanColumn(LitemallCoupon.Column column) { method andNameLessThanOrEqualTo (line 517) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 528) | public Criteria andNameLessThanOrEqualToColumn(LitemallCoupon.Column... method andNameLike (line 533) | public Criteria andNameLike(String value) { method andNameNotLike (line 538) | public Criteria andNameNotLike(String value) { method andNameIn (line 543) | public Criteria andNameIn(List values) { method andNameNotIn (line 548) | public Criteria andNameNotIn(List values) { method andNameBetween (line 553) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 558) | public Criteria andNameNotBetween(String value1, String value2) { method andDescIsNull (line 563) | public Criteria andDescIsNull() { method andDescIsNotNull (line 568) | public Criteria andDescIsNotNull() { method andDescEqualTo (line 573) | public Criteria andDescEqualTo(String value) { method andDescEqualToColumn (line 584) | public Criteria andDescEqualToColumn(LitemallCoupon.Column column) { method andDescNotEqualTo (line 589) | public Criteria andDescNotEqualTo(String value) { method andDescNotEqualToColumn (line 600) | public Criteria andDescNotEqualToColumn(LitemallCoupon.Column column) { method andDescGreaterThan (line 605) | public Criteria andDescGreaterThan(String value) { method andDescGreaterThanColumn (line 616) | public Criteria andDescGreaterThanColumn(LitemallCoupon.Column colum... method andDescGreaterThanOrEqualTo (line 621) | public Criteria andDescGreaterThanOrEqualTo(String value) { method andDescGreaterThanOrEqualToColumn (line 632) | public Criteria andDescGreaterThanOrEqualToColumn(LitemallCoupon.Col... method andDescLessThan (line 637) | public Criteria andDescLessThan(String value) { method andDescLessThanColumn (line 648) | public Criteria andDescLessThanColumn(LitemallCoupon.Column column) { method andDescLessThanOrEqualTo (line 653) | public Criteria andDescLessThanOrEqualTo(String value) { method andDescLessThanOrEqualToColumn (line 664) | public Criteria andDescLessThanOrEqualToColumn(LitemallCoupon.Column... method andDescLike (line 669) | public Criteria andDescLike(String value) { method andDescNotLike (line 674) | public Criteria andDescNotLike(String value) { method andDescIn (line 679) | public Criteria andDescIn(List values) { method andDescNotIn (line 684) | public Criteria andDescNotIn(List values) { method andDescBetween (line 689) | public Criteria andDescBetween(String value1, String value2) { method andDescNotBetween (line 694) | public Criteria andDescNotBetween(String value1, String value2) { method andTagIsNull (line 699) | public Criteria andTagIsNull() { method andTagIsNotNull (line 704) | public Criteria andTagIsNotNull() { method andTagEqualTo (line 709) | public Criteria andTagEqualTo(String value) { method andTagEqualToColumn (line 720) | public Criteria andTagEqualToColumn(LitemallCoupon.Column column) { method andTagNotEqualTo (line 725) | public Criteria andTagNotEqualTo(String value) { method andTagNotEqualToColumn (line 736) | public Criteria andTagNotEqualToColumn(LitemallCoupon.Column column) { method andTagGreaterThan (line 741) | public Criteria andTagGreaterThan(String value) { method andTagGreaterThanColumn (line 752) | public Criteria andTagGreaterThanColumn(LitemallCoupon.Column column) { method andTagGreaterThanOrEqualTo (line 757) | public Criteria andTagGreaterThanOrEqualTo(String value) { method andTagGreaterThanOrEqualToColumn (line 768) | public Criteria andTagGreaterThanOrEqualToColumn(LitemallCoupon.Colu... method andTagLessThan (line 773) | public Criteria andTagLessThan(String value) { method andTagLessThanColumn (line 784) | public Criteria andTagLessThanColumn(LitemallCoupon.Column column) { method andTagLessThanOrEqualTo (line 789) | public Criteria andTagLessThanOrEqualTo(String value) { method andTagLessThanOrEqualToColumn (line 800) | public Criteria andTagLessThanOrEqualToColumn(LitemallCoupon.Column ... method andTagLike (line 805) | public Criteria andTagLike(String value) { method andTagNotLike (line 810) | public Criteria andTagNotLike(String value) { method andTagIn (line 815) | public Criteria andTagIn(List values) { method andTagNotIn (line 820) | public Criteria andTagNotIn(List values) { method andTagBetween (line 825) | public Criteria andTagBetween(String value1, String value2) { method andTagNotBetween (line 830) | public Criteria andTagNotBetween(String value1, String value2) { method andTotalIsNull (line 835) | public Criteria andTotalIsNull() { method andTotalIsNotNull (line 840) | public Criteria andTotalIsNotNull() { method andTotalEqualTo (line 845) | public Criteria andTotalEqualTo(Integer value) { method andTotalEqualToColumn (line 856) | public Criteria andTotalEqualToColumn(LitemallCoupon.Column column) { method andTotalNotEqualTo (line 861) | public Criteria andTotalNotEqualTo(Integer value) { method andTotalNotEqualToColumn (line 872) | public Criteria andTotalNotEqualToColumn(LitemallCoupon.Column colum... method andTotalGreaterThan (line 877) | public Criteria andTotalGreaterThan(Integer value) { method andTotalGreaterThanColumn (line 888) | public Criteria andTotalGreaterThanColumn(LitemallCoupon.Column colu... method andTotalGreaterThanOrEqualTo (line 893) | public Criteria andTotalGreaterThanOrEqualTo(Integer value) { method andTotalGreaterThanOrEqualToColumn (line 904) | public Criteria andTotalGreaterThanOrEqualToColumn(LitemallCoupon.Co... method andTotalLessThan (line 909) | public Criteria andTotalLessThan(Integer value) { method andTotalLessThanColumn (line 920) | public Criteria andTotalLessThanColumn(LitemallCoupon.Column column) { method andTotalLessThanOrEqualTo (line 925) | public Criteria andTotalLessThanOrEqualTo(Integer value) { method andTotalLessThanOrEqualToColumn (line 936) | public Criteria andTotalLessThanOrEqualToColumn(LitemallCoupon.Colum... method andTotalIn (line 941) | public Criteria andTotalIn(List values) { method andTotalNotIn (line 946) | public Criteria andTotalNotIn(List values) { method andTotalBetween (line 951) | public Criteria andTotalBetween(Integer value1, Integer value2) { method andTotalNotBetween (line 956) | public Criteria andTotalNotBetween(Integer value1, Integer value2) { method andDiscountIsNull (line 961) | public Criteria andDiscountIsNull() { method andDiscountIsNotNull (line 966) | public Criteria andDiscountIsNotNull() { method andDiscountEqualTo (line 971) | public Criteria andDiscountEqualTo(BigDecimal value) { method andDiscountEqualToColumn (line 982) | public Criteria andDiscountEqualToColumn(LitemallCoupon.Column colum... method andDiscountNotEqualTo (line 987) | public Criteria andDiscountNotEqualTo(BigDecimal value) { method andDiscountNotEqualToColumn (line 998) | public Criteria andDiscountNotEqualToColumn(LitemallCoupon.Column co... method andDiscountGreaterThan (line 1003) | public Criteria andDiscountGreaterThan(BigDecimal value) { method andDiscountGreaterThanColumn (line 1014) | public Criteria andDiscountGreaterThanColumn(LitemallCoupon.Column c... method andDiscountGreaterThanOrEqualTo (line 1019) | public Criteria andDiscountGreaterThanOrEqualTo(BigDecimal value) { method andDiscountGreaterThanOrEqualToColumn (line 1030) | public Criteria andDiscountGreaterThanOrEqualToColumn(LitemallCoupon... method andDiscountLessThan (line 1035) | public Criteria andDiscountLessThan(BigDecimal value) { method andDiscountLessThanColumn (line 1046) | public Criteria andDiscountLessThanColumn(LitemallCoupon.Column colu... method andDiscountLessThanOrEqualTo (line 1051) | public Criteria andDiscountLessThanOrEqualTo(BigDecimal value) { method andDiscountLessThanOrEqualToColumn (line 1062) | public Criteria andDiscountLessThanOrEqualToColumn(LitemallCoupon.Co... method andDiscountIn (line 1067) | public Criteria andDiscountIn(List values) { method andDiscountNotIn (line 1072) | public Criteria andDiscountNotIn(List values) { method andDiscountBetween (line 1077) | public Criteria andDiscountBetween(BigDecimal value1, BigDecimal val... method andDiscountNotBetween (line 1082) | public Criteria andDiscountNotBetween(BigDecimal value1, BigDecimal ... method andMinIsNull (line 1087) | public Criteria andMinIsNull() { method andMinIsNotNull (line 1092) | public Criteria andMinIsNotNull() { method andMinEqualTo (line 1097) | public Criteria andMinEqualTo(BigDecimal value) { method andMinEqualToColumn (line 1108) | public Criteria andMinEqualToColumn(LitemallCoupon.Column column) { method andMinNotEqualTo (line 1113) | public Criteria andMinNotEqualTo(BigDecimal value) { method andMinNotEqualToColumn (line 1124) | public Criteria andMinNotEqualToColumn(LitemallCoupon.Column column) { method andMinGreaterThan (line 1129) | public Criteria andMinGreaterThan(BigDecimal value) { method andMinGreaterThanColumn (line 1140) | public Criteria andMinGreaterThanColumn(LitemallCoupon.Column column) { method andMinGreaterThanOrEqualTo (line 1145) | public Criteria andMinGreaterThanOrEqualTo(BigDecimal value) { method andMinGreaterThanOrEqualToColumn (line 1156) | public Criteria andMinGreaterThanOrEqualToColumn(LitemallCoupon.Colu... method andMinLessThan (line 1161) | public Criteria andMinLessThan(BigDecimal value) { method andMinLessThanColumn (line 1172) | public Criteria andMinLessThanColumn(LitemallCoupon.Column column) { method andMinLessThanOrEqualTo (line 1177) | public Criteria andMinLessThanOrEqualTo(BigDecimal value) { method andMinLessThanOrEqualToColumn (line 1188) | public Criteria andMinLessThanOrEqualToColumn(LitemallCoupon.Column ... method andMinIn (line 1193) | public Criteria andMinIn(List values) { method andMinNotIn (line 1198) | public Criteria andMinNotIn(List values) { method andMinBetween (line 1203) | public Criteria andMinBetween(BigDecimal value1, BigDecimal value2) { method andMinNotBetween (line 1208) | public Criteria andMinNotBetween(BigDecimal value1, BigDecimal value... method andLimitIsNull (line 1213) | public Criteria andLimitIsNull() { method andLimitIsNotNull (line 1218) | public Criteria andLimitIsNotNull() { method andLimitEqualTo (line 1223) | public Criteria andLimitEqualTo(Short value) { method andLimitEqualToColumn (line 1234) | public Criteria andLimitEqualToColumn(LitemallCoupon.Column column) { method andLimitNotEqualTo (line 1239) | public Criteria andLimitNotEqualTo(Short value) { method andLimitNotEqualToColumn (line 1250) | public Criteria andLimitNotEqualToColumn(LitemallCoupon.Column colum... method andLimitGreaterThan (line 1255) | public Criteria andLimitGreaterThan(Short value) { method andLimitGreaterThanColumn (line 1266) | public Criteria andLimitGreaterThanColumn(LitemallCoupon.Column colu... method andLimitGreaterThanOrEqualTo (line 1271) | public Criteria andLimitGreaterThanOrEqualTo(Short value) { method andLimitGreaterThanOrEqualToColumn (line 1282) | public Criteria andLimitGreaterThanOrEqualToColumn(LitemallCoupon.Co... method andLimitLessThan (line 1287) | public Criteria andLimitLessThan(Short value) { method andLimitLessThanColumn (line 1298) | public Criteria andLimitLessThanColumn(LitemallCoupon.Column column) { method andLimitLessThanOrEqualTo (line 1303) | public Criteria andLimitLessThanOrEqualTo(Short value) { method andLimitLessThanOrEqualToColumn (line 1314) | public Criteria andLimitLessThanOrEqualToColumn(LitemallCoupon.Colum... method andLimitIn (line 1319) | public Criteria andLimitIn(List values) { method andLimitNotIn (line 1324) | public Criteria andLimitNotIn(List values) { method andLimitBetween (line 1329) | public Criteria andLimitBetween(Short value1, Short value2) { method andLimitNotBetween (line 1334) | public Criteria andLimitNotBetween(Short value1, Short value2) { method andTypeIsNull (line 1339) | public Criteria andTypeIsNull() { method andTypeIsNotNull (line 1344) | public Criteria andTypeIsNotNull() { method andTypeEqualTo (line 1349) | public Criteria andTypeEqualTo(Short value) { method andTypeEqualToColumn (line 1360) | public Criteria andTypeEqualToColumn(LitemallCoupon.Column column) { method andTypeNotEqualTo (line 1365) | public Criteria andTypeNotEqualTo(Short value) { method andTypeNotEqualToColumn (line 1376) | public Criteria andTypeNotEqualToColumn(LitemallCoupon.Column column) { method andTypeGreaterThan (line 1381) | public Criteria andTypeGreaterThan(Short value) { method andTypeGreaterThanColumn (line 1392) | public Criteria andTypeGreaterThanColumn(LitemallCoupon.Column colum... method andTypeGreaterThanOrEqualTo (line 1397) | public Criteria andTypeGreaterThanOrEqualTo(Short value) { method andTypeGreaterThanOrEqualToColumn (line 1408) | public Criteria andTypeGreaterThanOrEqualToColumn(LitemallCoupon.Col... method andTypeLessThan (line 1413) | public Criteria andTypeLessThan(Short value) { method andTypeLessThanColumn (line 1424) | public Criteria andTypeLessThanColumn(LitemallCoupon.Column column) { method andTypeLessThanOrEqualTo (line 1429) | public Criteria andTypeLessThanOrEqualTo(Short value) { method andTypeLessThanOrEqualToColumn (line 1440) | public Criteria andTypeLessThanOrEqualToColumn(LitemallCoupon.Column... method andTypeIn (line 1445) | public Criteria andTypeIn(List values) { method andTypeNotIn (line 1450) | public Criteria andTypeNotIn(List values) { method andTypeBetween (line 1455) | public Criteria andTypeBetween(Short value1, Short value2) { method andTypeNotBetween (line 1460) | public Criteria andTypeNotBetween(Short value1, Short value2) { method andStatusIsNull (line 1465) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 1470) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 1475) | public Criteria andStatusEqualTo(Short value) { method andStatusEqualToColumn (line 1486) | public Criteria andStatusEqualToColumn(LitemallCoupon.Column column) { method andStatusNotEqualTo (line 1491) | public Criteria andStatusNotEqualTo(Short value) { method andStatusNotEqualToColumn (line 1502) | public Criteria andStatusNotEqualToColumn(LitemallCoupon.Column colu... method andStatusGreaterThan (line 1507) | public Criteria andStatusGreaterThan(Short value) { method andStatusGreaterThanColumn (line 1518) | public Criteria andStatusGreaterThanColumn(LitemallCoupon.Column col... method andStatusGreaterThanOrEqualTo (line 1523) | public Criteria andStatusGreaterThanOrEqualTo(Short value) { method andStatusGreaterThanOrEqualToColumn (line 1534) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallCoupon.C... method andStatusLessThan (line 1539) | public Criteria andStatusLessThan(Short value) { method andStatusLessThanColumn (line 1550) | public Criteria andStatusLessThanColumn(LitemallCoupon.Column column) { method andStatusLessThanOrEqualTo (line 1555) | public Criteria andStatusLessThanOrEqualTo(Short value) { method andStatusLessThanOrEqualToColumn (line 1566) | public Criteria andStatusLessThanOrEqualToColumn(LitemallCoupon.Colu... method andStatusIn (line 1571) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 1576) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 1581) | public Criteria andStatusBetween(Short value1, Short value2) { method andStatusNotBetween (line 1586) | public Criteria andStatusNotBetween(Short value1, Short value2) { method andGoodsTypeIsNull (line 1591) | public Criteria andGoodsTypeIsNull() { method andGoodsTypeIsNotNull (line 1596) | public Criteria andGoodsTypeIsNotNull() { method andGoodsTypeEqualTo (line 1601) | public Criteria andGoodsTypeEqualTo(Short value) { method andGoodsTypeEqualToColumn (line 1612) | public Criteria andGoodsTypeEqualToColumn(LitemallCoupon.Column colu... method andGoodsTypeNotEqualTo (line 1617) | public Criteria andGoodsTypeNotEqualTo(Short value) { method andGoodsTypeNotEqualToColumn (line 1628) | public Criteria andGoodsTypeNotEqualToColumn(LitemallCoupon.Column c... method andGoodsTypeGreaterThan (line 1633) | public Criteria andGoodsTypeGreaterThan(Short value) { method andGoodsTypeGreaterThanColumn (line 1644) | public Criteria andGoodsTypeGreaterThanColumn(LitemallCoupon.Column ... method andGoodsTypeGreaterThanOrEqualTo (line 1649) | public Criteria andGoodsTypeGreaterThanOrEqualTo(Short value) { method andGoodsTypeGreaterThanOrEqualToColumn (line 1660) | public Criteria andGoodsTypeGreaterThanOrEqualToColumn(LitemallCoupo... method andGoodsTypeLessThan (line 1665) | public Criteria andGoodsTypeLessThan(Short value) { method andGoodsTypeLessThanColumn (line 1676) | public Criteria andGoodsTypeLessThanColumn(LitemallCoupon.Column col... method andGoodsTypeLessThanOrEqualTo (line 1681) | public Criteria andGoodsTypeLessThanOrEqualTo(Short value) { method andGoodsTypeLessThanOrEqualToColumn (line 1692) | public Criteria andGoodsTypeLessThanOrEqualToColumn(LitemallCoupon.C... method andGoodsTypeIn (line 1697) | public Criteria andGoodsTypeIn(List values) { method andGoodsTypeNotIn (line 1702) | public Criteria andGoodsTypeNotIn(List values) { method andGoodsTypeBetween (line 1707) | public Criteria andGoodsTypeBetween(Short value1, Short value2) { method andGoodsTypeNotBetween (line 1712) | public Criteria andGoodsTypeNotBetween(Short value1, Short value2) { method andGoodsValueIsNull (line 1717) | public Criteria andGoodsValueIsNull() { method andGoodsValueIsNotNull (line 1722) | public Criteria andGoodsValueIsNotNull() { method andGoodsValueEqualTo (line 1727) | public Criteria andGoodsValueEqualTo(Integer[] value) { method andGoodsValueEqualToColumn (line 1738) | public Criteria andGoodsValueEqualToColumn(LitemallCoupon.Column col... method andGoodsValueNotEqualTo (line 1743) | public Criteria andGoodsValueNotEqualTo(Integer[] value) { method andGoodsValueNotEqualToColumn (line 1754) | public Criteria andGoodsValueNotEqualToColumn(LitemallCoupon.Column ... method andGoodsValueGreaterThan (line 1759) | public Criteria andGoodsValueGreaterThan(Integer[] value) { method andGoodsValueGreaterThanColumn (line 1770) | public Criteria andGoodsValueGreaterThanColumn(LitemallCoupon.Column... method andGoodsValueGreaterThanOrEqualTo (line 1775) | public Criteria andGoodsValueGreaterThanOrEqualTo(Integer[] value) { method andGoodsValueGreaterThanOrEqualToColumn (line 1786) | public Criteria andGoodsValueGreaterThanOrEqualToColumn(LitemallCoup... method andGoodsValueLessThan (line 1791) | public Criteria andGoodsValueLessThan(Integer[] value) { method andGoodsValueLessThanColumn (line 1802) | public Criteria andGoodsValueLessThanColumn(LitemallCoupon.Column co... method andGoodsValueLessThanOrEqualTo (line 1807) | public Criteria andGoodsValueLessThanOrEqualTo(Integer[] value) { method andGoodsValueLessThanOrEqualToColumn (line 1818) | public Criteria andGoodsValueLessThanOrEqualToColumn(LitemallCoupon.... method andGoodsValueLike (line 1823) | public Criteria andGoodsValueLike(Integer[] value) { method andGoodsValueNotLike (line 1828) | public Criteria andGoodsValueNotLike(Integer[] value) { method andGoodsValueIn (line 1833) | public Criteria andGoodsValueIn(List values) { method andGoodsValueNotIn (line 1838) | public Criteria andGoodsValueNotIn(List values) { method andGoodsValueBetween (line 1843) | public Criteria andGoodsValueBetween(Integer[] value1, Integer[] val... method andGoodsValueNotBetween (line 1848) | public Criteria andGoodsValueNotBetween(Integer[] value1, Integer[] ... method andCodeIsNull (line 1853) | public Criteria andCodeIsNull() { method andCodeIsNotNull (line 1858) | public Criteria andCodeIsNotNull() { method andCodeEqualTo (line 1863) | public Criteria andCodeEqualTo(String value) { method andCodeEqualToColumn (line 1874) | public Criteria andCodeEqualToColumn(LitemallCoupon.Column column) { method andCodeNotEqualTo (line 1879) | public Criteria andCodeNotEqualTo(String value) { method andCodeNotEqualToColumn (line 1890) | public Criteria andCodeNotEqualToColumn(LitemallCoupon.Column column) { method andCodeGreaterThan (line 1895) | public Criteria andCodeGreaterThan(String value) { method andCodeGreaterThanColumn (line 1906) | public Criteria andCodeGreaterThanColumn(LitemallCoupon.Column colum... method andCodeGreaterThanOrEqualTo (line 1911) | public Criteria andCodeGreaterThanOrEqualTo(String value) { method andCodeGreaterThanOrEqualToColumn (line 1922) | public Criteria andCodeGreaterThanOrEqualToColumn(LitemallCoupon.Col... method andCodeLessThan (line 1927) | public Criteria andCodeLessThan(String value) { method andCodeLessThanColumn (line 1938) | public Criteria andCodeLessThanColumn(LitemallCoupon.Column column) { method andCodeLessThanOrEqualTo (line 1943) | public Criteria andCodeLessThanOrEqualTo(String value) { method andCodeLessThanOrEqualToColumn (line 1954) | public Criteria andCodeLessThanOrEqualToColumn(LitemallCoupon.Column... method andCodeLike (line 1959) | public Criteria andCodeLike(String value) { method andCodeNotLike (line 1964) | public Criteria andCodeNotLike(String value) { method andCodeIn (line 1969) | public Criteria andCodeIn(List values) { method andCodeNotIn (line 1974) | public Criteria andCodeNotIn(List values) { method andCodeBetween (line 1979) | public Criteria andCodeBetween(String value1, String value2) { method andCodeNotBetween (line 1984) | public Criteria andCodeNotBetween(String value1, String value2) { method andTimeTypeIsNull (line 1989) | public Criteria andTimeTypeIsNull() { method andTimeTypeIsNotNull (line 1994) | public Criteria andTimeTypeIsNotNull() { method andTimeTypeEqualTo (line 1999) | public Criteria andTimeTypeEqualTo(Short value) { method andTimeTypeEqualToColumn (line 2010) | public Criteria andTimeTypeEqualToColumn(LitemallCoupon.Column colum... method andTimeTypeNotEqualTo (line 2015) | public Criteria andTimeTypeNotEqualTo(Short value) { method andTimeTypeNotEqualToColumn (line 2026) | public Criteria andTimeTypeNotEqualToColumn(LitemallCoupon.Column co... method andTimeTypeGreaterThan (line 2031) | public Criteria andTimeTypeGreaterThan(Short value) { method andTimeTypeGreaterThanColumn (line 2042) | public Criteria andTimeTypeGreaterThanColumn(LitemallCoupon.Column c... method andTimeTypeGreaterThanOrEqualTo (line 2047) | public Criteria andTimeTypeGreaterThanOrEqualTo(Short value) { method andTimeTypeGreaterThanOrEqualToColumn (line 2058) | public Criteria andTimeTypeGreaterThanOrEqualToColumn(LitemallCoupon... method andTimeTypeLessThan (line 2063) | public Criteria andTimeTypeLessThan(Short value) { method andTimeTypeLessThanColumn (line 2074) | public Criteria andTimeTypeLessThanColumn(LitemallCoupon.Column colu... method andTimeTypeLessThanOrEqualTo (line 2079) | public Criteria andTimeTypeLessThanOrEqualTo(Short value) { method andTimeTypeLessThanOrEqualToColumn (line 2090) | public Criteria andTimeTypeLessThanOrEqualToColumn(LitemallCoupon.Co... method andTimeTypeIn (line 2095) | public Criteria andTimeTypeIn(List values) { method andTimeTypeNotIn (line 2100) | public Criteria andTimeTypeNotIn(List values) { method andTimeTypeBetween (line 2105) | public Criteria andTimeTypeBetween(Short value1, Short value2) { method andTimeTypeNotBetween (line 2110) | public Criteria andTimeTypeNotBetween(Short value1, Short value2) { method andDaysIsNull (line 2115) | public Criteria andDaysIsNull() { method andDaysIsNotNull (line 2120) | public Criteria andDaysIsNotNull() { method andDaysEqualTo (line 2125) | public Criteria andDaysEqualTo(Short value) { method andDaysEqualToColumn (line 2136) | public Criteria andDaysEqualToColumn(LitemallCoupon.Column column) { method andDaysNotEqualTo (line 2141) | public Criteria andDaysNotEqualTo(Short value) { method andDaysNotEqualToColumn (line 2152) | public Criteria andDaysNotEqualToColumn(LitemallCoupon.Column column) { method andDaysGreaterThan (line 2157) | public Criteria andDaysGreaterThan(Short value) { method andDaysGreaterThanColumn (line 2168) | public Criteria andDaysGreaterThanColumn(LitemallCoupon.Column colum... method andDaysGreaterThanOrEqualTo (line 2173) | public Criteria andDaysGreaterThanOrEqualTo(Short value) { method andDaysGreaterThanOrEqualToColumn (line 2184) | public Criteria andDaysGreaterThanOrEqualToColumn(LitemallCoupon.Col... method andDaysLessThan (line 2189) | public Criteria andDaysLessThan(Short value) { method andDaysLessThanColumn (line 2200) | public Criteria andDaysLessThanColumn(LitemallCoupon.Column column) { method andDaysLessThanOrEqualTo (line 2205) | public Criteria andDaysLessThanOrEqualTo(Short value) { method andDaysLessThanOrEqualToColumn (line 2216) | public Criteria andDaysLessThanOrEqualToColumn(LitemallCoupon.Column... method andDaysIn (line 2221) | public Criteria andDaysIn(List values) { method andDaysNotIn (line 2226) | public Criteria andDaysNotIn(List values) { method andDaysBetween (line 2231) | public Criteria andDaysBetween(Short value1, Short value2) { method andDaysNotBetween (line 2236) | public Criteria andDaysNotBetween(Short value1, Short value2) { method andStartTimeIsNull (line 2241) | public Criteria andStartTimeIsNull() { method andStartTimeIsNotNull (line 2246) | public Criteria andStartTimeIsNotNull() { method andStartTimeEqualTo (line 2251) | public Criteria andStartTimeEqualTo(LocalDateTime value) { method andStartTimeEqualToColumn (line 2262) | public Criteria andStartTimeEqualToColumn(LitemallCoupon.Column colu... method andStartTimeNotEqualTo (line 2267) | public Criteria andStartTimeNotEqualTo(LocalDateTime value) { method andStartTimeNotEqualToColumn (line 2278) | public Criteria andStartTimeNotEqualToColumn(LitemallCoupon.Column c... method andStartTimeGreaterThan (line 2283) | public Criteria andStartTimeGreaterThan(LocalDateTime value) { method andStartTimeGreaterThanColumn (line 2294) | public Criteria andStartTimeGreaterThanColumn(LitemallCoupon.Column ... method andStartTimeGreaterThanOrEqualTo (line 2299) | public Criteria andStartTimeGreaterThanOrEqualTo(LocalDateTime value) { method andStartTimeGreaterThanOrEqualToColumn (line 2310) | public Criteria andStartTimeGreaterThanOrEqualToColumn(LitemallCoupo... method andStartTimeLessThan (line 2315) | public Criteria andStartTimeLessThan(LocalDateTime value) { method andStartTimeLessThanColumn (line 2326) | public Criteria andStartTimeLessThanColumn(LitemallCoupon.Column col... method andStartTimeLessThanOrEqualTo (line 2331) | public Criteria andStartTimeLessThanOrEqualTo(LocalDateTime value) { method andStartTimeLessThanOrEqualToColumn (line 2342) | public Criteria andStartTimeLessThanOrEqualToColumn(LitemallCoupon.C... method andStartTimeIn (line 2347) | public Criteria andStartTimeIn(List values) { method andStartTimeNotIn (line 2352) | public Criteria andStartTimeNotIn(List values) { method andStartTimeBetween (line 2357) | public Criteria andStartTimeBetween(LocalDateTime value1, LocalDateT... method andStartTimeNotBetween (line 2362) | public Criteria andStartTimeNotBetween(LocalDateTime value1, LocalDa... method andEndTimeIsNull (line 2367) | public Criteria andEndTimeIsNull() { method andEndTimeIsNotNull (line 2372) | public Criteria andEndTimeIsNotNull() { method andEndTimeEqualTo (line 2377) | public Criteria andEndTimeEqualTo(LocalDateTime value) { method andEndTimeEqualToColumn (line 2388) | public Criteria andEndTimeEqualToColumn(LitemallCoupon.Column column) { method andEndTimeNotEqualTo (line 2393) | public Criteria andEndTimeNotEqualTo(LocalDateTime value) { method andEndTimeNotEqualToColumn (line 2404) | public Criteria andEndTimeNotEqualToColumn(LitemallCoupon.Column col... method andEndTimeGreaterThan (line 2409) | public Criteria andEndTimeGreaterThan(LocalDateTime value) { method andEndTimeGreaterThanColumn (line 2420) | public Criteria andEndTimeGreaterThanColumn(LitemallCoupon.Column co... method andEndTimeGreaterThanOrEqualTo (line 2425) | public Criteria andEndTimeGreaterThanOrEqualTo(LocalDateTime value) { method andEndTimeGreaterThanOrEqualToColumn (line 2436) | public Criteria andEndTimeGreaterThanOrEqualToColumn(LitemallCoupon.... method andEndTimeLessThan (line 2441) | public Criteria andEndTimeLessThan(LocalDateTime value) { method andEndTimeLessThanColumn (line 2452) | public Criteria andEndTimeLessThanColumn(LitemallCoupon.Column colum... method andEndTimeLessThanOrEqualTo (line 2457) | public Criteria andEndTimeLessThanOrEqualTo(LocalDateTime value) { method andEndTimeLessThanOrEqualToColumn (line 2468) | public Criteria andEndTimeLessThanOrEqualToColumn(LitemallCoupon.Col... method andEndTimeIn (line 2473) | public Criteria andEndTimeIn(List values) { method andEndTimeNotIn (line 2478) | public Criteria andEndTimeNotIn(List values) { method andEndTimeBetween (line 2483) | public Criteria andEndTimeBetween(LocalDateTime value1, LocalDateTim... method andEndTimeNotBetween (line 2488) | public Criteria andEndTimeNotBetween(LocalDateTime value1, LocalDate... method andAddTimeIsNull (line 2493) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 2498) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 2503) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 2514) | public Criteria andAddTimeEqualToColumn(LitemallCoupon.Column column) { method andAddTimeNotEqualTo (line 2519) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 2530) | public Criteria andAddTimeNotEqualToColumn(LitemallCoupon.Column col... method andAddTimeGreaterThan (line 2535) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 2546) | public Criteria andAddTimeGreaterThanColumn(LitemallCoupon.Column co... method andAddTimeGreaterThanOrEqualTo (line 2551) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 2562) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallCoupon.... method andAddTimeLessThan (line 2567) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 2578) | public Criteria andAddTimeLessThanColumn(LitemallCoupon.Column colum... method andAddTimeLessThanOrEqualTo (line 2583) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 2594) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallCoupon.Col... method andAddTimeIn (line 2599) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 2604) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 2609) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 2614) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 2619) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 2624) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 2629) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 2640) | public Criteria andUpdateTimeEqualToColumn(LitemallCoupon.Column col... method andUpdateTimeNotEqualTo (line 2645) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 2656) | public Criteria andUpdateTimeNotEqualToColumn(LitemallCoupon.Column ... method andUpdateTimeGreaterThan (line 2661) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 2672) | public Criteria andUpdateTimeGreaterThanColumn(LitemallCoupon.Column... method andUpdateTimeGreaterThanOrEqualTo (line 2677) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 2688) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallCoup... method andUpdateTimeLessThan (line 2693) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 2704) | public Criteria andUpdateTimeLessThanColumn(LitemallCoupon.Column co... method andUpdateTimeLessThanOrEqualTo (line 2709) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 2720) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallCoupon.... method andUpdateTimeIn (line 2725) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 2730) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 2735) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 2740) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 2745) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 2750) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 2755) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 2766) | public Criteria andDeletedEqualToColumn(LitemallCoupon.Column column) { method andDeletedNotEqualTo (line 2771) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 2782) | public Criteria andDeletedNotEqualToColumn(LitemallCoupon.Column col... method andDeletedGreaterThan (line 2787) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 2798) | public Criteria andDeletedGreaterThanColumn(LitemallCoupon.Column co... method andDeletedGreaterThanOrEqualTo (line 2803) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 2814) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallCoupon.... method andDeletedLessThan (line 2819) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 2830) | public Criteria andDeletedLessThanColumn(LitemallCoupon.Column colum... method andDeletedLessThanOrEqualTo (line 2835) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 2846) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallCoupon.Col... method andDeletedIn (line 2851) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 2856) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 2861) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 2866) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 2878) | public static class Criteria extends GeneratedCriteria { method Criteria (line 2893) | protected Criteria(LitemallCouponExample example) { method example (line 2904) | public LitemallCouponExample example() { method andIf (line 2914) | @Deprecated method when (line 2928) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 2941) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 2956) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 2960) | @Deprecated method add (line 2968) | Criteria add(Criteria add); class Criterion (line 2978) | public static class Criterion { method getCondition (line 2995) | public String getCondition() { method getValue (line 2999) | public Object getValue() { method getSecondValue (line 3003) | public Object getSecondValue() { method isNoValue (line 3007) | public boolean isNoValue() { method isSingleValue (line 3011) | public boolean isSingleValue() { method isBetweenValue (line 3015) | public boolean isBetweenValue() { method isListValue (line 3019) | public boolean isListValue() { method getTypeHandler (line 3023) | public String getTypeHandler() { method Criterion (line 3027) | protected Criterion(String condition) { method Criterion (line 3034) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 3046) | protected Criterion(String condition, Object value) { method Criterion (line 3050) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 3059) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 3064) | public interface ICriteriaWhen { method criteria (line 3071) | void criteria(Criteria criteria); type IExampleWhen (line 3074) | public interface IExampleWhen { method example (line 3081) | void example(org.linlinjava.litemall.db.domain.LitemallCouponExample... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCouponUser.java class LitemallCouponUser (line 7) | public class LitemallCouponUser { method getId (line 131) | public Integer getId() { method setId (line 143) | public void setId(Integer id) { method getUserId (line 155) | public Integer getUserId() { method setUserId (line 167) | public void setUserId(Integer userId) { method getCouponId (line 179) | public Integer getCouponId() { method setCouponId (line 191) | public void setCouponId(Integer couponId) { method getStatus (line 203) | public Short getStatus() { method setStatus (line 215) | public void setStatus(Short status) { method getUsedTime (line 227) | public LocalDateTime getUsedTime() { method setUsedTime (line 239) | public void setUsedTime(LocalDateTime usedTime) { method getStartTime (line 251) | public LocalDateTime getStartTime() { method setStartTime (line 263) | public void setStartTime(LocalDateTime startTime) { method getEndTime (line 275) | public LocalDateTime getEndTime() { method setEndTime (line 287) | public void setEndTime(LocalDateTime endTime) { method getOrderId (line 299) | public Integer getOrderId() { method setOrderId (line 311) | public void setOrderId(Integer orderId) { method getAddTime (line 323) | public LocalDateTime getAddTime() { method setAddTime (line 335) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 347) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 359) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 369) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 381) | public Boolean getDeleted() { method setDeleted (line 393) | public void setDeleted(Boolean deleted) { method toString (line 403) | @Override method equals (line 432) | @Override method hashCode (line 463) | @Override type Deleted (line 487) | public enum Deleted { method Deleted (line 513) | Deleted(Boolean value, String name) { method getValue (line 524) | public Boolean getValue() { method value (line 534) | public Boolean value() { method getName (line 544) | public String getName() { type Column (line 555) | public enum Column { method value (line 622) | public String value() { method getValue (line 632) | public String getValue() { method getJavaProperty (line 642) | public String getJavaProperty() { method getJdbcType (line 652) | public String getJdbcType() { method Column (line 662) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 675) | public String desc() { method asc (line 685) | public String asc() { method excludes (line 695) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 709) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 723) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallCouponUserExample.java class LitemallCouponUserExample (line 7) | public class LitemallCouponUserExample { method LitemallCouponUserExample (line 38) | public LitemallCouponUserExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallCouponUserExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallCouponUserExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallCouponUserExample when(boolean condition, IExampleWhen ... method when (line 210) | public LitemallCouponUserExample when(boolean condition, IExampleWhen ... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallCouponUser.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallCouponUser.Column colu... method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallCouponUser.Column col... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallCouponUser.C... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallCouponUser.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallCouponUser.Colu... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 392) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 397) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 402) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 413) | public Criteria andUserIdEqualToColumn(LitemallCouponUser.Column col... method andUserIdNotEqualTo (line 418) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 429) | public Criteria andUserIdNotEqualToColumn(LitemallCouponUser.Column ... method andUserIdGreaterThan (line 434) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 445) | public Criteria andUserIdGreaterThanColumn(LitemallCouponUser.Column... method andUserIdGreaterThanOrEqualTo (line 450) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 461) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallCouponUs... method andUserIdLessThan (line 466) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 477) | public Criteria andUserIdLessThanColumn(LitemallCouponUser.Column co... method andUserIdLessThanOrEqualTo (line 482) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 493) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallCouponUser.... method andUserIdIn (line 498) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 503) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 508) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 513) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andCouponIdIsNull (line 518) | public Criteria andCouponIdIsNull() { method andCouponIdIsNotNull (line 523) | public Criteria andCouponIdIsNotNull() { method andCouponIdEqualTo (line 528) | public Criteria andCouponIdEqualTo(Integer value) { method andCouponIdEqualToColumn (line 539) | public Criteria andCouponIdEqualToColumn(LitemallCouponUser.Column c... method andCouponIdNotEqualTo (line 544) | public Criteria andCouponIdNotEqualTo(Integer value) { method andCouponIdNotEqualToColumn (line 555) | public Criteria andCouponIdNotEqualToColumn(LitemallCouponUser.Colum... method andCouponIdGreaterThan (line 560) | public Criteria andCouponIdGreaterThan(Integer value) { method andCouponIdGreaterThanColumn (line 571) | public Criteria andCouponIdGreaterThanColumn(LitemallCouponUser.Colu... method andCouponIdGreaterThanOrEqualTo (line 576) | public Criteria andCouponIdGreaterThanOrEqualTo(Integer value) { method andCouponIdGreaterThanOrEqualToColumn (line 587) | public Criteria andCouponIdGreaterThanOrEqualToColumn(LitemallCoupon... method andCouponIdLessThan (line 592) | public Criteria andCouponIdLessThan(Integer value) { method andCouponIdLessThanColumn (line 603) | public Criteria andCouponIdLessThanColumn(LitemallCouponUser.Column ... method andCouponIdLessThanOrEqualTo (line 608) | public Criteria andCouponIdLessThanOrEqualTo(Integer value) { method andCouponIdLessThanOrEqualToColumn (line 619) | public Criteria andCouponIdLessThanOrEqualToColumn(LitemallCouponUse... method andCouponIdIn (line 624) | public Criteria andCouponIdIn(List values) { method andCouponIdNotIn (line 629) | public Criteria andCouponIdNotIn(List values) { method andCouponIdBetween (line 634) | public Criteria andCouponIdBetween(Integer value1, Integer value2) { method andCouponIdNotBetween (line 639) | public Criteria andCouponIdNotBetween(Integer value1, Integer value2) { method andStatusIsNull (line 644) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 649) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 654) | public Criteria andStatusEqualTo(Short value) { method andStatusEqualToColumn (line 665) | public Criteria andStatusEqualToColumn(LitemallCouponUser.Column col... method andStatusNotEqualTo (line 670) | public Criteria andStatusNotEqualTo(Short value) { method andStatusNotEqualToColumn (line 681) | public Criteria andStatusNotEqualToColumn(LitemallCouponUser.Column ... method andStatusGreaterThan (line 686) | public Criteria andStatusGreaterThan(Short value) { method andStatusGreaterThanColumn (line 697) | public Criteria andStatusGreaterThanColumn(LitemallCouponUser.Column... method andStatusGreaterThanOrEqualTo (line 702) | public Criteria andStatusGreaterThanOrEqualTo(Short value) { method andStatusGreaterThanOrEqualToColumn (line 713) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallCouponUs... method andStatusLessThan (line 718) | public Criteria andStatusLessThan(Short value) { method andStatusLessThanColumn (line 729) | public Criteria andStatusLessThanColumn(LitemallCouponUser.Column co... method andStatusLessThanOrEqualTo (line 734) | public Criteria andStatusLessThanOrEqualTo(Short value) { method andStatusLessThanOrEqualToColumn (line 745) | public Criteria andStatusLessThanOrEqualToColumn(LitemallCouponUser.... method andStatusIn (line 750) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 755) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 760) | public Criteria andStatusBetween(Short value1, Short value2) { method andStatusNotBetween (line 765) | public Criteria andStatusNotBetween(Short value1, Short value2) { method andUsedTimeIsNull (line 770) | public Criteria andUsedTimeIsNull() { method andUsedTimeIsNotNull (line 775) | public Criteria andUsedTimeIsNotNull() { method andUsedTimeEqualTo (line 780) | public Criteria andUsedTimeEqualTo(LocalDateTime value) { method andUsedTimeEqualToColumn (line 791) | public Criteria andUsedTimeEqualToColumn(LitemallCouponUser.Column c... method andUsedTimeNotEqualTo (line 796) | public Criteria andUsedTimeNotEqualTo(LocalDateTime value) { method andUsedTimeNotEqualToColumn (line 807) | public Criteria andUsedTimeNotEqualToColumn(LitemallCouponUser.Colum... method andUsedTimeGreaterThan (line 812) | public Criteria andUsedTimeGreaterThan(LocalDateTime value) { method andUsedTimeGreaterThanColumn (line 823) | public Criteria andUsedTimeGreaterThanColumn(LitemallCouponUser.Colu... method andUsedTimeGreaterThanOrEqualTo (line 828) | public Criteria andUsedTimeGreaterThanOrEqualTo(LocalDateTime value) { method andUsedTimeGreaterThanOrEqualToColumn (line 839) | public Criteria andUsedTimeGreaterThanOrEqualToColumn(LitemallCoupon... method andUsedTimeLessThan (line 844) | public Criteria andUsedTimeLessThan(LocalDateTime value) { method andUsedTimeLessThanColumn (line 855) | public Criteria andUsedTimeLessThanColumn(LitemallCouponUser.Column ... method andUsedTimeLessThanOrEqualTo (line 860) | public Criteria andUsedTimeLessThanOrEqualTo(LocalDateTime value) { method andUsedTimeLessThanOrEqualToColumn (line 871) | public Criteria andUsedTimeLessThanOrEqualToColumn(LitemallCouponUse... method andUsedTimeIn (line 876) | public Criteria andUsedTimeIn(List values) { method andUsedTimeNotIn (line 881) | public Criteria andUsedTimeNotIn(List values) { method andUsedTimeBetween (line 886) | public Criteria andUsedTimeBetween(LocalDateTime value1, LocalDateTi... method andUsedTimeNotBetween (line 891) | public Criteria andUsedTimeNotBetween(LocalDateTime value1, LocalDat... method andStartTimeIsNull (line 896) | public Criteria andStartTimeIsNull() { method andStartTimeIsNotNull (line 901) | public Criteria andStartTimeIsNotNull() { method andStartTimeEqualTo (line 906) | public Criteria andStartTimeEqualTo(LocalDateTime value) { method andStartTimeEqualToColumn (line 917) | public Criteria andStartTimeEqualToColumn(LitemallCouponUser.Column ... method andStartTimeNotEqualTo (line 922) | public Criteria andStartTimeNotEqualTo(LocalDateTime value) { method andStartTimeNotEqualToColumn (line 933) | public Criteria andStartTimeNotEqualToColumn(LitemallCouponUser.Colu... method andStartTimeGreaterThan (line 938) | public Criteria andStartTimeGreaterThan(LocalDateTime value) { method andStartTimeGreaterThanColumn (line 949) | public Criteria andStartTimeGreaterThanColumn(LitemallCouponUser.Col... method andStartTimeGreaterThanOrEqualTo (line 954) | public Criteria andStartTimeGreaterThanOrEqualTo(LocalDateTime value) { method andStartTimeGreaterThanOrEqualToColumn (line 965) | public Criteria andStartTimeGreaterThanOrEqualToColumn(LitemallCoupo... method andStartTimeLessThan (line 970) | public Criteria andStartTimeLessThan(LocalDateTime value) { method andStartTimeLessThanColumn (line 981) | public Criteria andStartTimeLessThanColumn(LitemallCouponUser.Column... method andStartTimeLessThanOrEqualTo (line 986) | public Criteria andStartTimeLessThanOrEqualTo(LocalDateTime value) { method andStartTimeLessThanOrEqualToColumn (line 997) | public Criteria andStartTimeLessThanOrEqualToColumn(LitemallCouponUs... method andStartTimeIn (line 1002) | public Criteria andStartTimeIn(List values) { method andStartTimeNotIn (line 1007) | public Criteria andStartTimeNotIn(List values) { method andStartTimeBetween (line 1012) | public Criteria andStartTimeBetween(LocalDateTime value1, LocalDateT... method andStartTimeNotBetween (line 1017) | public Criteria andStartTimeNotBetween(LocalDateTime value1, LocalDa... method andEndTimeIsNull (line 1022) | public Criteria andEndTimeIsNull() { method andEndTimeIsNotNull (line 1027) | public Criteria andEndTimeIsNotNull() { method andEndTimeEqualTo (line 1032) | public Criteria andEndTimeEqualTo(LocalDateTime value) { method andEndTimeEqualToColumn (line 1043) | public Criteria andEndTimeEqualToColumn(LitemallCouponUser.Column co... method andEndTimeNotEqualTo (line 1048) | public Criteria andEndTimeNotEqualTo(LocalDateTime value) { method andEndTimeNotEqualToColumn (line 1059) | public Criteria andEndTimeNotEqualToColumn(LitemallCouponUser.Column... method andEndTimeGreaterThan (line 1064) | public Criteria andEndTimeGreaterThan(LocalDateTime value) { method andEndTimeGreaterThanColumn (line 1075) | public Criteria andEndTimeGreaterThanColumn(LitemallCouponUser.Colum... method andEndTimeGreaterThanOrEqualTo (line 1080) | public Criteria andEndTimeGreaterThanOrEqualTo(LocalDateTime value) { method andEndTimeGreaterThanOrEqualToColumn (line 1091) | public Criteria andEndTimeGreaterThanOrEqualToColumn(LitemallCouponU... method andEndTimeLessThan (line 1096) | public Criteria andEndTimeLessThan(LocalDateTime value) { method andEndTimeLessThanColumn (line 1107) | public Criteria andEndTimeLessThanColumn(LitemallCouponUser.Column c... method andEndTimeLessThanOrEqualTo (line 1112) | public Criteria andEndTimeLessThanOrEqualTo(LocalDateTime value) { method andEndTimeLessThanOrEqualToColumn (line 1123) | public Criteria andEndTimeLessThanOrEqualToColumn(LitemallCouponUser... method andEndTimeIn (line 1128) | public Criteria andEndTimeIn(List values) { method andEndTimeNotIn (line 1133) | public Criteria andEndTimeNotIn(List values) { method andEndTimeBetween (line 1138) | public Criteria andEndTimeBetween(LocalDateTime value1, LocalDateTim... method andEndTimeNotBetween (line 1143) | public Criteria andEndTimeNotBetween(LocalDateTime value1, LocalDate... method andOrderIdIsNull (line 1148) | public Criteria andOrderIdIsNull() { method andOrderIdIsNotNull (line 1153) | public Criteria andOrderIdIsNotNull() { method andOrderIdEqualTo (line 1158) | public Criteria andOrderIdEqualTo(Integer value) { method andOrderIdEqualToColumn (line 1169) | public Criteria andOrderIdEqualToColumn(LitemallCouponUser.Column co... method andOrderIdNotEqualTo (line 1174) | public Criteria andOrderIdNotEqualTo(Integer value) { method andOrderIdNotEqualToColumn (line 1185) | public Criteria andOrderIdNotEqualToColumn(LitemallCouponUser.Column... method andOrderIdGreaterThan (line 1190) | public Criteria andOrderIdGreaterThan(Integer value) { method andOrderIdGreaterThanColumn (line 1201) | public Criteria andOrderIdGreaterThanColumn(LitemallCouponUser.Colum... method andOrderIdGreaterThanOrEqualTo (line 1206) | public Criteria andOrderIdGreaterThanOrEqualTo(Integer value) { method andOrderIdGreaterThanOrEqualToColumn (line 1217) | public Criteria andOrderIdGreaterThanOrEqualToColumn(LitemallCouponU... method andOrderIdLessThan (line 1222) | public Criteria andOrderIdLessThan(Integer value) { method andOrderIdLessThanColumn (line 1233) | public Criteria andOrderIdLessThanColumn(LitemallCouponUser.Column c... method andOrderIdLessThanOrEqualTo (line 1238) | public Criteria andOrderIdLessThanOrEqualTo(Integer value) { method andOrderIdLessThanOrEqualToColumn (line 1249) | public Criteria andOrderIdLessThanOrEqualToColumn(LitemallCouponUser... method andOrderIdIn (line 1254) | public Criteria andOrderIdIn(List values) { method andOrderIdNotIn (line 1259) | public Criteria andOrderIdNotIn(List values) { method andOrderIdBetween (line 1264) | public Criteria andOrderIdBetween(Integer value1, Integer value2) { method andOrderIdNotBetween (line 1269) | public Criteria andOrderIdNotBetween(Integer value1, Integer value2) { method andAddTimeIsNull (line 1274) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1279) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1284) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1295) | public Criteria andAddTimeEqualToColumn(LitemallCouponUser.Column co... method andAddTimeNotEqualTo (line 1300) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1311) | public Criteria andAddTimeNotEqualToColumn(LitemallCouponUser.Column... method andAddTimeGreaterThan (line 1316) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1327) | public Criteria andAddTimeGreaterThanColumn(LitemallCouponUser.Colum... method andAddTimeGreaterThanOrEqualTo (line 1332) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1343) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallCouponU... method andAddTimeLessThan (line 1348) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1359) | public Criteria andAddTimeLessThanColumn(LitemallCouponUser.Column c... method andAddTimeLessThanOrEqualTo (line 1364) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1375) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallCouponUser... method andAddTimeIn (line 1380) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1385) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1390) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1395) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1400) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1405) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1410) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1421) | public Criteria andUpdateTimeEqualToColumn(LitemallCouponUser.Column... method andUpdateTimeNotEqualTo (line 1426) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1437) | public Criteria andUpdateTimeNotEqualToColumn(LitemallCouponUser.Col... method andUpdateTimeGreaterThan (line 1442) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1453) | public Criteria andUpdateTimeGreaterThanColumn(LitemallCouponUser.Co... method andUpdateTimeGreaterThanOrEqualTo (line 1458) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1469) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallCoup... method andUpdateTimeLessThan (line 1474) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1485) | public Criteria andUpdateTimeLessThanColumn(LitemallCouponUser.Colum... method andUpdateTimeLessThanOrEqualTo (line 1490) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1501) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallCouponU... method andUpdateTimeIn (line 1506) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1511) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1516) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1521) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1526) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1531) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1536) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1547) | public Criteria andDeletedEqualToColumn(LitemallCouponUser.Column co... method andDeletedNotEqualTo (line 1552) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1563) | public Criteria andDeletedNotEqualToColumn(LitemallCouponUser.Column... method andDeletedGreaterThan (line 1568) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1579) | public Criteria andDeletedGreaterThanColumn(LitemallCouponUser.Colum... method andDeletedGreaterThanOrEqualTo (line 1584) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1595) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallCouponU... method andDeletedLessThan (line 1600) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1611) | public Criteria andDeletedLessThanColumn(LitemallCouponUser.Column c... method andDeletedLessThanOrEqualTo (line 1616) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1627) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallCouponUser... method andDeletedIn (line 1632) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1637) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1642) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1647) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1659) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1674) | protected Criteria(LitemallCouponUserExample example) { method example (line 1685) | public LitemallCouponUserExample example() { method andIf (line 1695) | @Deprecated method when (line 1709) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1722) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1737) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1741) | @Deprecated method add (line 1749) | Criteria add(Criteria add); class Criterion (line 1759) | public static class Criterion { method getCondition (line 1776) | public String getCondition() { method getValue (line 1780) | public Object getValue() { method getSecondValue (line 1784) | public Object getSecondValue() { method isNoValue (line 1788) | public boolean isNoValue() { method isSingleValue (line 1792) | public boolean isSingleValue() { method isBetweenValue (line 1796) | public boolean isBetweenValue() { method isListValue (line 1800) | public boolean isListValue() { method getTypeHandler (line 1804) | public String getTypeHandler() { method Criterion (line 1808) | protected Criterion(String condition) { method Criterion (line 1815) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1827) | protected Criterion(String condition, Object value) { method Criterion (line 1831) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1840) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1845) | public interface ICriteriaWhen { method criteria (line 1852) | void criteria(Criteria criteria); type IExampleWhen (line 1855) | public interface IExampleWhen { method example (line 1862) | void example(org.linlinjava.litemall.db.domain.LitemallCouponUserExa... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallFeedback.java class LitemallFeedback (line 7) | public class LitemallFeedback { method getId (line 140) | public Integer getId() { method setId (line 152) | public void setId(Integer id) { method getUserId (line 164) | public Integer getUserId() { method setUserId (line 176) | public void setUserId(Integer userId) { method getUsername (line 188) | public String getUsername() { method setUsername (line 200) | public void setUsername(String username) { method getMobile (line 212) | public String getMobile() { method setMobile (line 224) | public void setMobile(String mobile) { method getFeedType (line 236) | public String getFeedType() { method setFeedType (line 248) | public void setFeedType(String feedType) { method getContent (line 260) | public String getContent() { method setContent (line 272) | public void setContent(String content) { method getStatus (line 284) | public Integer getStatus() { method setStatus (line 296) | public void setStatus(Integer status) { method getHasPicture (line 308) | public Boolean getHasPicture() { method setHasPicture (line 320) | public void setHasPicture(Boolean hasPicture) { method getPicUrls (line 332) | public String[] getPicUrls() { method setPicUrls (line 344) | public void setPicUrls(String[] picUrls) { method getAddTime (line 356) | public LocalDateTime getAddTime() { method setAddTime (line 368) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 380) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 392) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 402) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 414) | public Boolean getDeleted() { method setDeleted (line 426) | public void setDeleted(Boolean deleted) { method toString (line 436) | @Override method equals (line 466) | @Override method hashCode (line 498) | @Override type Deleted (line 523) | public enum Deleted { method Deleted (line 549) | Deleted(Boolean value, String name) { method getValue (line 560) | public Boolean getValue() { method value (line 570) | public Boolean value() { method getName (line 580) | public String getName() { type Column (line 591) | public enum Column { method value (line 659) | public String value() { method getValue (line 669) | public String getValue() { method getJavaProperty (line 679) | public String getJavaProperty() { method getJdbcType (line 689) | public String getJdbcType() { method Column (line 699) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 712) | public String desc() { method asc (line 722) | public String asc() { method excludes (line 732) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 746) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 760) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallFeedbackExample.java class LitemallFeedbackExample (line 7) | public class LitemallFeedbackExample { method LitemallFeedbackExample (line 38) | public LitemallFeedbackExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallFeedbackExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallFeedbackExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallFeedbackExample when(boolean condition, IExampleWhen th... method when (line 210) | public LitemallFeedbackExample when(boolean condition, IExampleWhen th... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 232) | protected GeneratedCriteria() { method getPicUrlsCriteria (line 238) | public List getPicUrlsCriteria() { method addPicUrlsCriterion (line 242) | protected void addPicUrlsCriterion(String condition, Object value, S... method addPicUrlsCriterion (line 250) | protected void addPicUrlsCriterion(String condition, String[] value1... method isValid (line 258) | public boolean isValid() { method getAllCriteria (line 263) | public List getAllCriteria() { method getCriteria (line 272) | public List getCriteria() { method addCriterion (line 276) | protected void addCriterion(String condition) { method addCriterion (line 284) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 292) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 300) | public Criteria andIdIsNull() { method andIdIsNotNull (line 305) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 310) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 321) | public Criteria andIdEqualToColumn(LitemallFeedback.Column column) { method andIdNotEqualTo (line 326) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 337) | public Criteria andIdNotEqualToColumn(LitemallFeedback.Column column) { method andIdGreaterThan (line 342) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 353) | public Criteria andIdGreaterThanColumn(LitemallFeedback.Column colum... method andIdGreaterThanOrEqualTo (line 358) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 369) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallFeedback.Col... method andIdLessThan (line 374) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 385) | public Criteria andIdLessThanColumn(LitemallFeedback.Column column) { method andIdLessThanOrEqualTo (line 390) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 401) | public Criteria andIdLessThanOrEqualToColumn(LitemallFeedback.Column... method andIdIn (line 406) | public Criteria andIdIn(List values) { method andIdNotIn (line 411) | public Criteria andIdNotIn(List values) { method andIdBetween (line 416) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 421) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 426) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 431) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 436) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 447) | public Criteria andUserIdEqualToColumn(LitemallFeedback.Column colum... method andUserIdNotEqualTo (line 452) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 463) | public Criteria andUserIdNotEqualToColumn(LitemallFeedback.Column co... method andUserIdGreaterThan (line 468) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 479) | public Criteria andUserIdGreaterThanColumn(LitemallFeedback.Column c... method andUserIdGreaterThanOrEqualTo (line 484) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 495) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallFeedback... method andUserIdLessThan (line 500) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 511) | public Criteria andUserIdLessThanColumn(LitemallFeedback.Column colu... method andUserIdLessThanOrEqualTo (line 516) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 527) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallFeedback.Co... method andUserIdIn (line 532) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 537) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 542) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 547) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andUsernameIsNull (line 552) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 557) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 562) | public Criteria andUsernameEqualTo(String value) { method andUsernameEqualToColumn (line 573) | public Criteria andUsernameEqualToColumn(LitemallFeedback.Column col... method andUsernameNotEqualTo (line 578) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameNotEqualToColumn (line 589) | public Criteria andUsernameNotEqualToColumn(LitemallFeedback.Column ... method andUsernameGreaterThan (line 594) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanColumn (line 605) | public Criteria andUsernameGreaterThanColumn(LitemallFeedback.Column... method andUsernameGreaterThanOrEqualTo (line 610) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameGreaterThanOrEqualToColumn (line 621) | public Criteria andUsernameGreaterThanOrEqualToColumn(LitemallFeedba... method andUsernameLessThan (line 626) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanColumn (line 637) | public Criteria andUsernameLessThanColumn(LitemallFeedback.Column co... method andUsernameLessThanOrEqualTo (line 642) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLessThanOrEqualToColumn (line 653) | public Criteria andUsernameLessThanOrEqualToColumn(LitemallFeedback.... method andUsernameLike (line 658) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 663) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 668) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 673) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 678) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 683) | public Criteria andUsernameNotBetween(String value1, String value2) { method andMobileIsNull (line 688) | public Criteria andMobileIsNull() { method andMobileIsNotNull (line 693) | public Criteria andMobileIsNotNull() { method andMobileEqualTo (line 698) | public Criteria andMobileEqualTo(String value) { method andMobileEqualToColumn (line 709) | public Criteria andMobileEqualToColumn(LitemallFeedback.Column colum... method andMobileNotEqualTo (line 714) | public Criteria andMobileNotEqualTo(String value) { method andMobileNotEqualToColumn (line 725) | public Criteria andMobileNotEqualToColumn(LitemallFeedback.Column co... method andMobileGreaterThan (line 730) | public Criteria andMobileGreaterThan(String value) { method andMobileGreaterThanColumn (line 741) | public Criteria andMobileGreaterThanColumn(LitemallFeedback.Column c... method andMobileGreaterThanOrEqualTo (line 746) | public Criteria andMobileGreaterThanOrEqualTo(String value) { method andMobileGreaterThanOrEqualToColumn (line 757) | public Criteria andMobileGreaterThanOrEqualToColumn(LitemallFeedback... method andMobileLessThan (line 762) | public Criteria andMobileLessThan(String value) { method andMobileLessThanColumn (line 773) | public Criteria andMobileLessThanColumn(LitemallFeedback.Column colu... method andMobileLessThanOrEqualTo (line 778) | public Criteria andMobileLessThanOrEqualTo(String value) { method andMobileLessThanOrEqualToColumn (line 789) | public Criteria andMobileLessThanOrEqualToColumn(LitemallFeedback.Co... method andMobileLike (line 794) | public Criteria andMobileLike(String value) { method andMobileNotLike (line 799) | public Criteria andMobileNotLike(String value) { method andMobileIn (line 804) | public Criteria andMobileIn(List values) { method andMobileNotIn (line 809) | public Criteria andMobileNotIn(List values) { method andMobileBetween (line 814) | public Criteria andMobileBetween(String value1, String value2) { method andMobileNotBetween (line 819) | public Criteria andMobileNotBetween(String value1, String value2) { method andFeedTypeIsNull (line 824) | public Criteria andFeedTypeIsNull() { method andFeedTypeIsNotNull (line 829) | public Criteria andFeedTypeIsNotNull() { method andFeedTypeEqualTo (line 834) | public Criteria andFeedTypeEqualTo(String value) { method andFeedTypeEqualToColumn (line 845) | public Criteria andFeedTypeEqualToColumn(LitemallFeedback.Column col... method andFeedTypeNotEqualTo (line 850) | public Criteria andFeedTypeNotEqualTo(String value) { method andFeedTypeNotEqualToColumn (line 861) | public Criteria andFeedTypeNotEqualToColumn(LitemallFeedback.Column ... method andFeedTypeGreaterThan (line 866) | public Criteria andFeedTypeGreaterThan(String value) { method andFeedTypeGreaterThanColumn (line 877) | public Criteria andFeedTypeGreaterThanColumn(LitemallFeedback.Column... method andFeedTypeGreaterThanOrEqualTo (line 882) | public Criteria andFeedTypeGreaterThanOrEqualTo(String value) { method andFeedTypeGreaterThanOrEqualToColumn (line 893) | public Criteria andFeedTypeGreaterThanOrEqualToColumn(LitemallFeedba... method andFeedTypeLessThan (line 898) | public Criteria andFeedTypeLessThan(String value) { method andFeedTypeLessThanColumn (line 909) | public Criteria andFeedTypeLessThanColumn(LitemallFeedback.Column co... method andFeedTypeLessThanOrEqualTo (line 914) | public Criteria andFeedTypeLessThanOrEqualTo(String value) { method andFeedTypeLessThanOrEqualToColumn (line 925) | public Criteria andFeedTypeLessThanOrEqualToColumn(LitemallFeedback.... method andFeedTypeLike (line 930) | public Criteria andFeedTypeLike(String value) { method andFeedTypeNotLike (line 935) | public Criteria andFeedTypeNotLike(String value) { method andFeedTypeIn (line 940) | public Criteria andFeedTypeIn(List values) { method andFeedTypeNotIn (line 945) | public Criteria andFeedTypeNotIn(List values) { method andFeedTypeBetween (line 950) | public Criteria andFeedTypeBetween(String value1, String value2) { method andFeedTypeNotBetween (line 955) | public Criteria andFeedTypeNotBetween(String value1, String value2) { method andContentIsNull (line 960) | public Criteria andContentIsNull() { method andContentIsNotNull (line 965) | public Criteria andContentIsNotNull() { method andContentEqualTo (line 970) | public Criteria andContentEqualTo(String value) { method andContentEqualToColumn (line 981) | public Criteria andContentEqualToColumn(LitemallFeedback.Column colu... method andContentNotEqualTo (line 986) | public Criteria andContentNotEqualTo(String value) { method andContentNotEqualToColumn (line 997) | public Criteria andContentNotEqualToColumn(LitemallFeedback.Column c... method andContentGreaterThan (line 1002) | public Criteria andContentGreaterThan(String value) { method andContentGreaterThanColumn (line 1013) | public Criteria andContentGreaterThanColumn(LitemallFeedback.Column ... method andContentGreaterThanOrEqualTo (line 1018) | public Criteria andContentGreaterThanOrEqualTo(String value) { method andContentGreaterThanOrEqualToColumn (line 1029) | public Criteria andContentGreaterThanOrEqualToColumn(LitemallFeedbac... method andContentLessThan (line 1034) | public Criteria andContentLessThan(String value) { method andContentLessThanColumn (line 1045) | public Criteria andContentLessThanColumn(LitemallFeedback.Column col... method andContentLessThanOrEqualTo (line 1050) | public Criteria andContentLessThanOrEqualTo(String value) { method andContentLessThanOrEqualToColumn (line 1061) | public Criteria andContentLessThanOrEqualToColumn(LitemallFeedback.C... method andContentLike (line 1066) | public Criteria andContentLike(String value) { method andContentNotLike (line 1071) | public Criteria andContentNotLike(String value) { method andContentIn (line 1076) | public Criteria andContentIn(List values) { method andContentNotIn (line 1081) | public Criteria andContentNotIn(List values) { method andContentBetween (line 1086) | public Criteria andContentBetween(String value1, String value2) { method andContentNotBetween (line 1091) | public Criteria andContentNotBetween(String value1, String value2) { method andStatusIsNull (line 1096) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 1101) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 1106) | public Criteria andStatusEqualTo(Integer value) { method andStatusEqualToColumn (line 1117) | public Criteria andStatusEqualToColumn(LitemallFeedback.Column colum... method andStatusNotEqualTo (line 1122) | public Criteria andStatusNotEqualTo(Integer value) { method andStatusNotEqualToColumn (line 1133) | public Criteria andStatusNotEqualToColumn(LitemallFeedback.Column co... method andStatusGreaterThan (line 1138) | public Criteria andStatusGreaterThan(Integer value) { method andStatusGreaterThanColumn (line 1149) | public Criteria andStatusGreaterThanColumn(LitemallFeedback.Column c... method andStatusGreaterThanOrEqualTo (line 1154) | public Criteria andStatusGreaterThanOrEqualTo(Integer value) { method andStatusGreaterThanOrEqualToColumn (line 1165) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallFeedback... method andStatusLessThan (line 1170) | public Criteria andStatusLessThan(Integer value) { method andStatusLessThanColumn (line 1181) | public Criteria andStatusLessThanColumn(LitemallFeedback.Column colu... method andStatusLessThanOrEqualTo (line 1186) | public Criteria andStatusLessThanOrEqualTo(Integer value) { method andStatusLessThanOrEqualToColumn (line 1197) | public Criteria andStatusLessThanOrEqualToColumn(LitemallFeedback.Co... method andStatusIn (line 1202) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 1207) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 1212) | public Criteria andStatusBetween(Integer value1, Integer value2) { method andStatusNotBetween (line 1217) | public Criteria andStatusNotBetween(Integer value1, Integer value2) { method andHasPictureIsNull (line 1222) | public Criteria andHasPictureIsNull() { method andHasPictureIsNotNull (line 1227) | public Criteria andHasPictureIsNotNull() { method andHasPictureEqualTo (line 1232) | public Criteria andHasPictureEqualTo(Boolean value) { method andHasPictureEqualToColumn (line 1243) | public Criteria andHasPictureEqualToColumn(LitemallFeedback.Column c... method andHasPictureNotEqualTo (line 1248) | public Criteria andHasPictureNotEqualTo(Boolean value) { method andHasPictureNotEqualToColumn (line 1259) | public Criteria andHasPictureNotEqualToColumn(LitemallFeedback.Colum... method andHasPictureGreaterThan (line 1264) | public Criteria andHasPictureGreaterThan(Boolean value) { method andHasPictureGreaterThanColumn (line 1275) | public Criteria andHasPictureGreaterThanColumn(LitemallFeedback.Colu... method andHasPictureGreaterThanOrEqualTo (line 1280) | public Criteria andHasPictureGreaterThanOrEqualTo(Boolean value) { method andHasPictureGreaterThanOrEqualToColumn (line 1291) | public Criteria andHasPictureGreaterThanOrEqualToColumn(LitemallFeed... method andHasPictureLessThan (line 1296) | public Criteria andHasPictureLessThan(Boolean value) { method andHasPictureLessThanColumn (line 1307) | public Criteria andHasPictureLessThanColumn(LitemallFeedback.Column ... method andHasPictureLessThanOrEqualTo (line 1312) | public Criteria andHasPictureLessThanOrEqualTo(Boolean value) { method andHasPictureLessThanOrEqualToColumn (line 1323) | public Criteria andHasPictureLessThanOrEqualToColumn(LitemallFeedbac... method andHasPictureIn (line 1328) | public Criteria andHasPictureIn(List values) { method andHasPictureNotIn (line 1333) | public Criteria andHasPictureNotIn(List values) { method andHasPictureBetween (line 1338) | public Criteria andHasPictureBetween(Boolean value1, Boolean value2) { method andHasPictureNotBetween (line 1343) | public Criteria andHasPictureNotBetween(Boolean value1, Boolean valu... method andPicUrlsIsNull (line 1348) | public Criteria andPicUrlsIsNull() { method andPicUrlsIsNotNull (line 1353) | public Criteria andPicUrlsIsNotNull() { method andPicUrlsEqualTo (line 1358) | public Criteria andPicUrlsEqualTo(String[] value) { method andPicUrlsEqualToColumn (line 1369) | public Criteria andPicUrlsEqualToColumn(LitemallFeedback.Column colu... method andPicUrlsNotEqualTo (line 1374) | public Criteria andPicUrlsNotEqualTo(String[] value) { method andPicUrlsNotEqualToColumn (line 1385) | public Criteria andPicUrlsNotEqualToColumn(LitemallFeedback.Column c... method andPicUrlsGreaterThan (line 1390) | public Criteria andPicUrlsGreaterThan(String[] value) { method andPicUrlsGreaterThanColumn (line 1401) | public Criteria andPicUrlsGreaterThanColumn(LitemallFeedback.Column ... method andPicUrlsGreaterThanOrEqualTo (line 1406) | public Criteria andPicUrlsGreaterThanOrEqualTo(String[] value) { method andPicUrlsGreaterThanOrEqualToColumn (line 1417) | public Criteria andPicUrlsGreaterThanOrEqualToColumn(LitemallFeedbac... method andPicUrlsLessThan (line 1422) | public Criteria andPicUrlsLessThan(String[] value) { method andPicUrlsLessThanColumn (line 1433) | public Criteria andPicUrlsLessThanColumn(LitemallFeedback.Column col... method andPicUrlsLessThanOrEqualTo (line 1438) | public Criteria andPicUrlsLessThanOrEqualTo(String[] value) { method andPicUrlsLessThanOrEqualToColumn (line 1449) | public Criteria andPicUrlsLessThanOrEqualToColumn(LitemallFeedback.C... method andPicUrlsLike (line 1454) | public Criteria andPicUrlsLike(String[] value) { method andPicUrlsNotLike (line 1459) | public Criteria andPicUrlsNotLike(String[] value) { method andPicUrlsIn (line 1464) | public Criteria andPicUrlsIn(List values) { method andPicUrlsNotIn (line 1469) | public Criteria andPicUrlsNotIn(List values) { method andPicUrlsBetween (line 1474) | public Criteria andPicUrlsBetween(String[] value1, String[] value2) { method andPicUrlsNotBetween (line 1479) | public Criteria andPicUrlsNotBetween(String[] value1, String[] value... method andAddTimeIsNull (line 1484) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1489) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1494) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1505) | public Criteria andAddTimeEqualToColumn(LitemallFeedback.Column colu... method andAddTimeNotEqualTo (line 1510) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1521) | public Criteria andAddTimeNotEqualToColumn(LitemallFeedback.Column c... method andAddTimeGreaterThan (line 1526) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1537) | public Criteria andAddTimeGreaterThanColumn(LitemallFeedback.Column ... method andAddTimeGreaterThanOrEqualTo (line 1542) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1553) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallFeedbac... method andAddTimeLessThan (line 1558) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1569) | public Criteria andAddTimeLessThanColumn(LitemallFeedback.Column col... method andAddTimeLessThanOrEqualTo (line 1574) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1585) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallFeedback.C... method andAddTimeIn (line 1590) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1595) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1600) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1605) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1610) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1615) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1620) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1631) | public Criteria andUpdateTimeEqualToColumn(LitemallFeedback.Column c... method andUpdateTimeNotEqualTo (line 1636) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1647) | public Criteria andUpdateTimeNotEqualToColumn(LitemallFeedback.Colum... method andUpdateTimeGreaterThan (line 1652) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1663) | public Criteria andUpdateTimeGreaterThanColumn(LitemallFeedback.Colu... method andUpdateTimeGreaterThanOrEqualTo (line 1668) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1679) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallFeed... method andUpdateTimeLessThan (line 1684) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1695) | public Criteria andUpdateTimeLessThanColumn(LitemallFeedback.Column ... method andUpdateTimeLessThanOrEqualTo (line 1700) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1711) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallFeedbac... method andUpdateTimeIn (line 1716) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1721) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1726) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1731) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1736) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1741) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1746) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1757) | public Criteria andDeletedEqualToColumn(LitemallFeedback.Column colu... method andDeletedNotEqualTo (line 1762) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1773) | public Criteria andDeletedNotEqualToColumn(LitemallFeedback.Column c... method andDeletedGreaterThan (line 1778) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1789) | public Criteria andDeletedGreaterThanColumn(LitemallFeedback.Column ... method andDeletedGreaterThanOrEqualTo (line 1794) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1805) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallFeedbac... method andDeletedLessThan (line 1810) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1821) | public Criteria andDeletedLessThanColumn(LitemallFeedback.Column col... method andDeletedLessThanOrEqualTo (line 1826) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1837) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallFeedback.C... method andDeletedIn (line 1842) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1847) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1852) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1857) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1869) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1884) | protected Criteria(LitemallFeedbackExample example) { method example (line 1895) | public LitemallFeedbackExample example() { method andIf (line 1905) | @Deprecated method when (line 1919) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1932) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1947) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1951) | @Deprecated method add (line 1959) | Criteria add(Criteria add); class Criterion (line 1969) | public static class Criterion { method getCondition (line 1986) | public String getCondition() { method getValue (line 1990) | public Object getValue() { method getSecondValue (line 1994) | public Object getSecondValue() { method isNoValue (line 1998) | public boolean isNoValue() { method isSingleValue (line 2002) | public boolean isSingleValue() { method isBetweenValue (line 2006) | public boolean isBetweenValue() { method isListValue (line 2010) | public boolean isListValue() { method getTypeHandler (line 2014) | public String getTypeHandler() { method Criterion (line 2018) | protected Criterion(String condition) { method Criterion (line 2025) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2037) | protected Criterion(String condition, Object value) { method Criterion (line 2041) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2050) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2055) | public interface ICriteriaWhen { method criteria (line 2062) | void criteria(Criteria criteria); type IExampleWhen (line 2065) | public interface IExampleWhen { method example (line 2072) | void example(org.linlinjava.litemall.db.domain.LitemallFeedbackExamp... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallFootprint.java class LitemallFootprint (line 7) | public class LitemallFootprint { method getId (line 86) | public Integer getId() { method setId (line 98) | public void setId(Integer id) { method getUserId (line 110) | public Integer getUserId() { method setUserId (line 122) | public void setUserId(Integer userId) { method getGoodsId (line 134) | public Integer getGoodsId() { method setGoodsId (line 146) | public void setGoodsId(Integer goodsId) { method getAddTime (line 158) | public LocalDateTime getAddTime() { method setAddTime (line 170) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 182) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 194) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 204) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 216) | public Boolean getDeleted() { method setDeleted (line 228) | public void setDeleted(Boolean deleted) { method toString (line 238) | @Override method equals (line 262) | @Override method hashCode (line 288) | @Override type Deleted (line 307) | public enum Deleted { method Deleted (line 333) | Deleted(Boolean value, String name) { method getValue (line 344) | public Boolean getValue() { method value (line 354) | public Boolean value() { method getName (line 364) | public String getName() { type Column (line 375) | public enum Column { method value (line 437) | public String value() { method getValue (line 447) | public String getValue() { method getJavaProperty (line 457) | public String getJavaProperty() { method getJdbcType (line 467) | public String getJdbcType() { method Column (line 477) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 490) | public String desc() { method asc (line 500) | public String asc() { method excludes (line 510) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 524) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 538) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallFootprintExample.java class LitemallFootprintExample (line 7) | public class LitemallFootprintExample { method LitemallFootprintExample (line 38) | public LitemallFootprintExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallFootprintExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallFootprintExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallFootprintExample when(boolean condition, IExampleWhen t... method when (line 210) | public LitemallFootprintExample when(boolean condition, IExampleWhen t... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallFootprint.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallFootprint.Column colum... method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallFootprint.Column colu... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallFootprint.Co... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallFootprint.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallFootprint.Colum... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 392) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 397) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 402) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 413) | public Criteria andUserIdEqualToColumn(LitemallFootprint.Column colu... method andUserIdNotEqualTo (line 418) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 429) | public Criteria andUserIdNotEqualToColumn(LitemallFootprint.Column c... method andUserIdGreaterThan (line 434) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 445) | public Criteria andUserIdGreaterThanColumn(LitemallFootprint.Column ... method andUserIdGreaterThanOrEqualTo (line 450) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 461) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallFootprin... method andUserIdLessThan (line 466) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 477) | public Criteria andUserIdLessThanColumn(LitemallFootprint.Column col... method andUserIdLessThanOrEqualTo (line 482) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 493) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallFootprint.C... method andUserIdIn (line 498) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 503) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 508) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 513) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andGoodsIdIsNull (line 518) | public Criteria andGoodsIdIsNull() { method andGoodsIdIsNotNull (line 523) | public Criteria andGoodsIdIsNotNull() { method andGoodsIdEqualTo (line 528) | public Criteria andGoodsIdEqualTo(Integer value) { method andGoodsIdEqualToColumn (line 539) | public Criteria andGoodsIdEqualToColumn(LitemallFootprint.Column col... method andGoodsIdNotEqualTo (line 544) | public Criteria andGoodsIdNotEqualTo(Integer value) { method andGoodsIdNotEqualToColumn (line 555) | public Criteria andGoodsIdNotEqualToColumn(LitemallFootprint.Column ... method andGoodsIdGreaterThan (line 560) | public Criteria andGoodsIdGreaterThan(Integer value) { method andGoodsIdGreaterThanColumn (line 571) | public Criteria andGoodsIdGreaterThanColumn(LitemallFootprint.Column... method andGoodsIdGreaterThanOrEqualTo (line 576) | public Criteria andGoodsIdGreaterThanOrEqualTo(Integer value) { method andGoodsIdGreaterThanOrEqualToColumn (line 587) | public Criteria andGoodsIdGreaterThanOrEqualToColumn(LitemallFootpri... method andGoodsIdLessThan (line 592) | public Criteria andGoodsIdLessThan(Integer value) { method andGoodsIdLessThanColumn (line 603) | public Criteria andGoodsIdLessThanColumn(LitemallFootprint.Column co... method andGoodsIdLessThanOrEqualTo (line 608) | public Criteria andGoodsIdLessThanOrEqualTo(Integer value) { method andGoodsIdLessThanOrEqualToColumn (line 619) | public Criteria andGoodsIdLessThanOrEqualToColumn(LitemallFootprint.... method andGoodsIdIn (line 624) | public Criteria andGoodsIdIn(List values) { method andGoodsIdNotIn (line 629) | public Criteria andGoodsIdNotIn(List values) { method andGoodsIdBetween (line 634) | public Criteria andGoodsIdBetween(Integer value1, Integer value2) { method andGoodsIdNotBetween (line 639) | public Criteria andGoodsIdNotBetween(Integer value1, Integer value2) { method andAddTimeIsNull (line 644) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 649) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 654) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 665) | public Criteria andAddTimeEqualToColumn(LitemallFootprint.Column col... method andAddTimeNotEqualTo (line 670) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 681) | public Criteria andAddTimeNotEqualToColumn(LitemallFootprint.Column ... method andAddTimeGreaterThan (line 686) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 697) | public Criteria andAddTimeGreaterThanColumn(LitemallFootprint.Column... method andAddTimeGreaterThanOrEqualTo (line 702) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 713) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallFootpri... method andAddTimeLessThan (line 718) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 729) | public Criteria andAddTimeLessThanColumn(LitemallFootprint.Column co... method andAddTimeLessThanOrEqualTo (line 734) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 745) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallFootprint.... method andAddTimeIn (line 750) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 755) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 760) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 765) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 770) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 775) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 780) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 791) | public Criteria andUpdateTimeEqualToColumn(LitemallFootprint.Column ... method andUpdateTimeNotEqualTo (line 796) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 807) | public Criteria andUpdateTimeNotEqualToColumn(LitemallFootprint.Colu... method andUpdateTimeGreaterThan (line 812) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 823) | public Criteria andUpdateTimeGreaterThanColumn(LitemallFootprint.Col... method andUpdateTimeGreaterThanOrEqualTo (line 828) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 839) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallFoot... method andUpdateTimeLessThan (line 844) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 855) | public Criteria andUpdateTimeLessThanColumn(LitemallFootprint.Column... method andUpdateTimeLessThanOrEqualTo (line 860) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 871) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallFootpri... method andUpdateTimeIn (line 876) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 881) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 886) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 891) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 896) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 901) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 906) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 917) | public Criteria andDeletedEqualToColumn(LitemallFootprint.Column col... method andDeletedNotEqualTo (line 922) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 933) | public Criteria andDeletedNotEqualToColumn(LitemallFootprint.Column ... method andDeletedGreaterThan (line 938) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 949) | public Criteria andDeletedGreaterThanColumn(LitemallFootprint.Column... method andDeletedGreaterThanOrEqualTo (line 954) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 965) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallFootpri... method andDeletedLessThan (line 970) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 981) | public Criteria andDeletedLessThanColumn(LitemallFootprint.Column co... method andDeletedLessThanOrEqualTo (line 986) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 997) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallFootprint.... method andDeletedIn (line 1002) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1007) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1012) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1017) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1029) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1044) | protected Criteria(LitemallFootprintExample example) { method example (line 1055) | public LitemallFootprintExample example() { method andIf (line 1065) | @Deprecated method when (line 1079) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1092) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1107) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1111) | @Deprecated method add (line 1119) | Criteria add(Criteria add); class Criterion (line 1129) | public static class Criterion { method getCondition (line 1146) | public String getCondition() { method getValue (line 1150) | public Object getValue() { method getSecondValue (line 1154) | public Object getSecondValue() { method isNoValue (line 1158) | public boolean isNoValue() { method isSingleValue (line 1162) | public boolean isSingleValue() { method isBetweenValue (line 1166) | public boolean isBetweenValue() { method isListValue (line 1170) | public boolean isListValue() { method getTypeHandler (line 1174) | public String getTypeHandler() { method Criterion (line 1178) | protected Criterion(String condition) { method Criterion (line 1185) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1197) | protected Criterion(String condition, Object value) { method Criterion (line 1201) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1210) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1215) | public interface ICriteriaWhen { method criteria (line 1222) | void criteria(Criteria criteria); type IExampleWhen (line 1225) | public interface IExampleWhen { method example (line 1232) | void example(org.linlinjava.litemall.db.domain.LitemallFootprintExam... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoods.java class LitemallGoods (line 8) | public class LitemallGoods { method getId (line 222) | public Integer getId() { method setId (line 234) | public void setId(Integer id) { method getGoodsSn (line 246) | public String getGoodsSn() { method setGoodsSn (line 258) | public void setGoodsSn(String goodsSn) { method getName (line 270) | public String getName() { method setName (line 282) | public void setName(String name) { method getCategoryId (line 294) | public Integer getCategoryId() { method setCategoryId (line 306) | public void setCategoryId(Integer categoryId) { method getBrandId (line 318) | public Integer getBrandId() { method setBrandId (line 330) | public void setBrandId(Integer brandId) { method getGallery (line 342) | public String[] getGallery() { method setGallery (line 354) | public void setGallery(String[] gallery) { method getKeywords (line 366) | public String getKeywords() { method setKeywords (line 378) | public void setKeywords(String keywords) { method getBrief (line 390) | public String getBrief() { method setBrief (line 402) | public void setBrief(String brief) { method getIsOnSale (line 414) | public Boolean getIsOnSale() { method setIsOnSale (line 426) | public void setIsOnSale(Boolean isOnSale) { method getSortOrder (line 438) | public Short getSortOrder() { method setSortOrder (line 450) | public void setSortOrder(Short sortOrder) { method getPicUrl (line 462) | public String getPicUrl() { method setPicUrl (line 474) | public void setPicUrl(String picUrl) { method getShareUrl (line 486) | public String getShareUrl() { method setShareUrl (line 498) | public void setShareUrl(String shareUrl) { method getIsNew (line 510) | public Boolean getIsNew() { method setIsNew (line 522) | public void setIsNew(Boolean isNew) { method getIsHot (line 534) | public Boolean getIsHot() { method setIsHot (line 546) | public void setIsHot(Boolean isHot) { method getUnit (line 558) | public String getUnit() { method setUnit (line 570) | public void setUnit(String unit) { method getCounterPrice (line 582) | public BigDecimal getCounterPrice() { method setCounterPrice (line 594) | public void setCounterPrice(BigDecimal counterPrice) { method getRetailPrice (line 606) | public BigDecimal getRetailPrice() { method setRetailPrice (line 618) | public void setRetailPrice(BigDecimal retailPrice) { method getAddTime (line 630) | public LocalDateTime getAddTime() { method setAddTime (line 642) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 654) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 666) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 676) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 688) | public Boolean getDeleted() { method setDeleted (line 700) | public void setDeleted(Boolean deleted) { method getDetail (line 712) | public String getDetail() { method setDetail (line 724) | public void setDetail(String detail) { method toString (line 734) | @Override method equals (line 773) | @Override method hashCode (line 814) | @Override type Deleted (line 848) | public enum Deleted { method Deleted (line 874) | Deleted(Boolean value, String name) { method getValue (line 885) | public Boolean getValue() { method value (line 895) | public Boolean value() { method getName (line 905) | public String getName() { type Column (line 916) | public enum Column { method value (line 993) | public String value() { method getValue (line 1003) | public String getValue() { method getJavaProperty (line 1013) | public String getJavaProperty() { method getJdbcType (line 1023) | public String getJdbcType() { method Column (line 1033) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 1046) | public String desc() { method asc (line 1056) | public String asc() { method excludes (line 1066) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 1080) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 1094) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoodsAttribute.java class LitemallGoodsAttribute (line 7) | public class LitemallGoodsAttribute { method getId (line 95) | public Integer getId() { method setId (line 107) | public void setId(Integer id) { method getGoodsId (line 119) | public Integer getGoodsId() { method setGoodsId (line 131) | public void setGoodsId(Integer goodsId) { method getAttribute (line 143) | public String getAttribute() { method setAttribute (line 155) | public void setAttribute(String attribute) { method getValue (line 167) | public String getValue() { method setValue (line 179) | public void setValue(String value) { method getAddTime (line 191) | public LocalDateTime getAddTime() { method setAddTime (line 203) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 215) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 227) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 237) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 249) | public Boolean getDeleted() { method setDeleted (line 261) | public void setDeleted(Boolean deleted) { method toString (line 271) | @Override method equals (line 296) | @Override method hashCode (line 323) | @Override type Deleted (line 343) | public enum Deleted { method Deleted (line 369) | Deleted(Boolean value, String name) { method getValue (line 380) | public Boolean getValue() { method value (line 390) | public Boolean value() { method getName (line 400) | public String getName() { type Column (line 411) | public enum Column { method value (line 474) | public String value() { method getValue (line 484) | public String getValue() { method getJavaProperty (line 494) | public String getJavaProperty() { method getJdbcType (line 504) | public String getJdbcType() { method Column (line 514) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 527) | public String desc() { method asc (line 537) | public String asc() { method excludes (line 547) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 561) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 575) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoodsAttributeExample.java class LitemallGoodsAttributeExample (line 7) | public class LitemallGoodsAttributeExample { method LitemallGoodsAttributeExample (line 38) | public LitemallGoodsAttributeExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallGoodsAttributeExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallGoodsAttributeExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallGoodsAttributeExample when(boolean condition, IExampleW... method when (line 210) | public LitemallGoodsAttributeExample when(boolean condition, IExampleW... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallGoodsAttribute.Column col... method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallGoodsAttribute.Column ... method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallGoodsAttribute.Column... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallGoodsAttribu... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallGoodsAttribute.Column co... method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallGoodsAttribute.... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andGoodsIdIsNull (line 392) | public Criteria andGoodsIdIsNull() { method andGoodsIdIsNotNull (line 397) | public Criteria andGoodsIdIsNotNull() { method andGoodsIdEqualTo (line 402) | public Criteria andGoodsIdEqualTo(Integer value) { method andGoodsIdEqualToColumn (line 413) | public Criteria andGoodsIdEqualToColumn(LitemallGoodsAttribute.Colum... method andGoodsIdNotEqualTo (line 418) | public Criteria andGoodsIdNotEqualTo(Integer value) { method andGoodsIdNotEqualToColumn (line 429) | public Criteria andGoodsIdNotEqualToColumn(LitemallGoodsAttribute.Co... method andGoodsIdGreaterThan (line 434) | public Criteria andGoodsIdGreaterThan(Integer value) { method andGoodsIdGreaterThanColumn (line 445) | public Criteria andGoodsIdGreaterThanColumn(LitemallGoodsAttribute.C... method andGoodsIdGreaterThanOrEqualTo (line 450) | public Criteria andGoodsIdGreaterThanOrEqualTo(Integer value) { method andGoodsIdGreaterThanOrEqualToColumn (line 461) | public Criteria andGoodsIdGreaterThanOrEqualToColumn(LitemallGoodsAt... method andGoodsIdLessThan (line 466) | public Criteria andGoodsIdLessThan(Integer value) { method andGoodsIdLessThanColumn (line 477) | public Criteria andGoodsIdLessThanColumn(LitemallGoodsAttribute.Colu... method andGoodsIdLessThanOrEqualTo (line 482) | public Criteria andGoodsIdLessThanOrEqualTo(Integer value) { method andGoodsIdLessThanOrEqualToColumn (line 493) | public Criteria andGoodsIdLessThanOrEqualToColumn(LitemallGoodsAttri... method andGoodsIdIn (line 498) | public Criteria andGoodsIdIn(List values) { method andGoodsIdNotIn (line 503) | public Criteria andGoodsIdNotIn(List values) { method andGoodsIdBetween (line 508) | public Criteria andGoodsIdBetween(Integer value1, Integer value2) { method andGoodsIdNotBetween (line 513) | public Criteria andGoodsIdNotBetween(Integer value1, Integer value2) { method andAttributeIsNull (line 518) | public Criteria andAttributeIsNull() { method andAttributeIsNotNull (line 523) | public Criteria andAttributeIsNotNull() { method andAttributeEqualTo (line 528) | public Criteria andAttributeEqualTo(String value) { method andAttributeEqualToColumn (line 539) | public Criteria andAttributeEqualToColumn(LitemallGoodsAttribute.Col... method andAttributeNotEqualTo (line 544) | public Criteria andAttributeNotEqualTo(String value) { method andAttributeNotEqualToColumn (line 555) | public Criteria andAttributeNotEqualToColumn(LitemallGoodsAttribute.... method andAttributeGreaterThan (line 560) | public Criteria andAttributeGreaterThan(String value) { method andAttributeGreaterThanColumn (line 571) | public Criteria andAttributeGreaterThanColumn(LitemallGoodsAttribute... method andAttributeGreaterThanOrEqualTo (line 576) | public Criteria andAttributeGreaterThanOrEqualTo(String value) { method andAttributeGreaterThanOrEqualToColumn (line 587) | public Criteria andAttributeGreaterThanOrEqualToColumn(LitemallGoods... method andAttributeLessThan (line 592) | public Criteria andAttributeLessThan(String value) { method andAttributeLessThanColumn (line 603) | public Criteria andAttributeLessThanColumn(LitemallGoodsAttribute.Co... method andAttributeLessThanOrEqualTo (line 608) | public Criteria andAttributeLessThanOrEqualTo(String value) { method andAttributeLessThanOrEqualToColumn (line 619) | public Criteria andAttributeLessThanOrEqualToColumn(LitemallGoodsAtt... method andAttributeLike (line 624) | public Criteria andAttributeLike(String value) { method andAttributeNotLike (line 629) | public Criteria andAttributeNotLike(String value) { method andAttributeIn (line 634) | public Criteria andAttributeIn(List values) { method andAttributeNotIn (line 639) | public Criteria andAttributeNotIn(List values) { method andAttributeBetween (line 644) | public Criteria andAttributeBetween(String value1, String value2) { method andAttributeNotBetween (line 649) | public Criteria andAttributeNotBetween(String value1, String value2) { method andValueIsNull (line 654) | public Criteria andValueIsNull() { method andValueIsNotNull (line 659) | public Criteria andValueIsNotNull() { method andValueEqualTo (line 664) | public Criteria andValueEqualTo(String value) { method andValueEqualToColumn (line 675) | public Criteria andValueEqualToColumn(LitemallGoodsAttribute.Column ... method andValueNotEqualTo (line 680) | public Criteria andValueNotEqualTo(String value) { method andValueNotEqualToColumn (line 691) | public Criteria andValueNotEqualToColumn(LitemallGoodsAttribute.Colu... method andValueGreaterThan (line 696) | public Criteria andValueGreaterThan(String value) { method andValueGreaterThanColumn (line 707) | public Criteria andValueGreaterThanColumn(LitemallGoodsAttribute.Col... method andValueGreaterThanOrEqualTo (line 712) | public Criteria andValueGreaterThanOrEqualTo(String value) { method andValueGreaterThanOrEqualToColumn (line 723) | public Criteria andValueGreaterThanOrEqualToColumn(LitemallGoodsAttr... method andValueLessThan (line 728) | public Criteria andValueLessThan(String value) { method andValueLessThanColumn (line 739) | public Criteria andValueLessThanColumn(LitemallGoodsAttribute.Column... method andValueLessThanOrEqualTo (line 744) | public Criteria andValueLessThanOrEqualTo(String value) { method andValueLessThanOrEqualToColumn (line 755) | public Criteria andValueLessThanOrEqualToColumn(LitemallGoodsAttribu... method andValueLike (line 760) | public Criteria andValueLike(String value) { method andValueNotLike (line 765) | public Criteria andValueNotLike(String value) { method andValueIn (line 770) | public Criteria andValueIn(List values) { method andValueNotIn (line 775) | public Criteria andValueNotIn(List values) { method andValueBetween (line 780) | public Criteria andValueBetween(String value1, String value2) { method andValueNotBetween (line 785) | public Criteria andValueNotBetween(String value1, String value2) { method andAddTimeIsNull (line 790) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 795) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 800) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 811) | public Criteria andAddTimeEqualToColumn(LitemallGoodsAttribute.Colum... method andAddTimeNotEqualTo (line 816) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 827) | public Criteria andAddTimeNotEqualToColumn(LitemallGoodsAttribute.Co... method andAddTimeGreaterThan (line 832) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 843) | public Criteria andAddTimeGreaterThanColumn(LitemallGoodsAttribute.C... method andAddTimeGreaterThanOrEqualTo (line 848) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 859) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallGoodsAt... method andAddTimeLessThan (line 864) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 875) | public Criteria andAddTimeLessThanColumn(LitemallGoodsAttribute.Colu... method andAddTimeLessThanOrEqualTo (line 880) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 891) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallGoodsAttri... method andAddTimeIn (line 896) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 901) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 906) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 911) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 916) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 921) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 926) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 937) | public Criteria andUpdateTimeEqualToColumn(LitemallGoodsAttribute.Co... method andUpdateTimeNotEqualTo (line 942) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 953) | public Criteria andUpdateTimeNotEqualToColumn(LitemallGoodsAttribute... method andUpdateTimeGreaterThan (line 958) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 969) | public Criteria andUpdateTimeGreaterThanColumn(LitemallGoodsAttribut... method andUpdateTimeGreaterThanOrEqualTo (line 974) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 985) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallGood... method andUpdateTimeLessThan (line 990) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1001) | public Criteria andUpdateTimeLessThanColumn(LitemallGoodsAttribute.C... method andUpdateTimeLessThanOrEqualTo (line 1006) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1017) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallGoodsAt... method andUpdateTimeIn (line 1022) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1027) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1032) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1037) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1042) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1047) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1052) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1063) | public Criteria andDeletedEqualToColumn(LitemallGoodsAttribute.Colum... method andDeletedNotEqualTo (line 1068) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1079) | public Criteria andDeletedNotEqualToColumn(LitemallGoodsAttribute.Co... method andDeletedGreaterThan (line 1084) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1095) | public Criteria andDeletedGreaterThanColumn(LitemallGoodsAttribute.C... method andDeletedGreaterThanOrEqualTo (line 1100) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1111) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallGoodsAt... method andDeletedLessThan (line 1116) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1127) | public Criteria andDeletedLessThanColumn(LitemallGoodsAttribute.Colu... method andDeletedLessThanOrEqualTo (line 1132) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1143) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallGoodsAttri... method andDeletedIn (line 1148) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1153) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1158) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1163) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1175) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1190) | protected Criteria(LitemallGoodsAttributeExample example) { method example (line 1201) | public LitemallGoodsAttributeExample example() { method andIf (line 1211) | @Deprecated method when (line 1225) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1238) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1253) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1257) | @Deprecated method add (line 1265) | Criteria add(Criteria add); class Criterion (line 1275) | public static class Criterion { method getCondition (line 1292) | public String getCondition() { method getValue (line 1296) | public Object getValue() { method getSecondValue (line 1300) | public Object getSecondValue() { method isNoValue (line 1304) | public boolean isNoValue() { method isSingleValue (line 1308) | public boolean isSingleValue() { method isBetweenValue (line 1312) | public boolean isBetweenValue() { method isListValue (line 1316) | public boolean isListValue() { method getTypeHandler (line 1320) | public String getTypeHandler() { method Criterion (line 1324) | protected Criterion(String condition) { method Criterion (line 1331) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1343) | protected Criterion(String condition, Object value) { method Criterion (line 1347) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1356) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1361) | public interface ICriteriaWhen { method criteria (line 1368) | void criteria(Criteria criteria); type IExampleWhen (line 1371) | public interface IExampleWhen { method example (line 1378) | void example(org.linlinjava.litemall.db.domain.LitemallGoodsAttribut... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoodsExample.java class LitemallGoodsExample (line 8) | public class LitemallGoodsExample { method LitemallGoodsExample (line 39) | public LitemallGoodsExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallGoodsExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallGoodsExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallGoodsExample when(boolean condition, IExampleWhen then) { method when (line 211) | public LitemallGoodsExample when(boolean condition, IExampleWhen then,... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 233) | protected GeneratedCriteria() { method getGalleryCriteria (line 239) | public List getGalleryCriteria() { method addGalleryCriterion (line 243) | protected void addGalleryCriterion(String condition, Object value, S... method addGalleryCriterion (line 251) | protected void addGalleryCriterion(String condition, String[] value1... method isValid (line 259) | public boolean isValid() { method getAllCriteria (line 264) | public List getAllCriteria() { method getCriteria (line 273) | public List getCriteria() { method addCriterion (line 277) | protected void addCriterion(String condition) { method addCriterion (line 285) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 293) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 301) | public Criteria andIdIsNull() { method andIdIsNotNull (line 306) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 311) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 322) | public Criteria andIdEqualToColumn(LitemallGoods.Column column) { method andIdNotEqualTo (line 327) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 338) | public Criteria andIdNotEqualToColumn(LitemallGoods.Column column) { method andIdGreaterThan (line 343) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 354) | public Criteria andIdGreaterThanColumn(LitemallGoods.Column column) { method andIdGreaterThanOrEqualTo (line 359) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 370) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallGoods.Column... method andIdLessThan (line 375) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 386) | public Criteria andIdLessThanColumn(LitemallGoods.Column column) { method andIdLessThanOrEqualTo (line 391) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 402) | public Criteria andIdLessThanOrEqualToColumn(LitemallGoods.Column co... method andIdIn (line 407) | public Criteria andIdIn(List values) { method andIdNotIn (line 412) | public Criteria andIdNotIn(List values) { method andIdBetween (line 417) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 422) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andGoodsSnIsNull (line 427) | public Criteria andGoodsSnIsNull() { method andGoodsSnIsNotNull (line 432) | public Criteria andGoodsSnIsNotNull() { method andGoodsSnEqualTo (line 437) | public Criteria andGoodsSnEqualTo(String value) { method andGoodsSnEqualToColumn (line 448) | public Criteria andGoodsSnEqualToColumn(LitemallGoods.Column column) { method andGoodsSnNotEqualTo (line 453) | public Criteria andGoodsSnNotEqualTo(String value) { method andGoodsSnNotEqualToColumn (line 464) | public Criteria andGoodsSnNotEqualToColumn(LitemallGoods.Column colu... method andGoodsSnGreaterThan (line 469) | public Criteria andGoodsSnGreaterThan(String value) { method andGoodsSnGreaterThanColumn (line 480) | public Criteria andGoodsSnGreaterThanColumn(LitemallGoods.Column col... method andGoodsSnGreaterThanOrEqualTo (line 485) | public Criteria andGoodsSnGreaterThanOrEqualTo(String value) { method andGoodsSnGreaterThanOrEqualToColumn (line 496) | public Criteria andGoodsSnGreaterThanOrEqualToColumn(LitemallGoods.C... method andGoodsSnLessThan (line 501) | public Criteria andGoodsSnLessThan(String value) { method andGoodsSnLessThanColumn (line 512) | public Criteria andGoodsSnLessThanColumn(LitemallGoods.Column column) { method andGoodsSnLessThanOrEqualTo (line 517) | public Criteria andGoodsSnLessThanOrEqualTo(String value) { method andGoodsSnLessThanOrEqualToColumn (line 528) | public Criteria andGoodsSnLessThanOrEqualToColumn(LitemallGoods.Colu... method andGoodsSnLike (line 533) | public Criteria andGoodsSnLike(String value) { method andGoodsSnNotLike (line 538) | public Criteria andGoodsSnNotLike(String value) { method andGoodsSnIn (line 543) | public Criteria andGoodsSnIn(List values) { method andGoodsSnNotIn (line 548) | public Criteria andGoodsSnNotIn(List values) { method andGoodsSnBetween (line 553) | public Criteria andGoodsSnBetween(String value1, String value2) { method andGoodsSnNotBetween (line 558) | public Criteria andGoodsSnNotBetween(String value1, String value2) { method andNameIsNull (line 563) | public Criteria andNameIsNull() { method andNameIsNotNull (line 568) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 573) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 584) | public Criteria andNameEqualToColumn(LitemallGoods.Column column) { method andNameNotEqualTo (line 589) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 600) | public Criteria andNameNotEqualToColumn(LitemallGoods.Column column) { method andNameGreaterThan (line 605) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 616) | public Criteria andNameGreaterThanColumn(LitemallGoods.Column column) { method andNameGreaterThanOrEqualTo (line 621) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 632) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallGoods.Colu... method andNameLessThan (line 637) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 648) | public Criteria andNameLessThanColumn(LitemallGoods.Column column) { method andNameLessThanOrEqualTo (line 653) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 664) | public Criteria andNameLessThanOrEqualToColumn(LitemallGoods.Column ... method andNameLike (line 669) | public Criteria andNameLike(String value) { method andNameNotLike (line 674) | public Criteria andNameNotLike(String value) { method andNameIn (line 679) | public Criteria andNameIn(List values) { method andNameNotIn (line 684) | public Criteria andNameNotIn(List values) { method andNameBetween (line 689) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 694) | public Criteria andNameNotBetween(String value1, String value2) { method andCategoryIdIsNull (line 699) | public Criteria andCategoryIdIsNull() { method andCategoryIdIsNotNull (line 704) | public Criteria andCategoryIdIsNotNull() { method andCategoryIdEqualTo (line 709) | public Criteria andCategoryIdEqualTo(Integer value) { method andCategoryIdEqualToColumn (line 720) | public Criteria andCategoryIdEqualToColumn(LitemallGoods.Column colu... method andCategoryIdNotEqualTo (line 725) | public Criteria andCategoryIdNotEqualTo(Integer value) { method andCategoryIdNotEqualToColumn (line 736) | public Criteria andCategoryIdNotEqualToColumn(LitemallGoods.Column c... method andCategoryIdGreaterThan (line 741) | public Criteria andCategoryIdGreaterThan(Integer value) { method andCategoryIdGreaterThanColumn (line 752) | public Criteria andCategoryIdGreaterThanColumn(LitemallGoods.Column ... method andCategoryIdGreaterThanOrEqualTo (line 757) | public Criteria andCategoryIdGreaterThanOrEqualTo(Integer value) { method andCategoryIdGreaterThanOrEqualToColumn (line 768) | public Criteria andCategoryIdGreaterThanOrEqualToColumn(LitemallGood... method andCategoryIdLessThan (line 773) | public Criteria andCategoryIdLessThan(Integer value) { method andCategoryIdLessThanColumn (line 784) | public Criteria andCategoryIdLessThanColumn(LitemallGoods.Column col... method andCategoryIdLessThanOrEqualTo (line 789) | public Criteria andCategoryIdLessThanOrEqualTo(Integer value) { method andCategoryIdLessThanOrEqualToColumn (line 800) | public Criteria andCategoryIdLessThanOrEqualToColumn(LitemallGoods.C... method andCategoryIdIn (line 805) | public Criteria andCategoryIdIn(List values) { method andCategoryIdNotIn (line 810) | public Criteria andCategoryIdNotIn(List values) { method andCategoryIdBetween (line 815) | public Criteria andCategoryIdBetween(Integer value1, Integer value2) { method andCategoryIdNotBetween (line 820) | public Criteria andCategoryIdNotBetween(Integer value1, Integer valu... method andBrandIdIsNull (line 825) | public Criteria andBrandIdIsNull() { method andBrandIdIsNotNull (line 830) | public Criteria andBrandIdIsNotNull() { method andBrandIdEqualTo (line 835) | public Criteria andBrandIdEqualTo(Integer value) { method andBrandIdEqualToColumn (line 846) | public Criteria andBrandIdEqualToColumn(LitemallGoods.Column column) { method andBrandIdNotEqualTo (line 851) | public Criteria andBrandIdNotEqualTo(Integer value) { method andBrandIdNotEqualToColumn (line 862) | public Criteria andBrandIdNotEqualToColumn(LitemallGoods.Column colu... method andBrandIdGreaterThan (line 867) | public Criteria andBrandIdGreaterThan(Integer value) { method andBrandIdGreaterThanColumn (line 878) | public Criteria andBrandIdGreaterThanColumn(LitemallGoods.Column col... method andBrandIdGreaterThanOrEqualTo (line 883) | public Criteria andBrandIdGreaterThanOrEqualTo(Integer value) { method andBrandIdGreaterThanOrEqualToColumn (line 894) | public Criteria andBrandIdGreaterThanOrEqualToColumn(LitemallGoods.C... method andBrandIdLessThan (line 899) | public Criteria andBrandIdLessThan(Integer value) { method andBrandIdLessThanColumn (line 910) | public Criteria andBrandIdLessThanColumn(LitemallGoods.Column column) { method andBrandIdLessThanOrEqualTo (line 915) | public Criteria andBrandIdLessThanOrEqualTo(Integer value) { method andBrandIdLessThanOrEqualToColumn (line 926) | public Criteria andBrandIdLessThanOrEqualToColumn(LitemallGoods.Colu... method andBrandIdIn (line 931) | public Criteria andBrandIdIn(List values) { method andBrandIdNotIn (line 936) | public Criteria andBrandIdNotIn(List values) { method andBrandIdBetween (line 941) | public Criteria andBrandIdBetween(Integer value1, Integer value2) { method andBrandIdNotBetween (line 946) | public Criteria andBrandIdNotBetween(Integer value1, Integer value2) { method andGalleryIsNull (line 951) | public Criteria andGalleryIsNull() { method andGalleryIsNotNull (line 956) | public Criteria andGalleryIsNotNull() { method andGalleryEqualTo (line 961) | public Criteria andGalleryEqualTo(String[] value) { method andGalleryEqualToColumn (line 972) | public Criteria andGalleryEqualToColumn(LitemallGoods.Column column) { method andGalleryNotEqualTo (line 977) | public Criteria andGalleryNotEqualTo(String[] value) { method andGalleryNotEqualToColumn (line 988) | public Criteria andGalleryNotEqualToColumn(LitemallGoods.Column colu... method andGalleryGreaterThan (line 993) | public Criteria andGalleryGreaterThan(String[] value) { method andGalleryGreaterThanColumn (line 1004) | public Criteria andGalleryGreaterThanColumn(LitemallGoods.Column col... method andGalleryGreaterThanOrEqualTo (line 1009) | public Criteria andGalleryGreaterThanOrEqualTo(String[] value) { method andGalleryGreaterThanOrEqualToColumn (line 1020) | public Criteria andGalleryGreaterThanOrEqualToColumn(LitemallGoods.C... method andGalleryLessThan (line 1025) | public Criteria andGalleryLessThan(String[] value) { method andGalleryLessThanColumn (line 1036) | public Criteria andGalleryLessThanColumn(LitemallGoods.Column column) { method andGalleryLessThanOrEqualTo (line 1041) | public Criteria andGalleryLessThanOrEqualTo(String[] value) { method andGalleryLessThanOrEqualToColumn (line 1052) | public Criteria andGalleryLessThanOrEqualToColumn(LitemallGoods.Colu... method andGalleryLike (line 1057) | public Criteria andGalleryLike(String[] value) { method andGalleryNotLike (line 1062) | public Criteria andGalleryNotLike(String[] value) { method andGalleryIn (line 1067) | public Criteria andGalleryIn(List values) { method andGalleryNotIn (line 1072) | public Criteria andGalleryNotIn(List values) { method andGalleryBetween (line 1077) | public Criteria andGalleryBetween(String[] value1, String[] value2) { method andGalleryNotBetween (line 1082) | public Criteria andGalleryNotBetween(String[] value1, String[] value... method andKeywordsIsNull (line 1087) | public Criteria andKeywordsIsNull() { method andKeywordsIsNotNull (line 1092) | public Criteria andKeywordsIsNotNull() { method andKeywordsEqualTo (line 1097) | public Criteria andKeywordsEqualTo(String value) { method andKeywordsEqualToColumn (line 1108) | public Criteria andKeywordsEqualToColumn(LitemallGoods.Column column) { method andKeywordsNotEqualTo (line 1113) | public Criteria andKeywordsNotEqualTo(String value) { method andKeywordsNotEqualToColumn (line 1124) | public Criteria andKeywordsNotEqualToColumn(LitemallGoods.Column col... method andKeywordsGreaterThan (line 1129) | public Criteria andKeywordsGreaterThan(String value) { method andKeywordsGreaterThanColumn (line 1140) | public Criteria andKeywordsGreaterThanColumn(LitemallGoods.Column co... method andKeywordsGreaterThanOrEqualTo (line 1145) | public Criteria andKeywordsGreaterThanOrEqualTo(String value) { method andKeywordsGreaterThanOrEqualToColumn (line 1156) | public Criteria andKeywordsGreaterThanOrEqualToColumn(LitemallGoods.... method andKeywordsLessThan (line 1161) | public Criteria andKeywordsLessThan(String value) { method andKeywordsLessThanColumn (line 1172) | public Criteria andKeywordsLessThanColumn(LitemallGoods.Column colum... method andKeywordsLessThanOrEqualTo (line 1177) | public Criteria andKeywordsLessThanOrEqualTo(String value) { method andKeywordsLessThanOrEqualToColumn (line 1188) | public Criteria andKeywordsLessThanOrEqualToColumn(LitemallGoods.Col... method andKeywordsLike (line 1193) | public Criteria andKeywordsLike(String value) { method andKeywordsNotLike (line 1198) | public Criteria andKeywordsNotLike(String value) { method andKeywordsIn (line 1203) | public Criteria andKeywordsIn(List values) { method andKeywordsNotIn (line 1208) | public Criteria andKeywordsNotIn(List values) { method andKeywordsBetween (line 1213) | public Criteria andKeywordsBetween(String value1, String value2) { method andKeywordsNotBetween (line 1218) | public Criteria andKeywordsNotBetween(String value1, String value2) { method andBriefIsNull (line 1223) | public Criteria andBriefIsNull() { method andBriefIsNotNull (line 1228) | public Criteria andBriefIsNotNull() { method andBriefEqualTo (line 1233) | public Criteria andBriefEqualTo(String value) { method andBriefEqualToColumn (line 1244) | public Criteria andBriefEqualToColumn(LitemallGoods.Column column) { method andBriefNotEqualTo (line 1249) | public Criteria andBriefNotEqualTo(String value) { method andBriefNotEqualToColumn (line 1260) | public Criteria andBriefNotEqualToColumn(LitemallGoods.Column column) { method andBriefGreaterThan (line 1265) | public Criteria andBriefGreaterThan(String value) { method andBriefGreaterThanColumn (line 1276) | public Criteria andBriefGreaterThanColumn(LitemallGoods.Column colum... method andBriefGreaterThanOrEqualTo (line 1281) | public Criteria andBriefGreaterThanOrEqualTo(String value) { method andBriefGreaterThanOrEqualToColumn (line 1292) | public Criteria andBriefGreaterThanOrEqualToColumn(LitemallGoods.Col... method andBriefLessThan (line 1297) | public Criteria andBriefLessThan(String value) { method andBriefLessThanColumn (line 1308) | public Criteria andBriefLessThanColumn(LitemallGoods.Column column) { method andBriefLessThanOrEqualTo (line 1313) | public Criteria andBriefLessThanOrEqualTo(String value) { method andBriefLessThanOrEqualToColumn (line 1324) | public Criteria andBriefLessThanOrEqualToColumn(LitemallGoods.Column... method andBriefLike (line 1329) | public Criteria andBriefLike(String value) { method andBriefNotLike (line 1334) | public Criteria andBriefNotLike(String value) { method andBriefIn (line 1339) | public Criteria andBriefIn(List values) { method andBriefNotIn (line 1344) | public Criteria andBriefNotIn(List values) { method andBriefBetween (line 1349) | public Criteria andBriefBetween(String value1, String value2) { method andBriefNotBetween (line 1354) | public Criteria andBriefNotBetween(String value1, String value2) { method andIsOnSaleIsNull (line 1359) | public Criteria andIsOnSaleIsNull() { method andIsOnSaleIsNotNull (line 1364) | public Criteria andIsOnSaleIsNotNull() { method andIsOnSaleEqualTo (line 1369) | public Criteria andIsOnSaleEqualTo(Boolean value) { method andIsOnSaleEqualToColumn (line 1380) | public Criteria andIsOnSaleEqualToColumn(LitemallGoods.Column column) { method andIsOnSaleNotEqualTo (line 1385) | public Criteria andIsOnSaleNotEqualTo(Boolean value) { method andIsOnSaleNotEqualToColumn (line 1396) | public Criteria andIsOnSaleNotEqualToColumn(LitemallGoods.Column col... method andIsOnSaleGreaterThan (line 1401) | public Criteria andIsOnSaleGreaterThan(Boolean value) { method andIsOnSaleGreaterThanColumn (line 1412) | public Criteria andIsOnSaleGreaterThanColumn(LitemallGoods.Column co... method andIsOnSaleGreaterThanOrEqualTo (line 1417) | public Criteria andIsOnSaleGreaterThanOrEqualTo(Boolean value) { method andIsOnSaleGreaterThanOrEqualToColumn (line 1428) | public Criteria andIsOnSaleGreaterThanOrEqualToColumn(LitemallGoods.... method andIsOnSaleLessThan (line 1433) | public Criteria andIsOnSaleLessThan(Boolean value) { method andIsOnSaleLessThanColumn (line 1444) | public Criteria andIsOnSaleLessThanColumn(LitemallGoods.Column colum... method andIsOnSaleLessThanOrEqualTo (line 1449) | public Criteria andIsOnSaleLessThanOrEqualTo(Boolean value) { method andIsOnSaleLessThanOrEqualToColumn (line 1460) | public Criteria andIsOnSaleLessThanOrEqualToColumn(LitemallGoods.Col... method andIsOnSaleIn (line 1465) | public Criteria andIsOnSaleIn(List values) { method andIsOnSaleNotIn (line 1470) | public Criteria andIsOnSaleNotIn(List values) { method andIsOnSaleBetween (line 1475) | public Criteria andIsOnSaleBetween(Boolean value1, Boolean value2) { method andIsOnSaleNotBetween (line 1480) | public Criteria andIsOnSaleNotBetween(Boolean value1, Boolean value2) { method andSortOrderIsNull (line 1485) | public Criteria andSortOrderIsNull() { method andSortOrderIsNotNull (line 1490) | public Criteria andSortOrderIsNotNull() { method andSortOrderEqualTo (line 1495) | public Criteria andSortOrderEqualTo(Short value) { method andSortOrderEqualToColumn (line 1506) | public Criteria andSortOrderEqualToColumn(LitemallGoods.Column colum... method andSortOrderNotEqualTo (line 1511) | public Criteria andSortOrderNotEqualTo(Short value) { method andSortOrderNotEqualToColumn (line 1522) | public Criteria andSortOrderNotEqualToColumn(LitemallGoods.Column co... method andSortOrderGreaterThan (line 1527) | public Criteria andSortOrderGreaterThan(Short value) { method andSortOrderGreaterThanColumn (line 1538) | public Criteria andSortOrderGreaterThanColumn(LitemallGoods.Column c... method andSortOrderGreaterThanOrEqualTo (line 1543) | public Criteria andSortOrderGreaterThanOrEqualTo(Short value) { method andSortOrderGreaterThanOrEqualToColumn (line 1554) | public Criteria andSortOrderGreaterThanOrEqualToColumn(LitemallGoods... method andSortOrderLessThan (line 1559) | public Criteria andSortOrderLessThan(Short value) { method andSortOrderLessThanColumn (line 1570) | public Criteria andSortOrderLessThanColumn(LitemallGoods.Column colu... method andSortOrderLessThanOrEqualTo (line 1575) | public Criteria andSortOrderLessThanOrEqualTo(Short value) { method andSortOrderLessThanOrEqualToColumn (line 1586) | public Criteria andSortOrderLessThanOrEqualToColumn(LitemallGoods.Co... method andSortOrderIn (line 1591) | public Criteria andSortOrderIn(List values) { method andSortOrderNotIn (line 1596) | public Criteria andSortOrderNotIn(List values) { method andSortOrderBetween (line 1601) | public Criteria andSortOrderBetween(Short value1, Short value2) { method andSortOrderNotBetween (line 1606) | public Criteria andSortOrderNotBetween(Short value1, Short value2) { method andPicUrlIsNull (line 1611) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 1616) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 1621) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 1632) | public Criteria andPicUrlEqualToColumn(LitemallGoods.Column column) { method andPicUrlNotEqualTo (line 1637) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 1648) | public Criteria andPicUrlNotEqualToColumn(LitemallGoods.Column colum... method andPicUrlGreaterThan (line 1653) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 1664) | public Criteria andPicUrlGreaterThanColumn(LitemallGoods.Column colu... method andPicUrlGreaterThanOrEqualTo (line 1669) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 1680) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallGoods.Co... method andPicUrlLessThan (line 1685) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 1696) | public Criteria andPicUrlLessThanColumn(LitemallGoods.Column column) { method andPicUrlLessThanOrEqualTo (line 1701) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 1712) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallGoods.Colum... method andPicUrlLike (line 1717) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 1722) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 1727) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 1732) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 1737) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 1742) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andShareUrlIsNull (line 1747) | public Criteria andShareUrlIsNull() { method andShareUrlIsNotNull (line 1752) | public Criteria andShareUrlIsNotNull() { method andShareUrlEqualTo (line 1757) | public Criteria andShareUrlEqualTo(String value) { method andShareUrlEqualToColumn (line 1768) | public Criteria andShareUrlEqualToColumn(LitemallGoods.Column column) { method andShareUrlNotEqualTo (line 1773) | public Criteria andShareUrlNotEqualTo(String value) { method andShareUrlNotEqualToColumn (line 1784) | public Criteria andShareUrlNotEqualToColumn(LitemallGoods.Column col... method andShareUrlGreaterThan (line 1789) | public Criteria andShareUrlGreaterThan(String value) { method andShareUrlGreaterThanColumn (line 1800) | public Criteria andShareUrlGreaterThanColumn(LitemallGoods.Column co... method andShareUrlGreaterThanOrEqualTo (line 1805) | public Criteria andShareUrlGreaterThanOrEqualTo(String value) { method andShareUrlGreaterThanOrEqualToColumn (line 1816) | public Criteria andShareUrlGreaterThanOrEqualToColumn(LitemallGoods.... method andShareUrlLessThan (line 1821) | public Criteria andShareUrlLessThan(String value) { method andShareUrlLessThanColumn (line 1832) | public Criteria andShareUrlLessThanColumn(LitemallGoods.Column colum... method andShareUrlLessThanOrEqualTo (line 1837) | public Criteria andShareUrlLessThanOrEqualTo(String value) { method andShareUrlLessThanOrEqualToColumn (line 1848) | public Criteria andShareUrlLessThanOrEqualToColumn(LitemallGoods.Col... method andShareUrlLike (line 1853) | public Criteria andShareUrlLike(String value) { method andShareUrlNotLike (line 1858) | public Criteria andShareUrlNotLike(String value) { method andShareUrlIn (line 1863) | public Criteria andShareUrlIn(List values) { method andShareUrlNotIn (line 1868) | public Criteria andShareUrlNotIn(List values) { method andShareUrlBetween (line 1873) | public Criteria andShareUrlBetween(String value1, String value2) { method andShareUrlNotBetween (line 1878) | public Criteria andShareUrlNotBetween(String value1, String value2) { method andIsNewIsNull (line 1883) | public Criteria andIsNewIsNull() { method andIsNewIsNotNull (line 1888) | public Criteria andIsNewIsNotNull() { method andIsNewEqualTo (line 1893) | public Criteria andIsNewEqualTo(Boolean value) { method andIsNewEqualToColumn (line 1904) | public Criteria andIsNewEqualToColumn(LitemallGoods.Column column) { method andIsNewNotEqualTo (line 1909) | public Criteria andIsNewNotEqualTo(Boolean value) { method andIsNewNotEqualToColumn (line 1920) | public Criteria andIsNewNotEqualToColumn(LitemallGoods.Column column) { method andIsNewGreaterThan (line 1925) | public Criteria andIsNewGreaterThan(Boolean value) { method andIsNewGreaterThanColumn (line 1936) | public Criteria andIsNewGreaterThanColumn(LitemallGoods.Column colum... method andIsNewGreaterThanOrEqualTo (line 1941) | public Criteria andIsNewGreaterThanOrEqualTo(Boolean value) { method andIsNewGreaterThanOrEqualToColumn (line 1952) | public Criteria andIsNewGreaterThanOrEqualToColumn(LitemallGoods.Col... method andIsNewLessThan (line 1957) | public Criteria andIsNewLessThan(Boolean value) { method andIsNewLessThanColumn (line 1968) | public Criteria andIsNewLessThanColumn(LitemallGoods.Column column) { method andIsNewLessThanOrEqualTo (line 1973) | public Criteria andIsNewLessThanOrEqualTo(Boolean value) { method andIsNewLessThanOrEqualToColumn (line 1984) | public Criteria andIsNewLessThanOrEqualToColumn(LitemallGoods.Column... method andIsNewIn (line 1989) | public Criteria andIsNewIn(List values) { method andIsNewNotIn (line 1994) | public Criteria andIsNewNotIn(List values) { method andIsNewBetween (line 1999) | public Criteria andIsNewBetween(Boolean value1, Boolean value2) { method andIsNewNotBetween (line 2004) | public Criteria andIsNewNotBetween(Boolean value1, Boolean value2) { method andIsHotIsNull (line 2009) | public Criteria andIsHotIsNull() { method andIsHotIsNotNull (line 2014) | public Criteria andIsHotIsNotNull() { method andIsHotEqualTo (line 2019) | public Criteria andIsHotEqualTo(Boolean value) { method andIsHotEqualToColumn (line 2030) | public Criteria andIsHotEqualToColumn(LitemallGoods.Column column) { method andIsHotNotEqualTo (line 2035) | public Criteria andIsHotNotEqualTo(Boolean value) { method andIsHotNotEqualToColumn (line 2046) | public Criteria andIsHotNotEqualToColumn(LitemallGoods.Column column) { method andIsHotGreaterThan (line 2051) | public Criteria andIsHotGreaterThan(Boolean value) { method andIsHotGreaterThanColumn (line 2062) | public Criteria andIsHotGreaterThanColumn(LitemallGoods.Column colum... method andIsHotGreaterThanOrEqualTo (line 2067) | public Criteria andIsHotGreaterThanOrEqualTo(Boolean value) { method andIsHotGreaterThanOrEqualToColumn (line 2078) | public Criteria andIsHotGreaterThanOrEqualToColumn(LitemallGoods.Col... method andIsHotLessThan (line 2083) | public Criteria andIsHotLessThan(Boolean value) { method andIsHotLessThanColumn (line 2094) | public Criteria andIsHotLessThanColumn(LitemallGoods.Column column) { method andIsHotLessThanOrEqualTo (line 2099) | public Criteria andIsHotLessThanOrEqualTo(Boolean value) { method andIsHotLessThanOrEqualToColumn (line 2110) | public Criteria andIsHotLessThanOrEqualToColumn(LitemallGoods.Column... method andIsHotIn (line 2115) | public Criteria andIsHotIn(List values) { method andIsHotNotIn (line 2120) | public Criteria andIsHotNotIn(List values) { method andIsHotBetween (line 2125) | public Criteria andIsHotBetween(Boolean value1, Boolean value2) { method andIsHotNotBetween (line 2130) | public Criteria andIsHotNotBetween(Boolean value1, Boolean value2) { method andUnitIsNull (line 2135) | public Criteria andUnitIsNull() { method andUnitIsNotNull (line 2140) | public Criteria andUnitIsNotNull() { method andUnitEqualTo (line 2145) | public Criteria andUnitEqualTo(String value) { method andUnitEqualToColumn (line 2156) | public Criteria andUnitEqualToColumn(LitemallGoods.Column column) { method andUnitNotEqualTo (line 2161) | public Criteria andUnitNotEqualTo(String value) { method andUnitNotEqualToColumn (line 2172) | public Criteria andUnitNotEqualToColumn(LitemallGoods.Column column) { method andUnitGreaterThan (line 2177) | public Criteria andUnitGreaterThan(String value) { method andUnitGreaterThanColumn (line 2188) | public Criteria andUnitGreaterThanColumn(LitemallGoods.Column column) { method andUnitGreaterThanOrEqualTo (line 2193) | public Criteria andUnitGreaterThanOrEqualTo(String value) { method andUnitGreaterThanOrEqualToColumn (line 2204) | public Criteria andUnitGreaterThanOrEqualToColumn(LitemallGoods.Colu... method andUnitLessThan (line 2209) | public Criteria andUnitLessThan(String value) { method andUnitLessThanColumn (line 2220) | public Criteria andUnitLessThanColumn(LitemallGoods.Column column) { method andUnitLessThanOrEqualTo (line 2225) | public Criteria andUnitLessThanOrEqualTo(String value) { method andUnitLessThanOrEqualToColumn (line 2236) | public Criteria andUnitLessThanOrEqualToColumn(LitemallGoods.Column ... method andUnitLike (line 2241) | public Criteria andUnitLike(String value) { method andUnitNotLike (line 2246) | public Criteria andUnitNotLike(String value) { method andUnitIn (line 2251) | public Criteria andUnitIn(List values) { method andUnitNotIn (line 2256) | public Criteria andUnitNotIn(List values) { method andUnitBetween (line 2261) | public Criteria andUnitBetween(String value1, String value2) { method andUnitNotBetween (line 2266) | public Criteria andUnitNotBetween(String value1, String value2) { method andCounterPriceIsNull (line 2271) | public Criteria andCounterPriceIsNull() { method andCounterPriceIsNotNull (line 2276) | public Criteria andCounterPriceIsNotNull() { method andCounterPriceEqualTo (line 2281) | public Criteria andCounterPriceEqualTo(BigDecimal value) { method andCounterPriceEqualToColumn (line 2292) | public Criteria andCounterPriceEqualToColumn(LitemallGoods.Column co... method andCounterPriceNotEqualTo (line 2297) | public Criteria andCounterPriceNotEqualTo(BigDecimal value) { method andCounterPriceNotEqualToColumn (line 2308) | public Criteria andCounterPriceNotEqualToColumn(LitemallGoods.Column... method andCounterPriceGreaterThan (line 2313) | public Criteria andCounterPriceGreaterThan(BigDecimal value) { method andCounterPriceGreaterThanColumn (line 2324) | public Criteria andCounterPriceGreaterThanColumn(LitemallGoods.Colum... method andCounterPriceGreaterThanOrEqualTo (line 2329) | public Criteria andCounterPriceGreaterThanOrEqualTo(BigDecimal value) { method andCounterPriceGreaterThanOrEqualToColumn (line 2340) | public Criteria andCounterPriceGreaterThanOrEqualToColumn(LitemallGo... method andCounterPriceLessThan (line 2345) | public Criteria andCounterPriceLessThan(BigDecimal value) { method andCounterPriceLessThanColumn (line 2356) | public Criteria andCounterPriceLessThanColumn(LitemallGoods.Column c... method andCounterPriceLessThanOrEqualTo (line 2361) | public Criteria andCounterPriceLessThanOrEqualTo(BigDecimal value) { method andCounterPriceLessThanOrEqualToColumn (line 2372) | public Criteria andCounterPriceLessThanOrEqualToColumn(LitemallGoods... method andCounterPriceIn (line 2377) | public Criteria andCounterPriceIn(List values) { method andCounterPriceNotIn (line 2382) | public Criteria andCounterPriceNotIn(List values) { method andCounterPriceBetween (line 2387) | public Criteria andCounterPriceBetween(BigDecimal value1, BigDecimal... method andCounterPriceNotBetween (line 2392) | public Criteria andCounterPriceNotBetween(BigDecimal value1, BigDeci... method andRetailPriceIsNull (line 2397) | public Criteria andRetailPriceIsNull() { method andRetailPriceIsNotNull (line 2402) | public Criteria andRetailPriceIsNotNull() { method andRetailPriceEqualTo (line 2407) | public Criteria andRetailPriceEqualTo(BigDecimal value) { method andRetailPriceEqualToColumn (line 2418) | public Criteria andRetailPriceEqualToColumn(LitemallGoods.Column col... method andRetailPriceNotEqualTo (line 2423) | public Criteria andRetailPriceNotEqualTo(BigDecimal value) { method andRetailPriceNotEqualToColumn (line 2434) | public Criteria andRetailPriceNotEqualToColumn(LitemallGoods.Column ... method andRetailPriceGreaterThan (line 2439) | public Criteria andRetailPriceGreaterThan(BigDecimal value) { method andRetailPriceGreaterThanColumn (line 2450) | public Criteria andRetailPriceGreaterThanColumn(LitemallGoods.Column... method andRetailPriceGreaterThanOrEqualTo (line 2455) | public Criteria andRetailPriceGreaterThanOrEqualTo(BigDecimal value) { method andRetailPriceGreaterThanOrEqualToColumn (line 2466) | public Criteria andRetailPriceGreaterThanOrEqualToColumn(LitemallGoo... method andRetailPriceLessThan (line 2471) | public Criteria andRetailPriceLessThan(BigDecimal value) { method andRetailPriceLessThanColumn (line 2482) | public Criteria andRetailPriceLessThanColumn(LitemallGoods.Column co... method andRetailPriceLessThanOrEqualTo (line 2487) | public Criteria andRetailPriceLessThanOrEqualTo(BigDecimal value) { method andRetailPriceLessThanOrEqualToColumn (line 2498) | public Criteria andRetailPriceLessThanOrEqualToColumn(LitemallGoods.... method andRetailPriceIn (line 2503) | public Criteria andRetailPriceIn(List values) { method andRetailPriceNotIn (line 2508) | public Criteria andRetailPriceNotIn(List values) { method andRetailPriceBetween (line 2513) | public Criteria andRetailPriceBetween(BigDecimal value1, BigDecimal ... method andRetailPriceNotBetween (line 2518) | public Criteria andRetailPriceNotBetween(BigDecimal value1, BigDecim... method andAddTimeIsNull (line 2523) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 2528) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 2533) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 2544) | public Criteria andAddTimeEqualToColumn(LitemallGoods.Column column) { method andAddTimeNotEqualTo (line 2549) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 2560) | public Criteria andAddTimeNotEqualToColumn(LitemallGoods.Column colu... method andAddTimeGreaterThan (line 2565) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 2576) | public Criteria andAddTimeGreaterThanColumn(LitemallGoods.Column col... method andAddTimeGreaterThanOrEqualTo (line 2581) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 2592) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallGoods.C... method andAddTimeLessThan (line 2597) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 2608) | public Criteria andAddTimeLessThanColumn(LitemallGoods.Column column) { method andAddTimeLessThanOrEqualTo (line 2613) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 2624) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallGoods.Colu... method andAddTimeIn (line 2629) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 2634) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 2639) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 2644) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 2649) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 2654) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 2659) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 2670) | public Criteria andUpdateTimeEqualToColumn(LitemallGoods.Column colu... method andUpdateTimeNotEqualTo (line 2675) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 2686) | public Criteria andUpdateTimeNotEqualToColumn(LitemallGoods.Column c... method andUpdateTimeGreaterThan (line 2691) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 2702) | public Criteria andUpdateTimeGreaterThanColumn(LitemallGoods.Column ... method andUpdateTimeGreaterThanOrEqualTo (line 2707) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 2718) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallGood... method andUpdateTimeLessThan (line 2723) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 2734) | public Criteria andUpdateTimeLessThanColumn(LitemallGoods.Column col... method andUpdateTimeLessThanOrEqualTo (line 2739) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 2750) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallGoods.C... method andUpdateTimeIn (line 2755) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 2760) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 2765) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 2770) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 2775) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 2780) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 2785) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 2796) | public Criteria andDeletedEqualToColumn(LitemallGoods.Column column) { method andDeletedNotEqualTo (line 2801) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 2812) | public Criteria andDeletedNotEqualToColumn(LitemallGoods.Column colu... method andDeletedGreaterThan (line 2817) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 2828) | public Criteria andDeletedGreaterThanColumn(LitemallGoods.Column col... method andDeletedGreaterThanOrEqualTo (line 2833) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 2844) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallGoods.C... method andDeletedLessThan (line 2849) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 2860) | public Criteria andDeletedLessThanColumn(LitemallGoods.Column column) { method andDeletedLessThanOrEqualTo (line 2865) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 2876) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallGoods.Colu... method andDeletedIn (line 2881) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 2886) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 2891) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 2896) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 2908) | public static class Criteria extends GeneratedCriteria { method Criteria (line 2923) | protected Criteria(LitemallGoodsExample example) { method example (line 2934) | public LitemallGoodsExample example() { method andIf (line 2944) | @Deprecated method when (line 2958) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 2971) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 2986) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 2990) | @Deprecated method add (line 2998) | Criteria add(Criteria add); class Criterion (line 3008) | public static class Criterion { method getCondition (line 3025) | public String getCondition() { method getValue (line 3029) | public Object getValue() { method getSecondValue (line 3033) | public Object getSecondValue() { method isNoValue (line 3037) | public boolean isNoValue() { method isSingleValue (line 3041) | public boolean isSingleValue() { method isBetweenValue (line 3045) | public boolean isBetweenValue() { method isListValue (line 3049) | public boolean isListValue() { method getTypeHandler (line 3053) | public String getTypeHandler() { method Criterion (line 3057) | protected Criterion(String condition) { method Criterion (line 3064) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 3076) | protected Criterion(String condition, Object value) { method Criterion (line 3080) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 3089) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 3094) | public interface ICriteriaWhen { method criteria (line 3101) | void criteria(Criteria criteria); type IExampleWhen (line 3104) | public interface IExampleWhen { method example (line 3111) | void example(org.linlinjava.litemall.db.domain.LitemallGoodsExample ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoodsProduct.java class LitemallGoodsProduct (line 8) | public class LitemallGoodsProduct { method getId (line 114) | public Integer getId() { method setId (line 126) | public void setId(Integer id) { method getGoodsId (line 138) | public Integer getGoodsId() { method setGoodsId (line 150) | public void setGoodsId(Integer goodsId) { method getSpecifications (line 162) | public String[] getSpecifications() { method setSpecifications (line 174) | public void setSpecifications(String[] specifications) { method getPrice (line 186) | public BigDecimal getPrice() { method setPrice (line 198) | public void setPrice(BigDecimal price) { method getNumber (line 210) | public Integer getNumber() { method setNumber (line 222) | public void setNumber(Integer number) { method getUrl (line 234) | public String getUrl() { method setUrl (line 246) | public void setUrl(String url) { method getAddTime (line 258) | public LocalDateTime getAddTime() { method setAddTime (line 270) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 282) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 294) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 304) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 316) | public Boolean getDeleted() { method setDeleted (line 328) | public void setDeleted(Boolean deleted) { method toString (line 338) | @Override method equals (line 365) | @Override method hashCode (line 394) | @Override type Deleted (line 416) | public enum Deleted { method Deleted (line 442) | Deleted(Boolean value, String name) { method getValue (line 453) | public Boolean getValue() { method value (line 463) | public Boolean value() { method getName (line 473) | public String getName() { type Column (line 484) | public enum Column { method value (line 549) | public String value() { method getValue (line 559) | public String getValue() { method getJavaProperty (line 569) | public String getJavaProperty() { method getJdbcType (line 579) | public String getJdbcType() { method Column (line 589) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 602) | public String desc() { method asc (line 612) | public String asc() { method excludes (line 622) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 636) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 650) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoodsProductExample.java class LitemallGoodsProductExample (line 8) | public class LitemallGoodsProductExample { method LitemallGoodsProductExample (line 39) | public LitemallGoodsProductExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallGoodsProductExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallGoodsProductExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallGoodsProductExample when(boolean condition, IExampleWhe... method when (line 211) | public LitemallGoodsProductExample when(boolean condition, IExampleWhe... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 233) | protected GeneratedCriteria() { method getSpecificationsCriteria (line 239) | public List getSpecificationsCriteria() { method addSpecificationsCriterion (line 243) | protected void addSpecificationsCriterion(String condition, Object v... method addSpecificationsCriterion (line 251) | protected void addSpecificationsCriterion(String condition, String[]... method isValid (line 259) | public boolean isValid() { method getAllCriteria (line 264) | public List getAllCriteria() { method getCriteria (line 273) | public List getCriteria() { method addCriterion (line 277) | protected void addCriterion(String condition) { method addCriterion (line 285) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 293) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 301) | public Criteria andIdIsNull() { method andIdIsNotNull (line 306) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 311) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 322) | public Criteria andIdEqualToColumn(LitemallGoodsProduct.Column colum... method andIdNotEqualTo (line 327) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 338) | public Criteria andIdNotEqualToColumn(LitemallGoodsProduct.Column co... method andIdGreaterThan (line 343) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 354) | public Criteria andIdGreaterThanColumn(LitemallGoodsProduct.Column c... method andIdGreaterThanOrEqualTo (line 359) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 370) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallGoodsProduct... method andIdLessThan (line 375) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 386) | public Criteria andIdLessThanColumn(LitemallGoodsProduct.Column colu... method andIdLessThanOrEqualTo (line 391) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 402) | public Criteria andIdLessThanOrEqualToColumn(LitemallGoodsProduct.Co... method andIdIn (line 407) | public Criteria andIdIn(List values) { method andIdNotIn (line 412) | public Criteria andIdNotIn(List values) { method andIdBetween (line 417) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 422) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andGoodsIdIsNull (line 427) | public Criteria andGoodsIdIsNull() { method andGoodsIdIsNotNull (line 432) | public Criteria andGoodsIdIsNotNull() { method andGoodsIdEqualTo (line 437) | public Criteria andGoodsIdEqualTo(Integer value) { method andGoodsIdEqualToColumn (line 448) | public Criteria andGoodsIdEqualToColumn(LitemallGoodsProduct.Column ... method andGoodsIdNotEqualTo (line 453) | public Criteria andGoodsIdNotEqualTo(Integer value) { method andGoodsIdNotEqualToColumn (line 464) | public Criteria andGoodsIdNotEqualToColumn(LitemallGoodsProduct.Colu... method andGoodsIdGreaterThan (line 469) | public Criteria andGoodsIdGreaterThan(Integer value) { method andGoodsIdGreaterThanColumn (line 480) | public Criteria andGoodsIdGreaterThanColumn(LitemallGoodsProduct.Col... method andGoodsIdGreaterThanOrEqualTo (line 485) | public Criteria andGoodsIdGreaterThanOrEqualTo(Integer value) { method andGoodsIdGreaterThanOrEqualToColumn (line 496) | public Criteria andGoodsIdGreaterThanOrEqualToColumn(LitemallGoodsPr... method andGoodsIdLessThan (line 501) | public Criteria andGoodsIdLessThan(Integer value) { method andGoodsIdLessThanColumn (line 512) | public Criteria andGoodsIdLessThanColumn(LitemallGoodsProduct.Column... method andGoodsIdLessThanOrEqualTo (line 517) | public Criteria andGoodsIdLessThanOrEqualTo(Integer value) { method andGoodsIdLessThanOrEqualToColumn (line 528) | public Criteria andGoodsIdLessThanOrEqualToColumn(LitemallGoodsProdu... method andGoodsIdIn (line 533) | public Criteria andGoodsIdIn(List values) { method andGoodsIdNotIn (line 538) | public Criteria andGoodsIdNotIn(List values) { method andGoodsIdBetween (line 543) | public Criteria andGoodsIdBetween(Integer value1, Integer value2) { method andGoodsIdNotBetween (line 548) | public Criteria andGoodsIdNotBetween(Integer value1, Integer value2) { method andSpecificationsIsNull (line 553) | public Criteria andSpecificationsIsNull() { method andSpecificationsIsNotNull (line 558) | public Criteria andSpecificationsIsNotNull() { method andSpecificationsEqualTo (line 563) | public Criteria andSpecificationsEqualTo(String[] value) { method andSpecificationsEqualToColumn (line 574) | public Criteria andSpecificationsEqualToColumn(LitemallGoodsProduct.... method andSpecificationsNotEqualTo (line 579) | public Criteria andSpecificationsNotEqualTo(String[] value) { method andSpecificationsNotEqualToColumn (line 590) | public Criteria andSpecificationsNotEqualToColumn(LitemallGoodsProdu... method andSpecificationsGreaterThan (line 595) | public Criteria andSpecificationsGreaterThan(String[] value) { method andSpecificationsGreaterThanColumn (line 606) | public Criteria andSpecificationsGreaterThanColumn(LitemallGoodsProd... method andSpecificationsGreaterThanOrEqualTo (line 611) | public Criteria andSpecificationsGreaterThanOrEqualTo(String[] value) { method andSpecificationsGreaterThanOrEqualToColumn (line 622) | public Criteria andSpecificationsGreaterThanOrEqualToColumn(Litemall... method andSpecificationsLessThan (line 627) | public Criteria andSpecificationsLessThan(String[] value) { method andSpecificationsLessThanColumn (line 638) | public Criteria andSpecificationsLessThanColumn(LitemallGoodsProduct... method andSpecificationsLessThanOrEqualTo (line 643) | public Criteria andSpecificationsLessThanOrEqualTo(String[] value) { method andSpecificationsLessThanOrEqualToColumn (line 654) | public Criteria andSpecificationsLessThanOrEqualToColumn(LitemallGoo... method andSpecificationsLike (line 659) | public Criteria andSpecificationsLike(String[] value) { method andSpecificationsNotLike (line 664) | public Criteria andSpecificationsNotLike(String[] value) { method andSpecificationsIn (line 669) | public Criteria andSpecificationsIn(List values) { method andSpecificationsNotIn (line 674) | public Criteria andSpecificationsNotIn(List values) { method andSpecificationsBetween (line 679) | public Criteria andSpecificationsBetween(String[] value1, String[] v... method andSpecificationsNotBetween (line 684) | public Criteria andSpecificationsNotBetween(String[] value1, String[... method andPriceIsNull (line 689) | public Criteria andPriceIsNull() { method andPriceIsNotNull (line 694) | public Criteria andPriceIsNotNull() { method andPriceEqualTo (line 699) | public Criteria andPriceEqualTo(BigDecimal value) { method andPriceEqualToColumn (line 710) | public Criteria andPriceEqualToColumn(LitemallGoodsProduct.Column co... method andPriceNotEqualTo (line 715) | public Criteria andPriceNotEqualTo(BigDecimal value) { method andPriceNotEqualToColumn (line 726) | public Criteria andPriceNotEqualToColumn(LitemallGoodsProduct.Column... method andPriceGreaterThan (line 731) | public Criteria andPriceGreaterThan(BigDecimal value) { method andPriceGreaterThanColumn (line 742) | public Criteria andPriceGreaterThanColumn(LitemallGoodsProduct.Colum... method andPriceGreaterThanOrEqualTo (line 747) | public Criteria andPriceGreaterThanOrEqualTo(BigDecimal value) { method andPriceGreaterThanOrEqualToColumn (line 758) | public Criteria andPriceGreaterThanOrEqualToColumn(LitemallGoodsProd... method andPriceLessThan (line 763) | public Criteria andPriceLessThan(BigDecimal value) { method andPriceLessThanColumn (line 774) | public Criteria andPriceLessThanColumn(LitemallGoodsProduct.Column c... method andPriceLessThanOrEqualTo (line 779) | public Criteria andPriceLessThanOrEqualTo(BigDecimal value) { method andPriceLessThanOrEqualToColumn (line 790) | public Criteria andPriceLessThanOrEqualToColumn(LitemallGoodsProduct... method andPriceIn (line 795) | public Criteria andPriceIn(List values) { method andPriceNotIn (line 800) | public Criteria andPriceNotIn(List values) { method andPriceBetween (line 805) | public Criteria andPriceBetween(BigDecimal value1, BigDecimal value2) { method andPriceNotBetween (line 810) | public Criteria andPriceNotBetween(BigDecimal value1, BigDecimal val... method andNumberIsNull (line 815) | public Criteria andNumberIsNull() { method andNumberIsNotNull (line 820) | public Criteria andNumberIsNotNull() { method andNumberEqualTo (line 825) | public Criteria andNumberEqualTo(Integer value) { method andNumberEqualToColumn (line 836) | public Criteria andNumberEqualToColumn(LitemallGoodsProduct.Column c... method andNumberNotEqualTo (line 841) | public Criteria andNumberNotEqualTo(Integer value) { method andNumberNotEqualToColumn (line 852) | public Criteria andNumberNotEqualToColumn(LitemallGoodsProduct.Colum... method andNumberGreaterThan (line 857) | public Criteria andNumberGreaterThan(Integer value) { method andNumberGreaterThanColumn (line 868) | public Criteria andNumberGreaterThanColumn(LitemallGoodsProduct.Colu... method andNumberGreaterThanOrEqualTo (line 873) | public Criteria andNumberGreaterThanOrEqualTo(Integer value) { method andNumberGreaterThanOrEqualToColumn (line 884) | public Criteria andNumberGreaterThanOrEqualToColumn(LitemallGoodsPro... method andNumberLessThan (line 889) | public Criteria andNumberLessThan(Integer value) { method andNumberLessThanColumn (line 900) | public Criteria andNumberLessThanColumn(LitemallGoodsProduct.Column ... method andNumberLessThanOrEqualTo (line 905) | public Criteria andNumberLessThanOrEqualTo(Integer value) { method andNumberLessThanOrEqualToColumn (line 916) | public Criteria andNumberLessThanOrEqualToColumn(LitemallGoodsProduc... method andNumberIn (line 921) | public Criteria andNumberIn(List values) { method andNumberNotIn (line 926) | public Criteria andNumberNotIn(List values) { method andNumberBetween (line 931) | public Criteria andNumberBetween(Integer value1, Integer value2) { method andNumberNotBetween (line 936) | public Criteria andNumberNotBetween(Integer value1, Integer value2) { method andUrlIsNull (line 941) | public Criteria andUrlIsNull() { method andUrlIsNotNull (line 946) | public Criteria andUrlIsNotNull() { method andUrlEqualTo (line 951) | public Criteria andUrlEqualTo(String value) { method andUrlEqualToColumn (line 962) | public Criteria andUrlEqualToColumn(LitemallGoodsProduct.Column colu... method andUrlNotEqualTo (line 967) | public Criteria andUrlNotEqualTo(String value) { method andUrlNotEqualToColumn (line 978) | public Criteria andUrlNotEqualToColumn(LitemallGoodsProduct.Column c... method andUrlGreaterThan (line 983) | public Criteria andUrlGreaterThan(String value) { method andUrlGreaterThanColumn (line 994) | public Criteria andUrlGreaterThanColumn(LitemallGoodsProduct.Column ... method andUrlGreaterThanOrEqualTo (line 999) | public Criteria andUrlGreaterThanOrEqualTo(String value) { method andUrlGreaterThanOrEqualToColumn (line 1010) | public Criteria andUrlGreaterThanOrEqualToColumn(LitemallGoodsProduc... method andUrlLessThan (line 1015) | public Criteria andUrlLessThan(String value) { method andUrlLessThanColumn (line 1026) | public Criteria andUrlLessThanColumn(LitemallGoodsProduct.Column col... method andUrlLessThanOrEqualTo (line 1031) | public Criteria andUrlLessThanOrEqualTo(String value) { method andUrlLessThanOrEqualToColumn (line 1042) | public Criteria andUrlLessThanOrEqualToColumn(LitemallGoodsProduct.C... method andUrlLike (line 1047) | public Criteria andUrlLike(String value) { method andUrlNotLike (line 1052) | public Criteria andUrlNotLike(String value) { method andUrlIn (line 1057) | public Criteria andUrlIn(List values) { method andUrlNotIn (line 1062) | public Criteria andUrlNotIn(List values) { method andUrlBetween (line 1067) | public Criteria andUrlBetween(String value1, String value2) { method andUrlNotBetween (line 1072) | public Criteria andUrlNotBetween(String value1, String value2) { method andAddTimeIsNull (line 1077) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1082) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1087) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1098) | public Criteria andAddTimeEqualToColumn(LitemallGoodsProduct.Column ... method andAddTimeNotEqualTo (line 1103) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1114) | public Criteria andAddTimeNotEqualToColumn(LitemallGoodsProduct.Colu... method andAddTimeGreaterThan (line 1119) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1130) | public Criteria andAddTimeGreaterThanColumn(LitemallGoodsProduct.Col... method andAddTimeGreaterThanOrEqualTo (line 1135) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1146) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallGoodsPr... method andAddTimeLessThan (line 1151) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1162) | public Criteria andAddTimeLessThanColumn(LitemallGoodsProduct.Column... method andAddTimeLessThanOrEqualTo (line 1167) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1178) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallGoodsProdu... method andAddTimeIn (line 1183) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1188) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1193) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1198) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1203) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1208) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1213) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1224) | public Criteria andUpdateTimeEqualToColumn(LitemallGoodsProduct.Colu... method andUpdateTimeNotEqualTo (line 1229) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1240) | public Criteria andUpdateTimeNotEqualToColumn(LitemallGoodsProduct.C... method andUpdateTimeGreaterThan (line 1245) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1256) | public Criteria andUpdateTimeGreaterThanColumn(LitemallGoodsProduct.... method andUpdateTimeGreaterThanOrEqualTo (line 1261) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1272) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallGood... method andUpdateTimeLessThan (line 1277) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1288) | public Criteria andUpdateTimeLessThanColumn(LitemallGoodsProduct.Col... method andUpdateTimeLessThanOrEqualTo (line 1293) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1304) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallGoodsPr... method andUpdateTimeIn (line 1309) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1314) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1319) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1324) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1329) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1334) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1339) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1350) | public Criteria andDeletedEqualToColumn(LitemallGoodsProduct.Column ... method andDeletedNotEqualTo (line 1355) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1366) | public Criteria andDeletedNotEqualToColumn(LitemallGoodsProduct.Colu... method andDeletedGreaterThan (line 1371) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1382) | public Criteria andDeletedGreaterThanColumn(LitemallGoodsProduct.Col... method andDeletedGreaterThanOrEqualTo (line 1387) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1398) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallGoodsPr... method andDeletedLessThan (line 1403) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1414) | public Criteria andDeletedLessThanColumn(LitemallGoodsProduct.Column... method andDeletedLessThanOrEqualTo (line 1419) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1430) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallGoodsProdu... method andDeletedIn (line 1435) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1440) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1445) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1450) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1462) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1477) | protected Criteria(LitemallGoodsProductExample example) { method example (line 1488) | public LitemallGoodsProductExample example() { method andIf (line 1498) | @Deprecated method when (line 1512) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1525) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1540) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1544) | @Deprecated method add (line 1552) | Criteria add(Criteria add); class Criterion (line 1562) | public static class Criterion { method getCondition (line 1579) | public String getCondition() { method getValue (line 1583) | public Object getValue() { method getSecondValue (line 1587) | public Object getSecondValue() { method isNoValue (line 1591) | public boolean isNoValue() { method isSingleValue (line 1595) | public boolean isSingleValue() { method isBetweenValue (line 1599) | public boolean isBetweenValue() { method isListValue (line 1603) | public boolean isListValue() { method getTypeHandler (line 1607) | public String getTypeHandler() { method Criterion (line 1611) | protected Criterion(String condition) { method Criterion (line 1618) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1630) | protected Criterion(String condition, Object value) { method Criterion (line 1634) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1643) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1648) | public interface ICriteriaWhen { method criteria (line 1655) | void criteria(Criteria criteria); type IExampleWhen (line 1658) | public interface IExampleWhen { method example (line 1665) | void example(org.linlinjava.litemall.db.domain.LitemallGoodsProductE... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoodsSpecification.java class LitemallGoodsSpecification (line 7) | public class LitemallGoodsSpecification { method getId (line 104) | public Integer getId() { method setId (line 116) | public void setId(Integer id) { method getGoodsId (line 128) | public Integer getGoodsId() { method setGoodsId (line 140) | public void setGoodsId(Integer goodsId) { method getSpecification (line 152) | public String getSpecification() { method setSpecification (line 164) | public void setSpecification(String specification) { method getValue (line 176) | public String getValue() { method setValue (line 188) | public void setValue(String value) { method getPicUrl (line 200) | public String getPicUrl() { method setPicUrl (line 212) | public void setPicUrl(String picUrl) { method getAddTime (line 224) | public LocalDateTime getAddTime() { method setAddTime (line 236) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 248) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 260) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 270) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 282) | public Boolean getDeleted() { method setDeleted (line 294) | public void setDeleted(Boolean deleted) { method toString (line 304) | @Override method equals (line 330) | @Override method hashCode (line 358) | @Override type Deleted (line 379) | public enum Deleted { method Deleted (line 405) | Deleted(Boolean value, String name) { method getValue (line 416) | public Boolean getValue() { method value (line 426) | public Boolean value() { method getName (line 436) | public String getName() { type Column (line 447) | public enum Column { method value (line 511) | public String value() { method getValue (line 521) | public String getValue() { method getJavaProperty (line 531) | public String getJavaProperty() { method getJdbcType (line 541) | public String getJdbcType() { method Column (line 551) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 564) | public String desc() { method asc (line 574) | public String asc() { method excludes (line 584) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 598) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 612) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGoodsSpecificationExample.java class LitemallGoodsSpecificationExample (line 7) | public class LitemallGoodsSpecificationExample { method LitemallGoodsSpecificationExample (line 38) | public LitemallGoodsSpecificationExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallGoodsSpecificationExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallGoodsSpecificationExample orderBy(String ... orderByCla... method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallGoodsSpecificationExample when(boolean condition, IExam... method when (line 210) | public LitemallGoodsSpecificationExample when(boolean condition, IExam... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallGoodsSpecification.Column... method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallGoodsSpecification.Col... method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallGoodsSpecification.Co... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallGoodsSpecifi... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallGoodsSpecification.Colum... method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallGoodsSpecificat... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andGoodsIdIsNull (line 392) | public Criteria andGoodsIdIsNull() { method andGoodsIdIsNotNull (line 397) | public Criteria andGoodsIdIsNotNull() { method andGoodsIdEqualTo (line 402) | public Criteria andGoodsIdEqualTo(Integer value) { method andGoodsIdEqualToColumn (line 413) | public Criteria andGoodsIdEqualToColumn(LitemallGoodsSpecification.C... method andGoodsIdNotEqualTo (line 418) | public Criteria andGoodsIdNotEqualTo(Integer value) { method andGoodsIdNotEqualToColumn (line 429) | public Criteria andGoodsIdNotEqualToColumn(LitemallGoodsSpecificatio... method andGoodsIdGreaterThan (line 434) | public Criteria andGoodsIdGreaterThan(Integer value) { method andGoodsIdGreaterThanColumn (line 445) | public Criteria andGoodsIdGreaterThanColumn(LitemallGoodsSpecificati... method andGoodsIdGreaterThanOrEqualTo (line 450) | public Criteria andGoodsIdGreaterThanOrEqualTo(Integer value) { method andGoodsIdGreaterThanOrEqualToColumn (line 461) | public Criteria andGoodsIdGreaterThanOrEqualToColumn(LitemallGoodsSp... method andGoodsIdLessThan (line 466) | public Criteria andGoodsIdLessThan(Integer value) { method andGoodsIdLessThanColumn (line 477) | public Criteria andGoodsIdLessThanColumn(LitemallGoodsSpecification.... method andGoodsIdLessThanOrEqualTo (line 482) | public Criteria andGoodsIdLessThanOrEqualTo(Integer value) { method andGoodsIdLessThanOrEqualToColumn (line 493) | public Criteria andGoodsIdLessThanOrEqualToColumn(LitemallGoodsSpeci... method andGoodsIdIn (line 498) | public Criteria andGoodsIdIn(List values) { method andGoodsIdNotIn (line 503) | public Criteria andGoodsIdNotIn(List values) { method andGoodsIdBetween (line 508) | public Criteria andGoodsIdBetween(Integer value1, Integer value2) { method andGoodsIdNotBetween (line 513) | public Criteria andGoodsIdNotBetween(Integer value1, Integer value2) { method andSpecificationIsNull (line 518) | public Criteria andSpecificationIsNull() { method andSpecificationIsNotNull (line 523) | public Criteria andSpecificationIsNotNull() { method andSpecificationEqualTo (line 528) | public Criteria andSpecificationEqualTo(String value) { method andSpecificationEqualToColumn (line 539) | public Criteria andSpecificationEqualToColumn(LitemallGoodsSpecifica... method andSpecificationNotEqualTo (line 544) | public Criteria andSpecificationNotEqualTo(String value) { method andSpecificationNotEqualToColumn (line 555) | public Criteria andSpecificationNotEqualToColumn(LitemallGoodsSpecif... method andSpecificationGreaterThan (line 560) | public Criteria andSpecificationGreaterThan(String value) { method andSpecificationGreaterThanColumn (line 571) | public Criteria andSpecificationGreaterThanColumn(LitemallGoodsSpeci... method andSpecificationGreaterThanOrEqualTo (line 576) | public Criteria andSpecificationGreaterThanOrEqualTo(String value) { method andSpecificationGreaterThanOrEqualToColumn (line 587) | public Criteria andSpecificationGreaterThanOrEqualToColumn(LitemallG... method andSpecificationLessThan (line 592) | public Criteria andSpecificationLessThan(String value) { method andSpecificationLessThanColumn (line 603) | public Criteria andSpecificationLessThanColumn(LitemallGoodsSpecific... method andSpecificationLessThanOrEqualTo (line 608) | public Criteria andSpecificationLessThanOrEqualTo(String value) { method andSpecificationLessThanOrEqualToColumn (line 619) | public Criteria andSpecificationLessThanOrEqualToColumn(LitemallGood... method andSpecificationLike (line 624) | public Criteria andSpecificationLike(String value) { method andSpecificationNotLike (line 629) | public Criteria andSpecificationNotLike(String value) { method andSpecificationIn (line 634) | public Criteria andSpecificationIn(List values) { method andSpecificationNotIn (line 639) | public Criteria andSpecificationNotIn(List values) { method andSpecificationBetween (line 644) | public Criteria andSpecificationBetween(String value1, String value2) { method andSpecificationNotBetween (line 649) | public Criteria andSpecificationNotBetween(String value1, String val... method andValueIsNull (line 654) | public Criteria andValueIsNull() { method andValueIsNotNull (line 659) | public Criteria andValueIsNotNull() { method andValueEqualTo (line 664) | public Criteria andValueEqualTo(String value) { method andValueEqualToColumn (line 675) | public Criteria andValueEqualToColumn(LitemallGoodsSpecification.Col... method andValueNotEqualTo (line 680) | public Criteria andValueNotEqualTo(String value) { method andValueNotEqualToColumn (line 691) | public Criteria andValueNotEqualToColumn(LitemallGoodsSpecification.... method andValueGreaterThan (line 696) | public Criteria andValueGreaterThan(String value) { method andValueGreaterThanColumn (line 707) | public Criteria andValueGreaterThanColumn(LitemallGoodsSpecification... method andValueGreaterThanOrEqualTo (line 712) | public Criteria andValueGreaterThanOrEqualTo(String value) { method andValueGreaterThanOrEqualToColumn (line 723) | public Criteria andValueGreaterThanOrEqualToColumn(LitemallGoodsSpec... method andValueLessThan (line 728) | public Criteria andValueLessThan(String value) { method andValueLessThanColumn (line 739) | public Criteria andValueLessThanColumn(LitemallGoodsSpecification.Co... method andValueLessThanOrEqualTo (line 744) | public Criteria andValueLessThanOrEqualTo(String value) { method andValueLessThanOrEqualToColumn (line 755) | public Criteria andValueLessThanOrEqualToColumn(LitemallGoodsSpecifi... method andValueLike (line 760) | public Criteria andValueLike(String value) { method andValueNotLike (line 765) | public Criteria andValueNotLike(String value) { method andValueIn (line 770) | public Criteria andValueIn(List values) { method andValueNotIn (line 775) | public Criteria andValueNotIn(List values) { method andValueBetween (line 780) | public Criteria andValueBetween(String value1, String value2) { method andValueNotBetween (line 785) | public Criteria andValueNotBetween(String value1, String value2) { method andPicUrlIsNull (line 790) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 795) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 800) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 811) | public Criteria andPicUrlEqualToColumn(LitemallGoodsSpecification.Co... method andPicUrlNotEqualTo (line 816) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 827) | public Criteria andPicUrlNotEqualToColumn(LitemallGoodsSpecification... method andPicUrlGreaterThan (line 832) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 843) | public Criteria andPicUrlGreaterThanColumn(LitemallGoodsSpecificatio... method andPicUrlGreaterThanOrEqualTo (line 848) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 859) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallGoodsSpe... method andPicUrlLessThan (line 864) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 875) | public Criteria andPicUrlLessThanColumn(LitemallGoodsSpecification.C... method andPicUrlLessThanOrEqualTo (line 880) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 891) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallGoodsSpecif... method andPicUrlLike (line 896) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 901) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 906) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 911) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 916) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 921) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andAddTimeIsNull (line 926) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 931) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 936) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 947) | public Criteria andAddTimeEqualToColumn(LitemallGoodsSpecification.C... method andAddTimeNotEqualTo (line 952) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 963) | public Criteria andAddTimeNotEqualToColumn(LitemallGoodsSpecificatio... method andAddTimeGreaterThan (line 968) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 979) | public Criteria andAddTimeGreaterThanColumn(LitemallGoodsSpecificati... method andAddTimeGreaterThanOrEqualTo (line 984) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 995) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallGoodsSp... method andAddTimeLessThan (line 1000) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1011) | public Criteria andAddTimeLessThanColumn(LitemallGoodsSpecification.... method andAddTimeLessThanOrEqualTo (line 1016) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1027) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallGoodsSpeci... method andAddTimeIn (line 1032) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1037) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1042) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1047) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1052) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1057) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1062) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1073) | public Criteria andUpdateTimeEqualToColumn(LitemallGoodsSpecificatio... method andUpdateTimeNotEqualTo (line 1078) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1089) | public Criteria andUpdateTimeNotEqualToColumn(LitemallGoodsSpecifica... method andUpdateTimeGreaterThan (line 1094) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1105) | public Criteria andUpdateTimeGreaterThanColumn(LitemallGoodsSpecific... method andUpdateTimeGreaterThanOrEqualTo (line 1110) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1121) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallGood... method andUpdateTimeLessThan (line 1126) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1137) | public Criteria andUpdateTimeLessThanColumn(LitemallGoodsSpecificati... method andUpdateTimeLessThanOrEqualTo (line 1142) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1153) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallGoodsSp... method andUpdateTimeIn (line 1158) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1163) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1168) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1173) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1178) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1183) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1188) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1199) | public Criteria andDeletedEqualToColumn(LitemallGoodsSpecification.C... method andDeletedNotEqualTo (line 1204) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1215) | public Criteria andDeletedNotEqualToColumn(LitemallGoodsSpecificatio... method andDeletedGreaterThan (line 1220) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1231) | public Criteria andDeletedGreaterThanColumn(LitemallGoodsSpecificati... method andDeletedGreaterThanOrEqualTo (line 1236) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1247) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallGoodsSp... method andDeletedLessThan (line 1252) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1263) | public Criteria andDeletedLessThanColumn(LitemallGoodsSpecification.... method andDeletedLessThanOrEqualTo (line 1268) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1279) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallGoodsSpeci... method andDeletedIn (line 1284) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1289) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1294) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1299) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1311) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1326) | protected Criteria(LitemallGoodsSpecificationExample example) { method example (line 1337) | public LitemallGoodsSpecificationExample example() { method andIf (line 1347) | @Deprecated method when (line 1361) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1374) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1389) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1393) | @Deprecated method add (line 1401) | Criteria add(Criteria add); class Criterion (line 1411) | public static class Criterion { method getCondition (line 1428) | public String getCondition() { method getValue (line 1432) | public Object getValue() { method getSecondValue (line 1436) | public Object getSecondValue() { method isNoValue (line 1440) | public boolean isNoValue() { method isSingleValue (line 1444) | public boolean isSingleValue() { method isBetweenValue (line 1448) | public boolean isBetweenValue() { method isListValue (line 1452) | public boolean isListValue() { method getTypeHandler (line 1456) | public String getTypeHandler() { method Criterion (line 1460) | protected Criterion(String condition) { method Criterion (line 1467) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1479) | protected Criterion(String condition, Object value) { method Criterion (line 1483) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1492) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1497) | public interface ICriteriaWhen { method criteria (line 1504) | void criteria(Criteria criteria); type IExampleWhen (line 1507) | public interface IExampleWhen { method example (line 1514) | void example(org.linlinjava.litemall.db.domain.LitemallGoodsSpecific... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGroupon.java class LitemallGroupon (line 7) | public class LitemallGroupon { method getId (line 140) | public Integer getId() { method setId (line 152) | public void setId(Integer id) { method getOrderId (line 164) | public Integer getOrderId() { method setOrderId (line 176) | public void setOrderId(Integer orderId) { method getGrouponId (line 188) | public Integer getGrouponId() { method setGrouponId (line 200) | public void setGrouponId(Integer grouponId) { method getRulesId (line 212) | public Integer getRulesId() { method setRulesId (line 224) | public void setRulesId(Integer rulesId) { method getUserId (line 236) | public Integer getUserId() { method setUserId (line 248) | public void setUserId(Integer userId) { method getShareUrl (line 260) | public String getShareUrl() { method setShareUrl (line 272) | public void setShareUrl(String shareUrl) { method getCreatorUserId (line 284) | public Integer getCreatorUserId() { method setCreatorUserId (line 296) | public void setCreatorUserId(Integer creatorUserId) { method getCreatorUserTime (line 308) | public LocalDateTime getCreatorUserTime() { method setCreatorUserTime (line 320) | public void setCreatorUserTime(LocalDateTime creatorUserTime) { method getStatus (line 332) | public Short getStatus() { method setStatus (line 344) | public void setStatus(Short status) { method getAddTime (line 356) | public LocalDateTime getAddTime() { method setAddTime (line 368) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 380) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 392) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 402) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 414) | public Boolean getDeleted() { method setDeleted (line 426) | public void setDeleted(Boolean deleted) { method toString (line 436) | @Override method equals (line 466) | @Override method hashCode (line 498) | @Override type Deleted (line 523) | public enum Deleted { method Deleted (line 549) | Deleted(Boolean value, String name) { method getValue (line 560) | public Boolean getValue() { method value (line 570) | public Boolean value() { method getName (line 580) | public String getName() { type Column (line 591) | public enum Column { method value (line 659) | public String value() { method getValue (line 669) | public String getValue() { method getJavaProperty (line 679) | public String getJavaProperty() { method getJdbcType (line 689) | public String getJdbcType() { method Column (line 699) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 712) | public String desc() { method asc (line 722) | public String asc() { method excludes (line 732) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 746) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 760) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGrouponExample.java class LitemallGrouponExample (line 7) | public class LitemallGrouponExample { method LitemallGrouponExample (line 38) | public LitemallGrouponExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallGrouponExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallGrouponExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallGrouponExample when(boolean condition, IExampleWhen the... method when (line 210) | public LitemallGrouponExample when(boolean condition, IExampleWhen the... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallGroupon.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallGroupon.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallGroupon.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallGroupon.Colu... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallGroupon.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallGroupon.Column ... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andOrderIdIsNull (line 392) | public Criteria andOrderIdIsNull() { method andOrderIdIsNotNull (line 397) | public Criteria andOrderIdIsNotNull() { method andOrderIdEqualTo (line 402) | public Criteria andOrderIdEqualTo(Integer value) { method andOrderIdEqualToColumn (line 413) | public Criteria andOrderIdEqualToColumn(LitemallGroupon.Column colum... method andOrderIdNotEqualTo (line 418) | public Criteria andOrderIdNotEqualTo(Integer value) { method andOrderIdNotEqualToColumn (line 429) | public Criteria andOrderIdNotEqualToColumn(LitemallGroupon.Column co... method andOrderIdGreaterThan (line 434) | public Criteria andOrderIdGreaterThan(Integer value) { method andOrderIdGreaterThanColumn (line 445) | public Criteria andOrderIdGreaterThanColumn(LitemallGroupon.Column c... method andOrderIdGreaterThanOrEqualTo (line 450) | public Criteria andOrderIdGreaterThanOrEqualTo(Integer value) { method andOrderIdGreaterThanOrEqualToColumn (line 461) | public Criteria andOrderIdGreaterThanOrEqualToColumn(LitemallGroupon... method andOrderIdLessThan (line 466) | public Criteria andOrderIdLessThan(Integer value) { method andOrderIdLessThanColumn (line 477) | public Criteria andOrderIdLessThanColumn(LitemallGroupon.Column colu... method andOrderIdLessThanOrEqualTo (line 482) | public Criteria andOrderIdLessThanOrEqualTo(Integer value) { method andOrderIdLessThanOrEqualToColumn (line 493) | public Criteria andOrderIdLessThanOrEqualToColumn(LitemallGroupon.Co... method andOrderIdIn (line 498) | public Criteria andOrderIdIn(List values) { method andOrderIdNotIn (line 503) | public Criteria andOrderIdNotIn(List values) { method andOrderIdBetween (line 508) | public Criteria andOrderIdBetween(Integer value1, Integer value2) { method andOrderIdNotBetween (line 513) | public Criteria andOrderIdNotBetween(Integer value1, Integer value2) { method andGrouponIdIsNull (line 518) | public Criteria andGrouponIdIsNull() { method andGrouponIdIsNotNull (line 523) | public Criteria andGrouponIdIsNotNull() { method andGrouponIdEqualTo (line 528) | public Criteria andGrouponIdEqualTo(Integer value) { method andGrouponIdEqualToColumn (line 539) | public Criteria andGrouponIdEqualToColumn(LitemallGroupon.Column col... method andGrouponIdNotEqualTo (line 544) | public Criteria andGrouponIdNotEqualTo(Integer value) { method andGrouponIdNotEqualToColumn (line 555) | public Criteria andGrouponIdNotEqualToColumn(LitemallGroupon.Column ... method andGrouponIdGreaterThan (line 560) | public Criteria andGrouponIdGreaterThan(Integer value) { method andGrouponIdGreaterThanColumn (line 571) | public Criteria andGrouponIdGreaterThanColumn(LitemallGroupon.Column... method andGrouponIdGreaterThanOrEqualTo (line 576) | public Criteria andGrouponIdGreaterThanOrEqualTo(Integer value) { method andGrouponIdGreaterThanOrEqualToColumn (line 587) | public Criteria andGrouponIdGreaterThanOrEqualToColumn(LitemallGroup... method andGrouponIdLessThan (line 592) | public Criteria andGrouponIdLessThan(Integer value) { method andGrouponIdLessThanColumn (line 603) | public Criteria andGrouponIdLessThanColumn(LitemallGroupon.Column co... method andGrouponIdLessThanOrEqualTo (line 608) | public Criteria andGrouponIdLessThanOrEqualTo(Integer value) { method andGrouponIdLessThanOrEqualToColumn (line 619) | public Criteria andGrouponIdLessThanOrEqualToColumn(LitemallGroupon.... method andGrouponIdIn (line 624) | public Criteria andGrouponIdIn(List values) { method andGrouponIdNotIn (line 629) | public Criteria andGrouponIdNotIn(List values) { method andGrouponIdBetween (line 634) | public Criteria andGrouponIdBetween(Integer value1, Integer value2) { method andGrouponIdNotBetween (line 639) | public Criteria andGrouponIdNotBetween(Integer value1, Integer value... method andRulesIdIsNull (line 644) | public Criteria andRulesIdIsNull() { method andRulesIdIsNotNull (line 649) | public Criteria andRulesIdIsNotNull() { method andRulesIdEqualTo (line 654) | public Criteria andRulesIdEqualTo(Integer value) { method andRulesIdEqualToColumn (line 665) | public Criteria andRulesIdEqualToColumn(LitemallGroupon.Column colum... method andRulesIdNotEqualTo (line 670) | public Criteria andRulesIdNotEqualTo(Integer value) { method andRulesIdNotEqualToColumn (line 681) | public Criteria andRulesIdNotEqualToColumn(LitemallGroupon.Column co... method andRulesIdGreaterThan (line 686) | public Criteria andRulesIdGreaterThan(Integer value) { method andRulesIdGreaterThanColumn (line 697) | public Criteria andRulesIdGreaterThanColumn(LitemallGroupon.Column c... method andRulesIdGreaterThanOrEqualTo (line 702) | public Criteria andRulesIdGreaterThanOrEqualTo(Integer value) { method andRulesIdGreaterThanOrEqualToColumn (line 713) | public Criteria andRulesIdGreaterThanOrEqualToColumn(LitemallGroupon... method andRulesIdLessThan (line 718) | public Criteria andRulesIdLessThan(Integer value) { method andRulesIdLessThanColumn (line 729) | public Criteria andRulesIdLessThanColumn(LitemallGroupon.Column colu... method andRulesIdLessThanOrEqualTo (line 734) | public Criteria andRulesIdLessThanOrEqualTo(Integer value) { method andRulesIdLessThanOrEqualToColumn (line 745) | public Criteria andRulesIdLessThanOrEqualToColumn(LitemallGroupon.Co... method andRulesIdIn (line 750) | public Criteria andRulesIdIn(List values) { method andRulesIdNotIn (line 755) | public Criteria andRulesIdNotIn(List values) { method andRulesIdBetween (line 760) | public Criteria andRulesIdBetween(Integer value1, Integer value2) { method andRulesIdNotBetween (line 765) | public Criteria andRulesIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 770) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 775) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 780) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 791) | public Criteria andUserIdEqualToColumn(LitemallGroupon.Column column) { method andUserIdNotEqualTo (line 796) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 807) | public Criteria andUserIdNotEqualToColumn(LitemallGroupon.Column col... method andUserIdGreaterThan (line 812) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 823) | public Criteria andUserIdGreaterThanColumn(LitemallGroupon.Column co... method andUserIdGreaterThanOrEqualTo (line 828) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 839) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallGroupon.... method andUserIdLessThan (line 844) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 855) | public Criteria andUserIdLessThanColumn(LitemallGroupon.Column colum... method andUserIdLessThanOrEqualTo (line 860) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 871) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallGroupon.Col... method andUserIdIn (line 876) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 881) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 886) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 891) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andShareUrlIsNull (line 896) | public Criteria andShareUrlIsNull() { method andShareUrlIsNotNull (line 901) | public Criteria andShareUrlIsNotNull() { method andShareUrlEqualTo (line 906) | public Criteria andShareUrlEqualTo(String value) { method andShareUrlEqualToColumn (line 917) | public Criteria andShareUrlEqualToColumn(LitemallGroupon.Column colu... method andShareUrlNotEqualTo (line 922) | public Criteria andShareUrlNotEqualTo(String value) { method andShareUrlNotEqualToColumn (line 933) | public Criteria andShareUrlNotEqualToColumn(LitemallGroupon.Column c... method andShareUrlGreaterThan (line 938) | public Criteria andShareUrlGreaterThan(String value) { method andShareUrlGreaterThanColumn (line 949) | public Criteria andShareUrlGreaterThanColumn(LitemallGroupon.Column ... method andShareUrlGreaterThanOrEqualTo (line 954) | public Criteria andShareUrlGreaterThanOrEqualTo(String value) { method andShareUrlGreaterThanOrEqualToColumn (line 965) | public Criteria andShareUrlGreaterThanOrEqualToColumn(LitemallGroupo... method andShareUrlLessThan (line 970) | public Criteria andShareUrlLessThan(String value) { method andShareUrlLessThanColumn (line 981) | public Criteria andShareUrlLessThanColumn(LitemallGroupon.Column col... method andShareUrlLessThanOrEqualTo (line 986) | public Criteria andShareUrlLessThanOrEqualTo(String value) { method andShareUrlLessThanOrEqualToColumn (line 997) | public Criteria andShareUrlLessThanOrEqualToColumn(LitemallGroupon.C... method andShareUrlLike (line 1002) | public Criteria andShareUrlLike(String value) { method andShareUrlNotLike (line 1007) | public Criteria andShareUrlNotLike(String value) { method andShareUrlIn (line 1012) | public Criteria andShareUrlIn(List values) { method andShareUrlNotIn (line 1017) | public Criteria andShareUrlNotIn(List values) { method andShareUrlBetween (line 1022) | public Criteria andShareUrlBetween(String value1, String value2) { method andShareUrlNotBetween (line 1027) | public Criteria andShareUrlNotBetween(String value1, String value2) { method andCreatorUserIdIsNull (line 1032) | public Criteria andCreatorUserIdIsNull() { method andCreatorUserIdIsNotNull (line 1037) | public Criteria andCreatorUserIdIsNotNull() { method andCreatorUserIdEqualTo (line 1042) | public Criteria andCreatorUserIdEqualTo(Integer value) { method andCreatorUserIdEqualToColumn (line 1053) | public Criteria andCreatorUserIdEqualToColumn(LitemallGroupon.Column... method andCreatorUserIdNotEqualTo (line 1058) | public Criteria andCreatorUserIdNotEqualTo(Integer value) { method andCreatorUserIdNotEqualToColumn (line 1069) | public Criteria andCreatorUserIdNotEqualToColumn(LitemallGroupon.Col... method andCreatorUserIdGreaterThan (line 1074) | public Criteria andCreatorUserIdGreaterThan(Integer value) { method andCreatorUserIdGreaterThanColumn (line 1085) | public Criteria andCreatorUserIdGreaterThanColumn(LitemallGroupon.Co... method andCreatorUserIdGreaterThanOrEqualTo (line 1090) | public Criteria andCreatorUserIdGreaterThanOrEqualTo(Integer value) { method andCreatorUserIdGreaterThanOrEqualToColumn (line 1101) | public Criteria andCreatorUserIdGreaterThanOrEqualToColumn(LitemallG... method andCreatorUserIdLessThan (line 1106) | public Criteria andCreatorUserIdLessThan(Integer value) { method andCreatorUserIdLessThanColumn (line 1117) | public Criteria andCreatorUserIdLessThanColumn(LitemallGroupon.Colum... method andCreatorUserIdLessThanOrEqualTo (line 1122) | public Criteria andCreatorUserIdLessThanOrEqualTo(Integer value) { method andCreatorUserIdLessThanOrEqualToColumn (line 1133) | public Criteria andCreatorUserIdLessThanOrEqualToColumn(LitemallGrou... method andCreatorUserIdIn (line 1138) | public Criteria andCreatorUserIdIn(List values) { method andCreatorUserIdNotIn (line 1143) | public Criteria andCreatorUserIdNotIn(List values) { method andCreatorUserIdBetween (line 1148) | public Criteria andCreatorUserIdBetween(Integer value1, Integer valu... method andCreatorUserIdNotBetween (line 1153) | public Criteria andCreatorUserIdNotBetween(Integer value1, Integer v... method andCreatorUserTimeIsNull (line 1158) | public Criteria andCreatorUserTimeIsNull() { method andCreatorUserTimeIsNotNull (line 1163) | public Criteria andCreatorUserTimeIsNotNull() { method andCreatorUserTimeEqualTo (line 1168) | public Criteria andCreatorUserTimeEqualTo(LocalDateTime value) { method andCreatorUserTimeEqualToColumn (line 1179) | public Criteria andCreatorUserTimeEqualToColumn(LitemallGroupon.Colu... method andCreatorUserTimeNotEqualTo (line 1184) | public Criteria andCreatorUserTimeNotEqualTo(LocalDateTime value) { method andCreatorUserTimeNotEqualToColumn (line 1195) | public Criteria andCreatorUserTimeNotEqualToColumn(LitemallGroupon.C... method andCreatorUserTimeGreaterThan (line 1200) | public Criteria andCreatorUserTimeGreaterThan(LocalDateTime value) { method andCreatorUserTimeGreaterThanColumn (line 1211) | public Criteria andCreatorUserTimeGreaterThanColumn(LitemallGroupon.... method andCreatorUserTimeGreaterThanOrEqualTo (line 1216) | public Criteria andCreatorUserTimeGreaterThanOrEqualTo(LocalDateTime... method andCreatorUserTimeGreaterThanOrEqualToColumn (line 1227) | public Criteria andCreatorUserTimeGreaterThanOrEqualToColumn(Litemal... method andCreatorUserTimeLessThan (line 1232) | public Criteria andCreatorUserTimeLessThan(LocalDateTime value) { method andCreatorUserTimeLessThanColumn (line 1243) | public Criteria andCreatorUserTimeLessThanColumn(LitemallGroupon.Col... method andCreatorUserTimeLessThanOrEqualTo (line 1248) | public Criteria andCreatorUserTimeLessThanOrEqualTo(LocalDateTime va... method andCreatorUserTimeLessThanOrEqualToColumn (line 1259) | public Criteria andCreatorUserTimeLessThanOrEqualToColumn(LitemallGr... method andCreatorUserTimeIn (line 1264) | public Criteria andCreatorUserTimeIn(List values) { method andCreatorUserTimeNotIn (line 1269) | public Criteria andCreatorUserTimeNotIn(List values) { method andCreatorUserTimeBetween (line 1274) | public Criteria andCreatorUserTimeBetween(LocalDateTime value1, Loca... method andCreatorUserTimeNotBetween (line 1279) | public Criteria andCreatorUserTimeNotBetween(LocalDateTime value1, L... method andStatusIsNull (line 1284) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 1289) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 1294) | public Criteria andStatusEqualTo(Short value) { method andStatusEqualToColumn (line 1305) | public Criteria andStatusEqualToColumn(LitemallGroupon.Column column) { method andStatusNotEqualTo (line 1310) | public Criteria andStatusNotEqualTo(Short value) { method andStatusNotEqualToColumn (line 1321) | public Criteria andStatusNotEqualToColumn(LitemallGroupon.Column col... method andStatusGreaterThan (line 1326) | public Criteria andStatusGreaterThan(Short value) { method andStatusGreaterThanColumn (line 1337) | public Criteria andStatusGreaterThanColumn(LitemallGroupon.Column co... method andStatusGreaterThanOrEqualTo (line 1342) | public Criteria andStatusGreaterThanOrEqualTo(Short value) { method andStatusGreaterThanOrEqualToColumn (line 1353) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallGroupon.... method andStatusLessThan (line 1358) | public Criteria andStatusLessThan(Short value) { method andStatusLessThanColumn (line 1369) | public Criteria andStatusLessThanColumn(LitemallGroupon.Column colum... method andStatusLessThanOrEqualTo (line 1374) | public Criteria andStatusLessThanOrEqualTo(Short value) { method andStatusLessThanOrEqualToColumn (line 1385) | public Criteria andStatusLessThanOrEqualToColumn(LitemallGroupon.Col... method andStatusIn (line 1390) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 1395) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 1400) | public Criteria andStatusBetween(Short value1, Short value2) { method andStatusNotBetween (line 1405) | public Criteria andStatusNotBetween(Short value1, Short value2) { method andAddTimeIsNull (line 1410) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1415) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1420) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1431) | public Criteria andAddTimeEqualToColumn(LitemallGroupon.Column colum... method andAddTimeNotEqualTo (line 1436) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1447) | public Criteria andAddTimeNotEqualToColumn(LitemallGroupon.Column co... method andAddTimeGreaterThan (line 1452) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1463) | public Criteria andAddTimeGreaterThanColumn(LitemallGroupon.Column c... method andAddTimeGreaterThanOrEqualTo (line 1468) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1479) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallGroupon... method andAddTimeLessThan (line 1484) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1495) | public Criteria andAddTimeLessThanColumn(LitemallGroupon.Column colu... method andAddTimeLessThanOrEqualTo (line 1500) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1511) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallGroupon.Co... method andAddTimeIn (line 1516) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1521) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1526) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1531) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1536) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1541) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1546) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1557) | public Criteria andUpdateTimeEqualToColumn(LitemallGroupon.Column co... method andUpdateTimeNotEqualTo (line 1562) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1573) | public Criteria andUpdateTimeNotEqualToColumn(LitemallGroupon.Column... method andUpdateTimeGreaterThan (line 1578) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1589) | public Criteria andUpdateTimeGreaterThanColumn(LitemallGroupon.Colum... method andUpdateTimeGreaterThanOrEqualTo (line 1594) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1605) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallGrou... method andUpdateTimeLessThan (line 1610) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1621) | public Criteria andUpdateTimeLessThanColumn(LitemallGroupon.Column c... method andUpdateTimeLessThanOrEqualTo (line 1626) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1637) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallGroupon... method andUpdateTimeIn (line 1642) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1647) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1652) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1657) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1662) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1667) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1672) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1683) | public Criteria andDeletedEqualToColumn(LitemallGroupon.Column colum... method andDeletedNotEqualTo (line 1688) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1699) | public Criteria andDeletedNotEqualToColumn(LitemallGroupon.Column co... method andDeletedGreaterThan (line 1704) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1715) | public Criteria andDeletedGreaterThanColumn(LitemallGroupon.Column c... method andDeletedGreaterThanOrEqualTo (line 1720) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1731) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallGroupon... method andDeletedLessThan (line 1736) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1747) | public Criteria andDeletedLessThanColumn(LitemallGroupon.Column colu... method andDeletedLessThanOrEqualTo (line 1752) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1763) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallGroupon.Co... method andDeletedIn (line 1768) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1773) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1778) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1783) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1795) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1810) | protected Criteria(LitemallGrouponExample example) { method example (line 1821) | public LitemallGrouponExample example() { method andIf (line 1831) | @Deprecated method when (line 1845) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1858) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1873) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1877) | @Deprecated method add (line 1885) | Criteria add(Criteria add); class Criterion (line 1895) | public static class Criterion { method getCondition (line 1912) | public String getCondition() { method getValue (line 1916) | public Object getValue() { method getSecondValue (line 1920) | public Object getSecondValue() { method isNoValue (line 1924) | public boolean isNoValue() { method isSingleValue (line 1928) | public boolean isSingleValue() { method isBetweenValue (line 1932) | public boolean isBetweenValue() { method isListValue (line 1936) | public boolean isListValue() { method getTypeHandler (line 1940) | public String getTypeHandler() { method Criterion (line 1944) | protected Criterion(String condition) { method Criterion (line 1951) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1963) | protected Criterion(String condition, Object value) { method Criterion (line 1967) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1976) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1981) | public interface ICriteriaWhen { method criteria (line 1988) | void criteria(Criteria criteria); type IExampleWhen (line 1991) | public interface IExampleWhen { method example (line 1998) | void example(org.linlinjava.litemall.db.domain.LitemallGrouponExampl... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGrouponRules.java class LitemallGrouponRules (line 8) | public class LitemallGrouponRules { method getId (line 132) | public Integer getId() { method setId (line 144) | public void setId(Integer id) { method getGoodsId (line 156) | public Integer getGoodsId() { method setGoodsId (line 168) | public void setGoodsId(Integer goodsId) { method getGoodsName (line 180) | public String getGoodsName() { method setGoodsName (line 192) | public void setGoodsName(String goodsName) { method getPicUrl (line 204) | public String getPicUrl() { method setPicUrl (line 216) | public void setPicUrl(String picUrl) { method getDiscount (line 228) | public BigDecimal getDiscount() { method setDiscount (line 240) | public void setDiscount(BigDecimal discount) { method getDiscountMember (line 252) | public Integer getDiscountMember() { method setDiscountMember (line 264) | public void setDiscountMember(Integer discountMember) { method getExpireTime (line 276) | public LocalDateTime getExpireTime() { method setExpireTime (line 288) | public void setExpireTime(LocalDateTime expireTime) { method getStatus (line 300) | public Short getStatus() { method setStatus (line 312) | public void setStatus(Short status) { method getAddTime (line 324) | public LocalDateTime getAddTime() { method setAddTime (line 336) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 348) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 360) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 370) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 382) | public Boolean getDeleted() { method setDeleted (line 394) | public void setDeleted(Boolean deleted) { method toString (line 404) | @Override method equals (line 433) | @Override method hashCode (line 464) | @Override type Deleted (line 488) | public enum Deleted { method Deleted (line 514) | Deleted(Boolean value, String name) { method getValue (line 525) | public Boolean getValue() { method value (line 535) | public Boolean value() { method getName (line 545) | public String getName() { type Column (line 556) | public enum Column { method value (line 623) | public String value() { method getValue (line 633) | public String getValue() { method getJavaProperty (line 643) | public String getJavaProperty() { method getJdbcType (line 653) | public String getJdbcType() { method Column (line 663) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 676) | public String desc() { method asc (line 686) | public String asc() { method excludes (line 696) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 710) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 724) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallGrouponRulesExample.java class LitemallGrouponRulesExample (line 8) | public class LitemallGrouponRulesExample { method LitemallGrouponRulesExample (line 39) | public LitemallGrouponRulesExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallGrouponRulesExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallGrouponRulesExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallGrouponRulesExample when(boolean condition, IExampleWhe... method when (line 211) | public LitemallGrouponRulesExample when(boolean condition, IExampleWhe... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 229) | protected GeneratedCriteria() { method isValid (line 234) | public boolean isValid() { method getAllCriteria (line 238) | public List getAllCriteria() { method getCriteria (line 242) | public List getCriteria() { method addCriterion (line 246) | protected void addCriterion(String condition) { method addCriterion (line 253) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 260) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 267) | public Criteria andIdIsNull() { method andIdIsNotNull (line 272) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 277) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 288) | public Criteria andIdEqualToColumn(LitemallGrouponRules.Column colum... method andIdNotEqualTo (line 293) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 304) | public Criteria andIdNotEqualToColumn(LitemallGrouponRules.Column co... method andIdGreaterThan (line 309) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 320) | public Criteria andIdGreaterThanColumn(LitemallGrouponRules.Column c... method andIdGreaterThanOrEqualTo (line 325) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 336) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallGrouponRules... method andIdLessThan (line 341) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 352) | public Criteria andIdLessThanColumn(LitemallGrouponRules.Column colu... method andIdLessThanOrEqualTo (line 357) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 368) | public Criteria andIdLessThanOrEqualToColumn(LitemallGrouponRules.Co... method andIdIn (line 373) | public Criteria andIdIn(List values) { method andIdNotIn (line 378) | public Criteria andIdNotIn(List values) { method andIdBetween (line 383) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 388) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andGoodsIdIsNull (line 393) | public Criteria andGoodsIdIsNull() { method andGoodsIdIsNotNull (line 398) | public Criteria andGoodsIdIsNotNull() { method andGoodsIdEqualTo (line 403) | public Criteria andGoodsIdEqualTo(Integer value) { method andGoodsIdEqualToColumn (line 414) | public Criteria andGoodsIdEqualToColumn(LitemallGrouponRules.Column ... method andGoodsIdNotEqualTo (line 419) | public Criteria andGoodsIdNotEqualTo(Integer value) { method andGoodsIdNotEqualToColumn (line 430) | public Criteria andGoodsIdNotEqualToColumn(LitemallGrouponRules.Colu... method andGoodsIdGreaterThan (line 435) | public Criteria andGoodsIdGreaterThan(Integer value) { method andGoodsIdGreaterThanColumn (line 446) | public Criteria andGoodsIdGreaterThanColumn(LitemallGrouponRules.Col... method andGoodsIdGreaterThanOrEqualTo (line 451) | public Criteria andGoodsIdGreaterThanOrEqualTo(Integer value) { method andGoodsIdGreaterThanOrEqualToColumn (line 462) | public Criteria andGoodsIdGreaterThanOrEqualToColumn(LitemallGroupon... method andGoodsIdLessThan (line 467) | public Criteria andGoodsIdLessThan(Integer value) { method andGoodsIdLessThanColumn (line 478) | public Criteria andGoodsIdLessThanColumn(LitemallGrouponRules.Column... method andGoodsIdLessThanOrEqualTo (line 483) | public Criteria andGoodsIdLessThanOrEqualTo(Integer value) { method andGoodsIdLessThanOrEqualToColumn (line 494) | public Criteria andGoodsIdLessThanOrEqualToColumn(LitemallGrouponRul... method andGoodsIdIn (line 499) | public Criteria andGoodsIdIn(List values) { method andGoodsIdNotIn (line 504) | public Criteria andGoodsIdNotIn(List values) { method andGoodsIdBetween (line 509) | public Criteria andGoodsIdBetween(Integer value1, Integer value2) { method andGoodsIdNotBetween (line 514) | public Criteria andGoodsIdNotBetween(Integer value1, Integer value2) { method andGoodsNameIsNull (line 519) | public Criteria andGoodsNameIsNull() { method andGoodsNameIsNotNull (line 524) | public Criteria andGoodsNameIsNotNull() { method andGoodsNameEqualTo (line 529) | public Criteria andGoodsNameEqualTo(String value) { method andGoodsNameEqualToColumn (line 540) | public Criteria andGoodsNameEqualToColumn(LitemallGrouponRules.Colum... method andGoodsNameNotEqualTo (line 545) | public Criteria andGoodsNameNotEqualTo(String value) { method andGoodsNameNotEqualToColumn (line 556) | public Criteria andGoodsNameNotEqualToColumn(LitemallGrouponRules.Co... method andGoodsNameGreaterThan (line 561) | public Criteria andGoodsNameGreaterThan(String value) { method andGoodsNameGreaterThanColumn (line 572) | public Criteria andGoodsNameGreaterThanColumn(LitemallGrouponRules.C... method andGoodsNameGreaterThanOrEqualTo (line 577) | public Criteria andGoodsNameGreaterThanOrEqualTo(String value) { method andGoodsNameGreaterThanOrEqualToColumn (line 588) | public Criteria andGoodsNameGreaterThanOrEqualToColumn(LitemallGroup... method andGoodsNameLessThan (line 593) | public Criteria andGoodsNameLessThan(String value) { method andGoodsNameLessThanColumn (line 604) | public Criteria andGoodsNameLessThanColumn(LitemallGrouponRules.Colu... method andGoodsNameLessThanOrEqualTo (line 609) | public Criteria andGoodsNameLessThanOrEqualTo(String value) { method andGoodsNameLessThanOrEqualToColumn (line 620) | public Criteria andGoodsNameLessThanOrEqualToColumn(LitemallGrouponR... method andGoodsNameLike (line 625) | public Criteria andGoodsNameLike(String value) { method andGoodsNameNotLike (line 630) | public Criteria andGoodsNameNotLike(String value) { method andGoodsNameIn (line 635) | public Criteria andGoodsNameIn(List values) { method andGoodsNameNotIn (line 640) | public Criteria andGoodsNameNotIn(List values) { method andGoodsNameBetween (line 645) | public Criteria andGoodsNameBetween(String value1, String value2) { method andGoodsNameNotBetween (line 650) | public Criteria andGoodsNameNotBetween(String value1, String value2) { method andPicUrlIsNull (line 655) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 660) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 665) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 676) | public Criteria andPicUrlEqualToColumn(LitemallGrouponRules.Column c... method andPicUrlNotEqualTo (line 681) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 692) | public Criteria andPicUrlNotEqualToColumn(LitemallGrouponRules.Colum... method andPicUrlGreaterThan (line 697) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 708) | public Criteria andPicUrlGreaterThanColumn(LitemallGrouponRules.Colu... method andPicUrlGreaterThanOrEqualTo (line 713) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 724) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallGrouponR... method andPicUrlLessThan (line 729) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 740) | public Criteria andPicUrlLessThanColumn(LitemallGrouponRules.Column ... method andPicUrlLessThanOrEqualTo (line 745) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 756) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallGrouponRule... method andPicUrlLike (line 761) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 766) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 771) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 776) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 781) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 786) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andDiscountIsNull (line 791) | public Criteria andDiscountIsNull() { method andDiscountIsNotNull (line 796) | public Criteria andDiscountIsNotNull() { method andDiscountEqualTo (line 801) | public Criteria andDiscountEqualTo(BigDecimal value) { method andDiscountEqualToColumn (line 812) | public Criteria andDiscountEqualToColumn(LitemallGrouponRules.Column... method andDiscountNotEqualTo (line 817) | public Criteria andDiscountNotEqualTo(BigDecimal value) { method andDiscountNotEqualToColumn (line 828) | public Criteria andDiscountNotEqualToColumn(LitemallGrouponRules.Col... method andDiscountGreaterThan (line 833) | public Criteria andDiscountGreaterThan(BigDecimal value) { method andDiscountGreaterThanColumn (line 844) | public Criteria andDiscountGreaterThanColumn(LitemallGrouponRules.Co... method andDiscountGreaterThanOrEqualTo (line 849) | public Criteria andDiscountGreaterThanOrEqualTo(BigDecimal value) { method andDiscountGreaterThanOrEqualToColumn (line 860) | public Criteria andDiscountGreaterThanOrEqualToColumn(LitemallGroupo... method andDiscountLessThan (line 865) | public Criteria andDiscountLessThan(BigDecimal value) { method andDiscountLessThanColumn (line 876) | public Criteria andDiscountLessThanColumn(LitemallGrouponRules.Colum... method andDiscountLessThanOrEqualTo (line 881) | public Criteria andDiscountLessThanOrEqualTo(BigDecimal value) { method andDiscountLessThanOrEqualToColumn (line 892) | public Criteria andDiscountLessThanOrEqualToColumn(LitemallGrouponRu... method andDiscountIn (line 897) | public Criteria andDiscountIn(List values) { method andDiscountNotIn (line 902) | public Criteria andDiscountNotIn(List values) { method andDiscountBetween (line 907) | public Criteria andDiscountBetween(BigDecimal value1, BigDecimal val... method andDiscountNotBetween (line 912) | public Criteria andDiscountNotBetween(BigDecimal value1, BigDecimal ... method andDiscountMemberIsNull (line 917) | public Criteria andDiscountMemberIsNull() { method andDiscountMemberIsNotNull (line 922) | public Criteria andDiscountMemberIsNotNull() { method andDiscountMemberEqualTo (line 927) | public Criteria andDiscountMemberEqualTo(Integer value) { method andDiscountMemberEqualToColumn (line 938) | public Criteria andDiscountMemberEqualToColumn(LitemallGrouponRules.... method andDiscountMemberNotEqualTo (line 943) | public Criteria andDiscountMemberNotEqualTo(Integer value) { method andDiscountMemberNotEqualToColumn (line 954) | public Criteria andDiscountMemberNotEqualToColumn(LitemallGrouponRul... method andDiscountMemberGreaterThan (line 959) | public Criteria andDiscountMemberGreaterThan(Integer value) { method andDiscountMemberGreaterThanColumn (line 970) | public Criteria andDiscountMemberGreaterThanColumn(LitemallGrouponRu... method andDiscountMemberGreaterThanOrEqualTo (line 975) | public Criteria andDiscountMemberGreaterThanOrEqualTo(Integer value) { method andDiscountMemberGreaterThanOrEqualToColumn (line 986) | public Criteria andDiscountMemberGreaterThanOrEqualToColumn(Litemall... method andDiscountMemberLessThan (line 991) | public Criteria andDiscountMemberLessThan(Integer value) { method andDiscountMemberLessThanColumn (line 1002) | public Criteria andDiscountMemberLessThanColumn(LitemallGrouponRules... method andDiscountMemberLessThanOrEqualTo (line 1007) | public Criteria andDiscountMemberLessThanOrEqualTo(Integer value) { method andDiscountMemberLessThanOrEqualToColumn (line 1018) | public Criteria andDiscountMemberLessThanOrEqualToColumn(LitemallGro... method andDiscountMemberIn (line 1023) | public Criteria andDiscountMemberIn(List values) { method andDiscountMemberNotIn (line 1028) | public Criteria andDiscountMemberNotIn(List values) { method andDiscountMemberBetween (line 1033) | public Criteria andDiscountMemberBetween(Integer value1, Integer val... method andDiscountMemberNotBetween (line 1038) | public Criteria andDiscountMemberNotBetween(Integer value1, Integer ... method andExpireTimeIsNull (line 1043) | public Criteria andExpireTimeIsNull() { method andExpireTimeIsNotNull (line 1048) | public Criteria andExpireTimeIsNotNull() { method andExpireTimeEqualTo (line 1053) | public Criteria andExpireTimeEqualTo(LocalDateTime value) { method andExpireTimeEqualToColumn (line 1064) | public Criteria andExpireTimeEqualToColumn(LitemallGrouponRules.Colu... method andExpireTimeNotEqualTo (line 1069) | public Criteria andExpireTimeNotEqualTo(LocalDateTime value) { method andExpireTimeNotEqualToColumn (line 1080) | public Criteria andExpireTimeNotEqualToColumn(LitemallGrouponRules.C... method andExpireTimeGreaterThan (line 1085) | public Criteria andExpireTimeGreaterThan(LocalDateTime value) { method andExpireTimeGreaterThanColumn (line 1096) | public Criteria andExpireTimeGreaterThanColumn(LitemallGrouponRules.... method andExpireTimeGreaterThanOrEqualTo (line 1101) | public Criteria andExpireTimeGreaterThanOrEqualTo(LocalDateTime valu... method andExpireTimeGreaterThanOrEqualToColumn (line 1112) | public Criteria andExpireTimeGreaterThanOrEqualToColumn(LitemallGrou... method andExpireTimeLessThan (line 1117) | public Criteria andExpireTimeLessThan(LocalDateTime value) { method andExpireTimeLessThanColumn (line 1128) | public Criteria andExpireTimeLessThanColumn(LitemallGrouponRules.Col... method andExpireTimeLessThanOrEqualTo (line 1133) | public Criteria andExpireTimeLessThanOrEqualTo(LocalDateTime value) { method andExpireTimeLessThanOrEqualToColumn (line 1144) | public Criteria andExpireTimeLessThanOrEqualToColumn(LitemallGroupon... method andExpireTimeIn (line 1149) | public Criteria andExpireTimeIn(List values) { method andExpireTimeNotIn (line 1154) | public Criteria andExpireTimeNotIn(List values) { method andExpireTimeBetween (line 1159) | public Criteria andExpireTimeBetween(LocalDateTime value1, LocalDate... method andExpireTimeNotBetween (line 1164) | public Criteria andExpireTimeNotBetween(LocalDateTime value1, LocalD... method andStatusIsNull (line 1169) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 1174) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 1179) | public Criteria andStatusEqualTo(Short value) { method andStatusEqualToColumn (line 1190) | public Criteria andStatusEqualToColumn(LitemallGrouponRules.Column c... method andStatusNotEqualTo (line 1195) | public Criteria andStatusNotEqualTo(Short value) { method andStatusNotEqualToColumn (line 1206) | public Criteria andStatusNotEqualToColumn(LitemallGrouponRules.Colum... method andStatusGreaterThan (line 1211) | public Criteria andStatusGreaterThan(Short value) { method andStatusGreaterThanColumn (line 1222) | public Criteria andStatusGreaterThanColumn(LitemallGrouponRules.Colu... method andStatusGreaterThanOrEqualTo (line 1227) | public Criteria andStatusGreaterThanOrEqualTo(Short value) { method andStatusGreaterThanOrEqualToColumn (line 1238) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallGrouponR... method andStatusLessThan (line 1243) | public Criteria andStatusLessThan(Short value) { method andStatusLessThanColumn (line 1254) | public Criteria andStatusLessThanColumn(LitemallGrouponRules.Column ... method andStatusLessThanOrEqualTo (line 1259) | public Criteria andStatusLessThanOrEqualTo(Short value) { method andStatusLessThanOrEqualToColumn (line 1270) | public Criteria andStatusLessThanOrEqualToColumn(LitemallGrouponRule... method andStatusIn (line 1275) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 1280) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 1285) | public Criteria andStatusBetween(Short value1, Short value2) { method andStatusNotBetween (line 1290) | public Criteria andStatusNotBetween(Short value1, Short value2) { method andAddTimeIsNull (line 1295) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1300) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1305) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1316) | public Criteria andAddTimeEqualToColumn(LitemallGrouponRules.Column ... method andAddTimeNotEqualTo (line 1321) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1332) | public Criteria andAddTimeNotEqualToColumn(LitemallGrouponRules.Colu... method andAddTimeGreaterThan (line 1337) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1348) | public Criteria andAddTimeGreaterThanColumn(LitemallGrouponRules.Col... method andAddTimeGreaterThanOrEqualTo (line 1353) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1364) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallGroupon... method andAddTimeLessThan (line 1369) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1380) | public Criteria andAddTimeLessThanColumn(LitemallGrouponRules.Column... method andAddTimeLessThanOrEqualTo (line 1385) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1396) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallGrouponRul... method andAddTimeIn (line 1401) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1406) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1411) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1416) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1421) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1426) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1431) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1442) | public Criteria andUpdateTimeEqualToColumn(LitemallGrouponRules.Colu... method andUpdateTimeNotEqualTo (line 1447) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1458) | public Criteria andUpdateTimeNotEqualToColumn(LitemallGrouponRules.C... method andUpdateTimeGreaterThan (line 1463) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1474) | public Criteria andUpdateTimeGreaterThanColumn(LitemallGrouponRules.... method andUpdateTimeGreaterThanOrEqualTo (line 1479) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1490) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallGrou... method andUpdateTimeLessThan (line 1495) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1506) | public Criteria andUpdateTimeLessThanColumn(LitemallGrouponRules.Col... method andUpdateTimeLessThanOrEqualTo (line 1511) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1522) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallGroupon... method andUpdateTimeIn (line 1527) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1532) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1537) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1542) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1547) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1552) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1557) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1568) | public Criteria andDeletedEqualToColumn(LitemallGrouponRules.Column ... method andDeletedNotEqualTo (line 1573) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1584) | public Criteria andDeletedNotEqualToColumn(LitemallGrouponRules.Colu... method andDeletedGreaterThan (line 1589) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1600) | public Criteria andDeletedGreaterThanColumn(LitemallGrouponRules.Col... method andDeletedGreaterThanOrEqualTo (line 1605) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1616) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallGroupon... method andDeletedLessThan (line 1621) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1632) | public Criteria andDeletedLessThanColumn(LitemallGrouponRules.Column... method andDeletedLessThanOrEqualTo (line 1637) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1648) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallGrouponRul... method andDeletedIn (line 1653) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1658) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1663) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1668) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1680) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1695) | protected Criteria(LitemallGrouponRulesExample example) { method example (line 1706) | public LitemallGrouponRulesExample example() { method andIf (line 1716) | @Deprecated method when (line 1730) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1743) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1758) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1762) | @Deprecated method add (line 1770) | Criteria add(Criteria add); class Criterion (line 1780) | public static class Criterion { method getCondition (line 1797) | public String getCondition() { method getValue (line 1801) | public Object getValue() { method getSecondValue (line 1805) | public Object getSecondValue() { method isNoValue (line 1809) | public boolean isNoValue() { method isSingleValue (line 1813) | public boolean isSingleValue() { method isBetweenValue (line 1817) | public boolean isBetweenValue() { method isListValue (line 1821) | public boolean isListValue() { method getTypeHandler (line 1825) | public String getTypeHandler() { method Criterion (line 1829) | protected Criterion(String condition) { method Criterion (line 1836) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1848) | protected Criterion(String condition, Object value) { method Criterion (line 1852) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1861) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1866) | public interface ICriteriaWhen { method criteria (line 1873) | void criteria(Criteria criteria); type IExampleWhen (line 1876) | public interface IExampleWhen { method example (line 1883) | void example(org.linlinjava.litemall.db.domain.LitemallGrouponRulesE... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallIssue.java class LitemallIssue (line 7) | public class LitemallIssue { method getId (line 86) | public Integer getId() { method setId (line 98) | public void setId(Integer id) { method getQuestion (line 110) | public String getQuestion() { method setQuestion (line 122) | public void setQuestion(String question) { method getAnswer (line 134) | public String getAnswer() { method setAnswer (line 146) | public void setAnswer(String answer) { method getAddTime (line 158) | public LocalDateTime getAddTime() { method setAddTime (line 170) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 182) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 194) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 204) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 216) | public Boolean getDeleted() { method setDeleted (line 228) | public void setDeleted(Boolean deleted) { method toString (line 238) | @Override method equals (line 262) | @Override method hashCode (line 288) | @Override type Deleted (line 307) | public enum Deleted { method Deleted (line 333) | Deleted(Boolean value, String name) { method getValue (line 344) | public Boolean getValue() { method value (line 354) | public Boolean value() { method getName (line 364) | public String getName() { type Column (line 375) | public enum Column { method value (line 437) | public String value() { method getValue (line 447) | public String getValue() { method getJavaProperty (line 457) | public String getJavaProperty() { method getJdbcType (line 467) | public String getJdbcType() { method Column (line 477) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 490) | public String desc() { method asc (line 500) | public String asc() { method excludes (line 510) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 524) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 538) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallIssueExample.java class LitemallIssueExample (line 7) | public class LitemallIssueExample { method LitemallIssueExample (line 38) | public LitemallIssueExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallIssueExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallIssueExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallIssueExample when(boolean condition, IExampleWhen then) { method when (line 210) | public LitemallIssueExample when(boolean condition, IExampleWhen then,... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallIssue.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallIssue.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallIssue.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallIssue.Column... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallIssue.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallIssue.Column co... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andQuestionIsNull (line 392) | public Criteria andQuestionIsNull() { method andQuestionIsNotNull (line 397) | public Criteria andQuestionIsNotNull() { method andQuestionEqualTo (line 402) | public Criteria andQuestionEqualTo(String value) { method andQuestionEqualToColumn (line 413) | public Criteria andQuestionEqualToColumn(LitemallIssue.Column column) { method andQuestionNotEqualTo (line 418) | public Criteria andQuestionNotEqualTo(String value) { method andQuestionNotEqualToColumn (line 429) | public Criteria andQuestionNotEqualToColumn(LitemallIssue.Column col... method andQuestionGreaterThan (line 434) | public Criteria andQuestionGreaterThan(String value) { method andQuestionGreaterThanColumn (line 445) | public Criteria andQuestionGreaterThanColumn(LitemallIssue.Column co... method andQuestionGreaterThanOrEqualTo (line 450) | public Criteria andQuestionGreaterThanOrEqualTo(String value) { method andQuestionGreaterThanOrEqualToColumn (line 461) | public Criteria andQuestionGreaterThanOrEqualToColumn(LitemallIssue.... method andQuestionLessThan (line 466) | public Criteria andQuestionLessThan(String value) { method andQuestionLessThanColumn (line 477) | public Criteria andQuestionLessThanColumn(LitemallIssue.Column colum... method andQuestionLessThanOrEqualTo (line 482) | public Criteria andQuestionLessThanOrEqualTo(String value) { method andQuestionLessThanOrEqualToColumn (line 493) | public Criteria andQuestionLessThanOrEqualToColumn(LitemallIssue.Col... method andQuestionLike (line 498) | public Criteria andQuestionLike(String value) { method andQuestionNotLike (line 503) | public Criteria andQuestionNotLike(String value) { method andQuestionIn (line 508) | public Criteria andQuestionIn(List values) { method andQuestionNotIn (line 513) | public Criteria andQuestionNotIn(List values) { method andQuestionBetween (line 518) | public Criteria andQuestionBetween(String value1, String value2) { method andQuestionNotBetween (line 523) | public Criteria andQuestionNotBetween(String value1, String value2) { method andAnswerIsNull (line 528) | public Criteria andAnswerIsNull() { method andAnswerIsNotNull (line 533) | public Criteria andAnswerIsNotNull() { method andAnswerEqualTo (line 538) | public Criteria andAnswerEqualTo(String value) { method andAnswerEqualToColumn (line 549) | public Criteria andAnswerEqualToColumn(LitemallIssue.Column column) { method andAnswerNotEqualTo (line 554) | public Criteria andAnswerNotEqualTo(String value) { method andAnswerNotEqualToColumn (line 565) | public Criteria andAnswerNotEqualToColumn(LitemallIssue.Column colum... method andAnswerGreaterThan (line 570) | public Criteria andAnswerGreaterThan(String value) { method andAnswerGreaterThanColumn (line 581) | public Criteria andAnswerGreaterThanColumn(LitemallIssue.Column colu... method andAnswerGreaterThanOrEqualTo (line 586) | public Criteria andAnswerGreaterThanOrEqualTo(String value) { method andAnswerGreaterThanOrEqualToColumn (line 597) | public Criteria andAnswerGreaterThanOrEqualToColumn(LitemallIssue.Co... method andAnswerLessThan (line 602) | public Criteria andAnswerLessThan(String value) { method andAnswerLessThanColumn (line 613) | public Criteria andAnswerLessThanColumn(LitemallIssue.Column column) { method andAnswerLessThanOrEqualTo (line 618) | public Criteria andAnswerLessThanOrEqualTo(String value) { method andAnswerLessThanOrEqualToColumn (line 629) | public Criteria andAnswerLessThanOrEqualToColumn(LitemallIssue.Colum... method andAnswerLike (line 634) | public Criteria andAnswerLike(String value) { method andAnswerNotLike (line 639) | public Criteria andAnswerNotLike(String value) { method andAnswerIn (line 644) | public Criteria andAnswerIn(List values) { method andAnswerNotIn (line 649) | public Criteria andAnswerNotIn(List values) { method andAnswerBetween (line 654) | public Criteria andAnswerBetween(String value1, String value2) { method andAnswerNotBetween (line 659) | public Criteria andAnswerNotBetween(String value1, String value2) { method andAddTimeIsNull (line 664) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 669) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 674) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 685) | public Criteria andAddTimeEqualToColumn(LitemallIssue.Column column) { method andAddTimeNotEqualTo (line 690) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 701) | public Criteria andAddTimeNotEqualToColumn(LitemallIssue.Column colu... method andAddTimeGreaterThan (line 706) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 717) | public Criteria andAddTimeGreaterThanColumn(LitemallIssue.Column col... method andAddTimeGreaterThanOrEqualTo (line 722) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 733) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallIssue.C... method andAddTimeLessThan (line 738) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 749) | public Criteria andAddTimeLessThanColumn(LitemallIssue.Column column) { method andAddTimeLessThanOrEqualTo (line 754) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 765) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallIssue.Colu... method andAddTimeIn (line 770) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 775) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 780) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 785) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 790) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 795) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 800) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 811) | public Criteria andUpdateTimeEqualToColumn(LitemallIssue.Column colu... method andUpdateTimeNotEqualTo (line 816) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 827) | public Criteria andUpdateTimeNotEqualToColumn(LitemallIssue.Column c... method andUpdateTimeGreaterThan (line 832) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 843) | public Criteria andUpdateTimeGreaterThanColumn(LitemallIssue.Column ... method andUpdateTimeGreaterThanOrEqualTo (line 848) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 859) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallIssu... method andUpdateTimeLessThan (line 864) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 875) | public Criteria andUpdateTimeLessThanColumn(LitemallIssue.Column col... method andUpdateTimeLessThanOrEqualTo (line 880) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 891) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallIssue.C... method andUpdateTimeIn (line 896) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 901) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 906) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 911) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 916) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 921) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 926) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 937) | public Criteria andDeletedEqualToColumn(LitemallIssue.Column column) { method andDeletedNotEqualTo (line 942) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 953) | public Criteria andDeletedNotEqualToColumn(LitemallIssue.Column colu... method andDeletedGreaterThan (line 958) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 969) | public Criteria andDeletedGreaterThanColumn(LitemallIssue.Column col... method andDeletedGreaterThanOrEqualTo (line 974) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 985) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallIssue.C... method andDeletedLessThan (line 990) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1001) | public Criteria andDeletedLessThanColumn(LitemallIssue.Column column) { method andDeletedLessThanOrEqualTo (line 1006) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1017) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallIssue.Colu... method andDeletedIn (line 1022) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1027) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1032) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1037) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1049) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1064) | protected Criteria(LitemallIssueExample example) { method example (line 1075) | public LitemallIssueExample example() { method andIf (line 1085) | @Deprecated method when (line 1099) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1112) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1127) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1131) | @Deprecated method add (line 1139) | Criteria add(Criteria add); class Criterion (line 1149) | public static class Criterion { method getCondition (line 1166) | public String getCondition() { method getValue (line 1170) | public Object getValue() { method getSecondValue (line 1174) | public Object getSecondValue() { method isNoValue (line 1178) | public boolean isNoValue() { method isSingleValue (line 1182) | public boolean isSingleValue() { method isBetweenValue (line 1186) | public boolean isBetweenValue() { method isListValue (line 1190) | public boolean isListValue() { method getTypeHandler (line 1194) | public String getTypeHandler() { method Criterion (line 1198) | protected Criterion(String condition) { method Criterion (line 1205) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1217) | protected Criterion(String condition, Object value) { method Criterion (line 1221) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1230) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1235) | public interface ICriteriaWhen { method criteria (line 1242) | void criteria(Criteria criteria); type IExampleWhen (line 1245) | public interface IExampleWhen { method example (line 1252) | void example(org.linlinjava.litemall.db.domain.LitemallIssueExample ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallKeyword.java class LitemallKeyword (line 7) | public class LitemallKeyword { method getId (line 113) | public Integer getId() { method setId (line 125) | public void setId(Integer id) { method getKeyword (line 137) | public String getKeyword() { method setKeyword (line 149) | public void setKeyword(String keyword) { method getUrl (line 161) | public String getUrl() { method setUrl (line 173) | public void setUrl(String url) { method getIsHot (line 185) | public Boolean getIsHot() { method setIsHot (line 197) | public void setIsHot(Boolean isHot) { method getIsDefault (line 209) | public Boolean getIsDefault() { method setIsDefault (line 221) | public void setIsDefault(Boolean isDefault) { method getSortOrder (line 233) | public Integer getSortOrder() { method setSortOrder (line 245) | public void setSortOrder(Integer sortOrder) { method getAddTime (line 257) | public LocalDateTime getAddTime() { method setAddTime (line 269) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 281) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 293) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 303) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 315) | public Boolean getDeleted() { method setDeleted (line 327) | public void setDeleted(Boolean deleted) { method toString (line 337) | @Override method equals (line 364) | @Override method hashCode (line 393) | @Override type Deleted (line 415) | public enum Deleted { method Deleted (line 441) | Deleted(Boolean value, String name) { method getValue (line 452) | public Boolean getValue() { method value (line 462) | public Boolean value() { method getName (line 472) | public String getName() { type Column (line 483) | public enum Column { method value (line 548) | public String value() { method getValue (line 558) | public String getValue() { method getJavaProperty (line 568) | public String getJavaProperty() { method getJdbcType (line 578) | public String getJdbcType() { method Column (line 588) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 601) | public String desc() { method asc (line 611) | public String asc() { method excludes (line 621) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 635) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 649) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallKeywordExample.java class LitemallKeywordExample (line 7) | public class LitemallKeywordExample { method LitemallKeywordExample (line 38) | public LitemallKeywordExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallKeywordExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallKeywordExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallKeywordExample when(boolean condition, IExampleWhen the... method when (line 210) | public LitemallKeywordExample when(boolean condition, IExampleWhen the... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallKeyword.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallKeyword.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallKeyword.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallKeyword.Colu... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallKeyword.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallKeyword.Column ... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andKeywordIsNull (line 392) | public Criteria andKeywordIsNull() { method andKeywordIsNotNull (line 397) | public Criteria andKeywordIsNotNull() { method andKeywordEqualTo (line 402) | public Criteria andKeywordEqualTo(String value) { method andKeywordEqualToColumn (line 413) | public Criteria andKeywordEqualToColumn(LitemallKeyword.Column colum... method andKeywordNotEqualTo (line 418) | public Criteria andKeywordNotEqualTo(String value) { method andKeywordNotEqualToColumn (line 429) | public Criteria andKeywordNotEqualToColumn(LitemallKeyword.Column co... method andKeywordGreaterThan (line 434) | public Criteria andKeywordGreaterThan(String value) { method andKeywordGreaterThanColumn (line 445) | public Criteria andKeywordGreaterThanColumn(LitemallKeyword.Column c... method andKeywordGreaterThanOrEqualTo (line 450) | public Criteria andKeywordGreaterThanOrEqualTo(String value) { method andKeywordGreaterThanOrEqualToColumn (line 461) | public Criteria andKeywordGreaterThanOrEqualToColumn(LitemallKeyword... method andKeywordLessThan (line 466) | public Criteria andKeywordLessThan(String value) { method andKeywordLessThanColumn (line 477) | public Criteria andKeywordLessThanColumn(LitemallKeyword.Column colu... method andKeywordLessThanOrEqualTo (line 482) | public Criteria andKeywordLessThanOrEqualTo(String value) { method andKeywordLessThanOrEqualToColumn (line 493) | public Criteria andKeywordLessThanOrEqualToColumn(LitemallKeyword.Co... method andKeywordLike (line 498) | public Criteria andKeywordLike(String value) { method andKeywordNotLike (line 503) | public Criteria andKeywordNotLike(String value) { method andKeywordIn (line 508) | public Criteria andKeywordIn(List values) { method andKeywordNotIn (line 513) | public Criteria andKeywordNotIn(List values) { method andKeywordBetween (line 518) | public Criteria andKeywordBetween(String value1, String value2) { method andKeywordNotBetween (line 523) | public Criteria andKeywordNotBetween(String value1, String value2) { method andUrlIsNull (line 528) | public Criteria andUrlIsNull() { method andUrlIsNotNull (line 533) | public Criteria andUrlIsNotNull() { method andUrlEqualTo (line 538) | public Criteria andUrlEqualTo(String value) { method andUrlEqualToColumn (line 549) | public Criteria andUrlEqualToColumn(LitemallKeyword.Column column) { method andUrlNotEqualTo (line 554) | public Criteria andUrlNotEqualTo(String value) { method andUrlNotEqualToColumn (line 565) | public Criteria andUrlNotEqualToColumn(LitemallKeyword.Column column) { method andUrlGreaterThan (line 570) | public Criteria andUrlGreaterThan(String value) { method andUrlGreaterThanColumn (line 581) | public Criteria andUrlGreaterThanColumn(LitemallKeyword.Column colum... method andUrlGreaterThanOrEqualTo (line 586) | public Criteria andUrlGreaterThanOrEqualTo(String value) { method andUrlGreaterThanOrEqualToColumn (line 597) | public Criteria andUrlGreaterThanOrEqualToColumn(LitemallKeyword.Col... method andUrlLessThan (line 602) | public Criteria andUrlLessThan(String value) { method andUrlLessThanColumn (line 613) | public Criteria andUrlLessThanColumn(LitemallKeyword.Column column) { method andUrlLessThanOrEqualTo (line 618) | public Criteria andUrlLessThanOrEqualTo(String value) { method andUrlLessThanOrEqualToColumn (line 629) | public Criteria andUrlLessThanOrEqualToColumn(LitemallKeyword.Column... method andUrlLike (line 634) | public Criteria andUrlLike(String value) { method andUrlNotLike (line 639) | public Criteria andUrlNotLike(String value) { method andUrlIn (line 644) | public Criteria andUrlIn(List values) { method andUrlNotIn (line 649) | public Criteria andUrlNotIn(List values) { method andUrlBetween (line 654) | public Criteria andUrlBetween(String value1, String value2) { method andUrlNotBetween (line 659) | public Criteria andUrlNotBetween(String value1, String value2) { method andIsHotIsNull (line 664) | public Criteria andIsHotIsNull() { method andIsHotIsNotNull (line 669) | public Criteria andIsHotIsNotNull() { method andIsHotEqualTo (line 674) | public Criteria andIsHotEqualTo(Boolean value) { method andIsHotEqualToColumn (line 685) | public Criteria andIsHotEqualToColumn(LitemallKeyword.Column column) { method andIsHotNotEqualTo (line 690) | public Criteria andIsHotNotEqualTo(Boolean value) { method andIsHotNotEqualToColumn (line 701) | public Criteria andIsHotNotEqualToColumn(LitemallKeyword.Column colu... method andIsHotGreaterThan (line 706) | public Criteria andIsHotGreaterThan(Boolean value) { method andIsHotGreaterThanColumn (line 717) | public Criteria andIsHotGreaterThanColumn(LitemallKeyword.Column col... method andIsHotGreaterThanOrEqualTo (line 722) | public Criteria andIsHotGreaterThanOrEqualTo(Boolean value) { method andIsHotGreaterThanOrEqualToColumn (line 733) | public Criteria andIsHotGreaterThanOrEqualToColumn(LitemallKeyword.C... method andIsHotLessThan (line 738) | public Criteria andIsHotLessThan(Boolean value) { method andIsHotLessThanColumn (line 749) | public Criteria andIsHotLessThanColumn(LitemallKeyword.Column column) { method andIsHotLessThanOrEqualTo (line 754) | public Criteria andIsHotLessThanOrEqualTo(Boolean value) { method andIsHotLessThanOrEqualToColumn (line 765) | public Criteria andIsHotLessThanOrEqualToColumn(LitemallKeyword.Colu... method andIsHotIn (line 770) | public Criteria andIsHotIn(List values) { method andIsHotNotIn (line 775) | public Criteria andIsHotNotIn(List values) { method andIsHotBetween (line 780) | public Criteria andIsHotBetween(Boolean value1, Boolean value2) { method andIsHotNotBetween (line 785) | public Criteria andIsHotNotBetween(Boolean value1, Boolean value2) { method andIsDefaultIsNull (line 790) | public Criteria andIsDefaultIsNull() { method andIsDefaultIsNotNull (line 795) | public Criteria andIsDefaultIsNotNull() { method andIsDefaultEqualTo (line 800) | public Criteria andIsDefaultEqualTo(Boolean value) { method andIsDefaultEqualToColumn (line 811) | public Criteria andIsDefaultEqualToColumn(LitemallKeyword.Column col... method andIsDefaultNotEqualTo (line 816) | public Criteria andIsDefaultNotEqualTo(Boolean value) { method andIsDefaultNotEqualToColumn (line 827) | public Criteria andIsDefaultNotEqualToColumn(LitemallKeyword.Column ... method andIsDefaultGreaterThan (line 832) | public Criteria andIsDefaultGreaterThan(Boolean value) { method andIsDefaultGreaterThanColumn (line 843) | public Criteria andIsDefaultGreaterThanColumn(LitemallKeyword.Column... method andIsDefaultGreaterThanOrEqualTo (line 848) | public Criteria andIsDefaultGreaterThanOrEqualTo(Boolean value) { method andIsDefaultGreaterThanOrEqualToColumn (line 859) | public Criteria andIsDefaultGreaterThanOrEqualToColumn(LitemallKeywo... method andIsDefaultLessThan (line 864) | public Criteria andIsDefaultLessThan(Boolean value) { method andIsDefaultLessThanColumn (line 875) | public Criteria andIsDefaultLessThanColumn(LitemallKeyword.Column co... method andIsDefaultLessThanOrEqualTo (line 880) | public Criteria andIsDefaultLessThanOrEqualTo(Boolean value) { method andIsDefaultLessThanOrEqualToColumn (line 891) | public Criteria andIsDefaultLessThanOrEqualToColumn(LitemallKeyword.... method andIsDefaultIn (line 896) | public Criteria andIsDefaultIn(List values) { method andIsDefaultNotIn (line 901) | public Criteria andIsDefaultNotIn(List values) { method andIsDefaultBetween (line 906) | public Criteria andIsDefaultBetween(Boolean value1, Boolean value2) { method andIsDefaultNotBetween (line 911) | public Criteria andIsDefaultNotBetween(Boolean value1, Boolean value... method andSortOrderIsNull (line 916) | public Criteria andSortOrderIsNull() { method andSortOrderIsNotNull (line 921) | public Criteria andSortOrderIsNotNull() { method andSortOrderEqualTo (line 926) | public Criteria andSortOrderEqualTo(Integer value) { method andSortOrderEqualToColumn (line 937) | public Criteria andSortOrderEqualToColumn(LitemallKeyword.Column col... method andSortOrderNotEqualTo (line 942) | public Criteria andSortOrderNotEqualTo(Integer value) { method andSortOrderNotEqualToColumn (line 953) | public Criteria andSortOrderNotEqualToColumn(LitemallKeyword.Column ... method andSortOrderGreaterThan (line 958) | public Criteria andSortOrderGreaterThan(Integer value) { method andSortOrderGreaterThanColumn (line 969) | public Criteria andSortOrderGreaterThanColumn(LitemallKeyword.Column... method andSortOrderGreaterThanOrEqualTo (line 974) | public Criteria andSortOrderGreaterThanOrEqualTo(Integer value) { method andSortOrderGreaterThanOrEqualToColumn (line 985) | public Criteria andSortOrderGreaterThanOrEqualToColumn(LitemallKeywo... method andSortOrderLessThan (line 990) | public Criteria andSortOrderLessThan(Integer value) { method andSortOrderLessThanColumn (line 1001) | public Criteria andSortOrderLessThanColumn(LitemallKeyword.Column co... method andSortOrderLessThanOrEqualTo (line 1006) | public Criteria andSortOrderLessThanOrEqualTo(Integer value) { method andSortOrderLessThanOrEqualToColumn (line 1017) | public Criteria andSortOrderLessThanOrEqualToColumn(LitemallKeyword.... method andSortOrderIn (line 1022) | public Criteria andSortOrderIn(List values) { method andSortOrderNotIn (line 1027) | public Criteria andSortOrderNotIn(List values) { method andSortOrderBetween (line 1032) | public Criteria andSortOrderBetween(Integer value1, Integer value2) { method andSortOrderNotBetween (line 1037) | public Criteria andSortOrderNotBetween(Integer value1, Integer value... method andAddTimeIsNull (line 1042) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1047) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1052) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1063) | public Criteria andAddTimeEqualToColumn(LitemallKeyword.Column colum... method andAddTimeNotEqualTo (line 1068) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1079) | public Criteria andAddTimeNotEqualToColumn(LitemallKeyword.Column co... method andAddTimeGreaterThan (line 1084) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1095) | public Criteria andAddTimeGreaterThanColumn(LitemallKeyword.Column c... method andAddTimeGreaterThanOrEqualTo (line 1100) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1111) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallKeyword... method andAddTimeLessThan (line 1116) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1127) | public Criteria andAddTimeLessThanColumn(LitemallKeyword.Column colu... method andAddTimeLessThanOrEqualTo (line 1132) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1143) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallKeyword.Co... method andAddTimeIn (line 1148) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1153) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1158) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1163) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1168) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1173) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1178) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1189) | public Criteria andUpdateTimeEqualToColumn(LitemallKeyword.Column co... method andUpdateTimeNotEqualTo (line 1194) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1205) | public Criteria andUpdateTimeNotEqualToColumn(LitemallKeyword.Column... method andUpdateTimeGreaterThan (line 1210) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1221) | public Criteria andUpdateTimeGreaterThanColumn(LitemallKeyword.Colum... method andUpdateTimeGreaterThanOrEqualTo (line 1226) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1237) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallKeyw... method andUpdateTimeLessThan (line 1242) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1253) | public Criteria andUpdateTimeLessThanColumn(LitemallKeyword.Column c... method andUpdateTimeLessThanOrEqualTo (line 1258) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1269) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallKeyword... method andUpdateTimeIn (line 1274) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1279) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1284) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1289) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1294) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1299) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1304) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1315) | public Criteria andDeletedEqualToColumn(LitemallKeyword.Column colum... method andDeletedNotEqualTo (line 1320) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1331) | public Criteria andDeletedNotEqualToColumn(LitemallKeyword.Column co... method andDeletedGreaterThan (line 1336) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1347) | public Criteria andDeletedGreaterThanColumn(LitemallKeyword.Column c... method andDeletedGreaterThanOrEqualTo (line 1352) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1363) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallKeyword... method andDeletedLessThan (line 1368) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1379) | public Criteria andDeletedLessThanColumn(LitemallKeyword.Column colu... method andDeletedLessThanOrEqualTo (line 1384) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1395) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallKeyword.Co... method andDeletedIn (line 1400) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1405) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1410) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1415) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1427) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1442) | protected Criteria(LitemallKeywordExample example) { method example (line 1453) | public LitemallKeywordExample example() { method andIf (line 1463) | @Deprecated method when (line 1477) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1490) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1505) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1509) | @Deprecated method add (line 1517) | Criteria add(Criteria add); class Criterion (line 1527) | public static class Criterion { method getCondition (line 1544) | public String getCondition() { method getValue (line 1548) | public Object getValue() { method getSecondValue (line 1552) | public Object getSecondValue() { method isNoValue (line 1556) | public boolean isNoValue() { method isSingleValue (line 1560) | public boolean isSingleValue() { method isBetweenValue (line 1564) | public boolean isBetweenValue() { method isListValue (line 1568) | public boolean isListValue() { method getTypeHandler (line 1572) | public String getTypeHandler() { method Criterion (line 1576) | protected Criterion(String condition) { method Criterion (line 1583) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1595) | protected Criterion(String condition, Object value) { method Criterion (line 1599) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1608) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1613) | public interface ICriteriaWhen { method criteria (line 1620) | void criteria(Criteria criteria); type IExampleWhen (line 1623) | public interface IExampleWhen { method example (line 1630) | void example(org.linlinjava.litemall.db.domain.LitemallKeywordExampl... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallLog.java class LitemallLog (line 7) | public class LitemallLog { method getId (line 131) | public Integer getId() { method setId (line 143) | public void setId(Integer id) { method getAdmin (line 155) | public String getAdmin() { method setAdmin (line 167) | public void setAdmin(String admin) { method getIp (line 179) | public String getIp() { method setIp (line 191) | public void setIp(String ip) { method getType (line 203) | public Integer getType() { method setType (line 215) | public void setType(Integer type) { method getAction (line 227) | public String getAction() { method setAction (line 239) | public void setAction(String action) { method getStatus (line 251) | public Boolean getStatus() { method setStatus (line 263) | public void setStatus(Boolean status) { method getResult (line 275) | public String getResult() { method setResult (line 287) | public void setResult(String result) { method getComment (line 299) | public String getComment() { method setComment (line 311) | public void setComment(String comment) { method getAddTime (line 323) | public LocalDateTime getAddTime() { method setAddTime (line 335) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 347) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 359) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 369) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 381) | public Boolean getDeleted() { method setDeleted (line 393) | public void setDeleted(Boolean deleted) { method toString (line 403) | @Override method equals (line 432) | @Override method hashCode (line 463) | @Override type Deleted (line 487) | public enum Deleted { method Deleted (line 513) | Deleted(Boolean value, String name) { method getValue (line 524) | public Boolean getValue() { method value (line 534) | public Boolean value() { method getName (line 544) | public String getName() { type Column (line 555) | public enum Column { method value (line 622) | public String value() { method getValue (line 632) | public String getValue() { method getJavaProperty (line 642) | public String getJavaProperty() { method getJdbcType (line 652) | public String getJdbcType() { method Column (line 662) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 675) | public String desc() { method asc (line 685) | public String asc() { method excludes (line 695) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 709) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 723) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallLogExample.java class LitemallLogExample (line 7) | public class LitemallLogExample { method LitemallLogExample (line 38) | public LitemallLogExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallLogExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallLogExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallLogExample when(boolean condition, IExampleWhen then) { method when (line 210) | public LitemallLogExample when(boolean condition, IExampleWhen then, I... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallLog.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallLog.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallLog.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallLog.Column c... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallLog.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallLog.Column colu... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andAdminIsNull (line 392) | public Criteria andAdminIsNull() { method andAdminIsNotNull (line 397) | public Criteria andAdminIsNotNull() { method andAdminEqualTo (line 402) | public Criteria andAdminEqualTo(String value) { method andAdminEqualToColumn (line 413) | public Criteria andAdminEqualToColumn(LitemallLog.Column column) { method andAdminNotEqualTo (line 418) | public Criteria andAdminNotEqualTo(String value) { method andAdminNotEqualToColumn (line 429) | public Criteria andAdminNotEqualToColumn(LitemallLog.Column column) { method andAdminGreaterThan (line 434) | public Criteria andAdminGreaterThan(String value) { method andAdminGreaterThanColumn (line 445) | public Criteria andAdminGreaterThanColumn(LitemallLog.Column column) { method andAdminGreaterThanOrEqualTo (line 450) | public Criteria andAdminGreaterThanOrEqualTo(String value) { method andAdminGreaterThanOrEqualToColumn (line 461) | public Criteria andAdminGreaterThanOrEqualToColumn(LitemallLog.Colum... method andAdminLessThan (line 466) | public Criteria andAdminLessThan(String value) { method andAdminLessThanColumn (line 477) | public Criteria andAdminLessThanColumn(LitemallLog.Column column) { method andAdminLessThanOrEqualTo (line 482) | public Criteria andAdminLessThanOrEqualTo(String value) { method andAdminLessThanOrEqualToColumn (line 493) | public Criteria andAdminLessThanOrEqualToColumn(LitemallLog.Column c... method andAdminLike (line 498) | public Criteria andAdminLike(String value) { method andAdminNotLike (line 503) | public Criteria andAdminNotLike(String value) { method andAdminIn (line 508) | public Criteria andAdminIn(List values) { method andAdminNotIn (line 513) | public Criteria andAdminNotIn(List values) { method andAdminBetween (line 518) | public Criteria andAdminBetween(String value1, String value2) { method andAdminNotBetween (line 523) | public Criteria andAdminNotBetween(String value1, String value2) { method andIpIsNull (line 528) | public Criteria andIpIsNull() { method andIpIsNotNull (line 533) | public Criteria andIpIsNotNull() { method andIpEqualTo (line 538) | public Criteria andIpEqualTo(String value) { method andIpEqualToColumn (line 549) | public Criteria andIpEqualToColumn(LitemallLog.Column column) { method andIpNotEqualTo (line 554) | public Criteria andIpNotEqualTo(String value) { method andIpNotEqualToColumn (line 565) | public Criteria andIpNotEqualToColumn(LitemallLog.Column column) { method andIpGreaterThan (line 570) | public Criteria andIpGreaterThan(String value) { method andIpGreaterThanColumn (line 581) | public Criteria andIpGreaterThanColumn(LitemallLog.Column column) { method andIpGreaterThanOrEqualTo (line 586) | public Criteria andIpGreaterThanOrEqualTo(String value) { method andIpGreaterThanOrEqualToColumn (line 597) | public Criteria andIpGreaterThanOrEqualToColumn(LitemallLog.Column c... method andIpLessThan (line 602) | public Criteria andIpLessThan(String value) { method andIpLessThanColumn (line 613) | public Criteria andIpLessThanColumn(LitemallLog.Column column) { method andIpLessThanOrEqualTo (line 618) | public Criteria andIpLessThanOrEqualTo(String value) { method andIpLessThanOrEqualToColumn (line 629) | public Criteria andIpLessThanOrEqualToColumn(LitemallLog.Column colu... method andIpLike (line 634) | public Criteria andIpLike(String value) { method andIpNotLike (line 639) | public Criteria andIpNotLike(String value) { method andIpIn (line 644) | public Criteria andIpIn(List values) { method andIpNotIn (line 649) | public Criteria andIpNotIn(List values) { method andIpBetween (line 654) | public Criteria andIpBetween(String value1, String value2) { method andIpNotBetween (line 659) | public Criteria andIpNotBetween(String value1, String value2) { method andTypeIsNull (line 664) | public Criteria andTypeIsNull() { method andTypeIsNotNull (line 669) | public Criteria andTypeIsNotNull() { method andTypeEqualTo (line 674) | public Criteria andTypeEqualTo(Integer value) { method andTypeEqualToColumn (line 685) | public Criteria andTypeEqualToColumn(LitemallLog.Column column) { method andTypeNotEqualTo (line 690) | public Criteria andTypeNotEqualTo(Integer value) { method andTypeNotEqualToColumn (line 701) | public Criteria andTypeNotEqualToColumn(LitemallLog.Column column) { method andTypeGreaterThan (line 706) | public Criteria andTypeGreaterThan(Integer value) { method andTypeGreaterThanColumn (line 717) | public Criteria andTypeGreaterThanColumn(LitemallLog.Column column) { method andTypeGreaterThanOrEqualTo (line 722) | public Criteria andTypeGreaterThanOrEqualTo(Integer value) { method andTypeGreaterThanOrEqualToColumn (line 733) | public Criteria andTypeGreaterThanOrEqualToColumn(LitemallLog.Column... method andTypeLessThan (line 738) | public Criteria andTypeLessThan(Integer value) { method andTypeLessThanColumn (line 749) | public Criteria andTypeLessThanColumn(LitemallLog.Column column) { method andTypeLessThanOrEqualTo (line 754) | public Criteria andTypeLessThanOrEqualTo(Integer value) { method andTypeLessThanOrEqualToColumn (line 765) | public Criteria andTypeLessThanOrEqualToColumn(LitemallLog.Column co... method andTypeIn (line 770) | public Criteria andTypeIn(List values) { method andTypeNotIn (line 775) | public Criteria andTypeNotIn(List values) { method andTypeBetween (line 780) | public Criteria andTypeBetween(Integer value1, Integer value2) { method andTypeNotBetween (line 785) | public Criteria andTypeNotBetween(Integer value1, Integer value2) { method andActionIsNull (line 790) | public Criteria andActionIsNull() { method andActionIsNotNull (line 795) | public Criteria andActionIsNotNull() { method andActionEqualTo (line 800) | public Criteria andActionEqualTo(String value) { method andActionEqualToColumn (line 811) | public Criteria andActionEqualToColumn(LitemallLog.Column column) { method andActionNotEqualTo (line 816) | public Criteria andActionNotEqualTo(String value) { method andActionNotEqualToColumn (line 827) | public Criteria andActionNotEqualToColumn(LitemallLog.Column column) { method andActionGreaterThan (line 832) | public Criteria andActionGreaterThan(String value) { method andActionGreaterThanColumn (line 843) | public Criteria andActionGreaterThanColumn(LitemallLog.Column column) { method andActionGreaterThanOrEqualTo (line 848) | public Criteria andActionGreaterThanOrEqualTo(String value) { method andActionGreaterThanOrEqualToColumn (line 859) | public Criteria andActionGreaterThanOrEqualToColumn(LitemallLog.Colu... method andActionLessThan (line 864) | public Criteria andActionLessThan(String value) { method andActionLessThanColumn (line 875) | public Criteria andActionLessThanColumn(LitemallLog.Column column) { method andActionLessThanOrEqualTo (line 880) | public Criteria andActionLessThanOrEqualTo(String value) { method andActionLessThanOrEqualToColumn (line 891) | public Criteria andActionLessThanOrEqualToColumn(LitemallLog.Column ... method andActionLike (line 896) | public Criteria andActionLike(String value) { method andActionNotLike (line 901) | public Criteria andActionNotLike(String value) { method andActionIn (line 906) | public Criteria andActionIn(List values) { method andActionNotIn (line 911) | public Criteria andActionNotIn(List values) { method andActionBetween (line 916) | public Criteria andActionBetween(String value1, String value2) { method andActionNotBetween (line 921) | public Criteria andActionNotBetween(String value1, String value2) { method andStatusIsNull (line 926) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 931) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 936) | public Criteria andStatusEqualTo(Boolean value) { method andStatusEqualToColumn (line 947) | public Criteria andStatusEqualToColumn(LitemallLog.Column column) { method andStatusNotEqualTo (line 952) | public Criteria andStatusNotEqualTo(Boolean value) { method andStatusNotEqualToColumn (line 963) | public Criteria andStatusNotEqualToColumn(LitemallLog.Column column) { method andStatusGreaterThan (line 968) | public Criteria andStatusGreaterThan(Boolean value) { method andStatusGreaterThanColumn (line 979) | public Criteria andStatusGreaterThanColumn(LitemallLog.Column column) { method andStatusGreaterThanOrEqualTo (line 984) | public Criteria andStatusGreaterThanOrEqualTo(Boolean value) { method andStatusGreaterThanOrEqualToColumn (line 995) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallLog.Colu... method andStatusLessThan (line 1000) | public Criteria andStatusLessThan(Boolean value) { method andStatusLessThanColumn (line 1011) | public Criteria andStatusLessThanColumn(LitemallLog.Column column) { method andStatusLessThanOrEqualTo (line 1016) | public Criteria andStatusLessThanOrEqualTo(Boolean value) { method andStatusLessThanOrEqualToColumn (line 1027) | public Criteria andStatusLessThanOrEqualToColumn(LitemallLog.Column ... method andStatusIn (line 1032) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 1037) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 1042) | public Criteria andStatusBetween(Boolean value1, Boolean value2) { method andStatusNotBetween (line 1047) | public Criteria andStatusNotBetween(Boolean value1, Boolean value2) { method andResultIsNull (line 1052) | public Criteria andResultIsNull() { method andResultIsNotNull (line 1057) | public Criteria andResultIsNotNull() { method andResultEqualTo (line 1062) | public Criteria andResultEqualTo(String value) { method andResultEqualToColumn (line 1073) | public Criteria andResultEqualToColumn(LitemallLog.Column column) { method andResultNotEqualTo (line 1078) | public Criteria andResultNotEqualTo(String value) { method andResultNotEqualToColumn (line 1089) | public Criteria andResultNotEqualToColumn(LitemallLog.Column column) { method andResultGreaterThan (line 1094) | public Criteria andResultGreaterThan(String value) { method andResultGreaterThanColumn (line 1105) | public Criteria andResultGreaterThanColumn(LitemallLog.Column column) { method andResultGreaterThanOrEqualTo (line 1110) | public Criteria andResultGreaterThanOrEqualTo(String value) { method andResultGreaterThanOrEqualToColumn (line 1121) | public Criteria andResultGreaterThanOrEqualToColumn(LitemallLog.Colu... method andResultLessThan (line 1126) | public Criteria andResultLessThan(String value) { method andResultLessThanColumn (line 1137) | public Criteria andResultLessThanColumn(LitemallLog.Column column) { method andResultLessThanOrEqualTo (line 1142) | public Criteria andResultLessThanOrEqualTo(String value) { method andResultLessThanOrEqualToColumn (line 1153) | public Criteria andResultLessThanOrEqualToColumn(LitemallLog.Column ... method andResultLike (line 1158) | public Criteria andResultLike(String value) { method andResultNotLike (line 1163) | public Criteria andResultNotLike(String value) { method andResultIn (line 1168) | public Criteria andResultIn(List values) { method andResultNotIn (line 1173) | public Criteria andResultNotIn(List values) { method andResultBetween (line 1178) | public Criteria andResultBetween(String value1, String value2) { method andResultNotBetween (line 1183) | public Criteria andResultNotBetween(String value1, String value2) { method andCommentIsNull (line 1188) | public Criteria andCommentIsNull() { method andCommentIsNotNull (line 1193) | public Criteria andCommentIsNotNull() { method andCommentEqualTo (line 1198) | public Criteria andCommentEqualTo(String value) { method andCommentEqualToColumn (line 1209) | public Criteria andCommentEqualToColumn(LitemallLog.Column column) { method andCommentNotEqualTo (line 1214) | public Criteria andCommentNotEqualTo(String value) { method andCommentNotEqualToColumn (line 1225) | public Criteria andCommentNotEqualToColumn(LitemallLog.Column column) { method andCommentGreaterThan (line 1230) | public Criteria andCommentGreaterThan(String value) { method andCommentGreaterThanColumn (line 1241) | public Criteria andCommentGreaterThanColumn(LitemallLog.Column colum... method andCommentGreaterThanOrEqualTo (line 1246) | public Criteria andCommentGreaterThanOrEqualTo(String value) { method andCommentGreaterThanOrEqualToColumn (line 1257) | public Criteria andCommentGreaterThanOrEqualToColumn(LitemallLog.Col... method andCommentLessThan (line 1262) | public Criteria andCommentLessThan(String value) { method andCommentLessThanColumn (line 1273) | public Criteria andCommentLessThanColumn(LitemallLog.Column column) { method andCommentLessThanOrEqualTo (line 1278) | public Criteria andCommentLessThanOrEqualTo(String value) { method andCommentLessThanOrEqualToColumn (line 1289) | public Criteria andCommentLessThanOrEqualToColumn(LitemallLog.Column... method andCommentLike (line 1294) | public Criteria andCommentLike(String value) { method andCommentNotLike (line 1299) | public Criteria andCommentNotLike(String value) { method andCommentIn (line 1304) | public Criteria andCommentIn(List values) { method andCommentNotIn (line 1309) | public Criteria andCommentNotIn(List values) { method andCommentBetween (line 1314) | public Criteria andCommentBetween(String value1, String value2) { method andCommentNotBetween (line 1319) | public Criteria andCommentNotBetween(String value1, String value2) { method andAddTimeIsNull (line 1324) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1329) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1334) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1345) | public Criteria andAddTimeEqualToColumn(LitemallLog.Column column) { method andAddTimeNotEqualTo (line 1350) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1361) | public Criteria andAddTimeNotEqualToColumn(LitemallLog.Column column) { method andAddTimeGreaterThan (line 1366) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1377) | public Criteria andAddTimeGreaterThanColumn(LitemallLog.Column colum... method andAddTimeGreaterThanOrEqualTo (line 1382) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1393) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallLog.Col... method andAddTimeLessThan (line 1398) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1409) | public Criteria andAddTimeLessThanColumn(LitemallLog.Column column) { method andAddTimeLessThanOrEqualTo (line 1414) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1425) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallLog.Column... method andAddTimeIn (line 1430) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1435) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1440) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1445) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1450) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1455) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1460) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1471) | public Criteria andUpdateTimeEqualToColumn(LitemallLog.Column column) { method andUpdateTimeNotEqualTo (line 1476) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1487) | public Criteria andUpdateTimeNotEqualToColumn(LitemallLog.Column col... method andUpdateTimeGreaterThan (line 1492) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1503) | public Criteria andUpdateTimeGreaterThanColumn(LitemallLog.Column co... method andUpdateTimeGreaterThanOrEqualTo (line 1508) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1519) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallLog.... method andUpdateTimeLessThan (line 1524) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1535) | public Criteria andUpdateTimeLessThanColumn(LitemallLog.Column colum... method andUpdateTimeLessThanOrEqualTo (line 1540) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1551) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallLog.Col... method andUpdateTimeIn (line 1556) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1561) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1566) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1571) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1576) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1581) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1586) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1597) | public Criteria andDeletedEqualToColumn(LitemallLog.Column column) { method andDeletedNotEqualTo (line 1602) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1613) | public Criteria andDeletedNotEqualToColumn(LitemallLog.Column column) { method andDeletedGreaterThan (line 1618) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1629) | public Criteria andDeletedGreaterThanColumn(LitemallLog.Column colum... method andDeletedGreaterThanOrEqualTo (line 1634) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1645) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallLog.Col... method andDeletedLessThan (line 1650) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1661) | public Criteria andDeletedLessThanColumn(LitemallLog.Column column) { method andDeletedLessThanOrEqualTo (line 1666) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1677) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallLog.Column... method andDeletedIn (line 1682) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1687) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1692) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1697) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1709) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1724) | protected Criteria(LitemallLogExample example) { method example (line 1735) | public LitemallLogExample example() { method andIf (line 1745) | @Deprecated method when (line 1759) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1772) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1787) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1791) | @Deprecated method add (line 1799) | Criteria add(Criteria add); class Criterion (line 1809) | public static class Criterion { method getCondition (line 1826) | public String getCondition() { method getValue (line 1830) | public Object getValue() { method getSecondValue (line 1834) | public Object getSecondValue() { method isNoValue (line 1838) | public boolean isNoValue() { method isSingleValue (line 1842) | public boolean isSingleValue() { method isBetweenValue (line 1846) | public boolean isBetweenValue() { method isListValue (line 1850) | public boolean isListValue() { method getTypeHandler (line 1854) | public String getTypeHandler() { method Criterion (line 1858) | protected Criterion(String condition) { method Criterion (line 1865) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1877) | protected Criterion(String condition, Object value) { method Criterion (line 1881) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1890) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1895) | public interface ICriteriaWhen { method criteria (line 1902) | void criteria(Criteria criteria); type IExampleWhen (line 1905) | public interface IExampleWhen { method example (line 1912) | void example(org.linlinjava.litemall.db.domain.LitemallLogExample ex... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallNotice.java class LitemallNotice (line 7) | public class LitemallNotice { method getId (line 95) | public Integer getId() { method setId (line 107) | public void setId(Integer id) { method getTitle (line 119) | public String getTitle() { method setTitle (line 131) | public void setTitle(String title) { method getContent (line 143) | public String getContent() { method setContent (line 155) | public void setContent(String content) { method getAdminId (line 167) | public Integer getAdminId() { method setAdminId (line 179) | public void setAdminId(Integer adminId) { method getAddTime (line 191) | public LocalDateTime getAddTime() { method setAddTime (line 203) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 215) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 227) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 237) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 249) | public Boolean getDeleted() { method setDeleted (line 261) | public void setDeleted(Boolean deleted) { method toString (line 271) | @Override method equals (line 296) | @Override method hashCode (line 323) | @Override type Deleted (line 343) | public enum Deleted { method Deleted (line 369) | Deleted(Boolean value, String name) { method getValue (line 380) | public Boolean getValue() { method value (line 390) | public Boolean value() { method getName (line 400) | public String getName() { type Column (line 411) | public enum Column { method value (line 474) | public String value() { method getValue (line 484) | public String getValue() { method getJavaProperty (line 494) | public String getJavaProperty() { method getJdbcType (line 504) | public String getJdbcType() { method Column (line 514) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 527) | public String desc() { method asc (line 537) | public String asc() { method excludes (line 547) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 561) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 575) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallNoticeAdmin.java class LitemallNoticeAdmin (line 7) | public class LitemallNoticeAdmin { method getId (line 104) | public Integer getId() { method setId (line 116) | public void setId(Integer id) { method getNoticeId (line 128) | public Integer getNoticeId() { method setNoticeId (line 140) | public void setNoticeId(Integer noticeId) { method getNoticeTitle (line 152) | public String getNoticeTitle() { method setNoticeTitle (line 164) | public void setNoticeTitle(String noticeTitle) { method getAdminId (line 176) | public Integer getAdminId() { method setAdminId (line 188) | public void setAdminId(Integer adminId) { method getReadTime (line 200) | public LocalDateTime getReadTime() { method setReadTime (line 212) | public void setReadTime(LocalDateTime readTime) { method getAddTime (line 224) | public LocalDateTime getAddTime() { method setAddTime (line 236) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 248) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 260) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 270) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 282) | public Boolean getDeleted() { method setDeleted (line 294) | public void setDeleted(Boolean deleted) { method toString (line 304) | @Override method equals (line 330) | @Override method hashCode (line 358) | @Override type Deleted (line 379) | public enum Deleted { method Deleted (line 405) | Deleted(Boolean value, String name) { method getValue (line 416) | public Boolean getValue() { method value (line 426) | public Boolean value() { method getName (line 436) | public String getName() { type Column (line 447) | public enum Column { method value (line 511) | public String value() { method getValue (line 521) | public String getValue() { method getJavaProperty (line 531) | public String getJavaProperty() { method getJdbcType (line 541) | public String getJdbcType() { method Column (line 551) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 564) | public String desc() { method asc (line 574) | public String asc() { method excludes (line 584) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 598) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 612) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallNoticeAdminExample.java class LitemallNoticeAdminExample (line 7) | public class LitemallNoticeAdminExample { method LitemallNoticeAdminExample (line 38) | public LitemallNoticeAdminExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallNoticeAdminExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallNoticeAdminExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallNoticeAdminExample when(boolean condition, IExampleWhen... method when (line 210) | public LitemallNoticeAdminExample when(boolean condition, IExampleWhen... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallNoticeAdmin.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallNoticeAdmin.Column col... method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallNoticeAdmin.Column co... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallNoticeAdmin.... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallNoticeAdmin.Column colum... method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallNoticeAdmin.Col... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andNoticeIdIsNull (line 392) | public Criteria andNoticeIdIsNull() { method andNoticeIdIsNotNull (line 397) | public Criteria andNoticeIdIsNotNull() { method andNoticeIdEqualTo (line 402) | public Criteria andNoticeIdEqualTo(Integer value) { method andNoticeIdEqualToColumn (line 413) | public Criteria andNoticeIdEqualToColumn(LitemallNoticeAdmin.Column ... method andNoticeIdNotEqualTo (line 418) | public Criteria andNoticeIdNotEqualTo(Integer value) { method andNoticeIdNotEqualToColumn (line 429) | public Criteria andNoticeIdNotEqualToColumn(LitemallNoticeAdmin.Colu... method andNoticeIdGreaterThan (line 434) | public Criteria andNoticeIdGreaterThan(Integer value) { method andNoticeIdGreaterThanColumn (line 445) | public Criteria andNoticeIdGreaterThanColumn(LitemallNoticeAdmin.Col... method andNoticeIdGreaterThanOrEqualTo (line 450) | public Criteria andNoticeIdGreaterThanOrEqualTo(Integer value) { method andNoticeIdGreaterThanOrEqualToColumn (line 461) | public Criteria andNoticeIdGreaterThanOrEqualToColumn(LitemallNotice... method andNoticeIdLessThan (line 466) | public Criteria andNoticeIdLessThan(Integer value) { method andNoticeIdLessThanColumn (line 477) | public Criteria andNoticeIdLessThanColumn(LitemallNoticeAdmin.Column... method andNoticeIdLessThanOrEqualTo (line 482) | public Criteria andNoticeIdLessThanOrEqualTo(Integer value) { method andNoticeIdLessThanOrEqualToColumn (line 493) | public Criteria andNoticeIdLessThanOrEqualToColumn(LitemallNoticeAdm... method andNoticeIdIn (line 498) | public Criteria andNoticeIdIn(List values) { method andNoticeIdNotIn (line 503) | public Criteria andNoticeIdNotIn(List values) { method andNoticeIdBetween (line 508) | public Criteria andNoticeIdBetween(Integer value1, Integer value2) { method andNoticeIdNotBetween (line 513) | public Criteria andNoticeIdNotBetween(Integer value1, Integer value2) { method andNoticeTitleIsNull (line 518) | public Criteria andNoticeTitleIsNull() { method andNoticeTitleIsNotNull (line 523) | public Criteria andNoticeTitleIsNotNull() { method andNoticeTitleEqualTo (line 528) | public Criteria andNoticeTitleEqualTo(String value) { method andNoticeTitleEqualToColumn (line 539) | public Criteria andNoticeTitleEqualToColumn(LitemallNoticeAdmin.Colu... method andNoticeTitleNotEqualTo (line 544) | public Criteria andNoticeTitleNotEqualTo(String value) { method andNoticeTitleNotEqualToColumn (line 555) | public Criteria andNoticeTitleNotEqualToColumn(LitemallNoticeAdmin.C... method andNoticeTitleGreaterThan (line 560) | public Criteria andNoticeTitleGreaterThan(String value) { method andNoticeTitleGreaterThanColumn (line 571) | public Criteria andNoticeTitleGreaterThanColumn(LitemallNoticeAdmin.... method andNoticeTitleGreaterThanOrEqualTo (line 576) | public Criteria andNoticeTitleGreaterThanOrEqualTo(String value) { method andNoticeTitleGreaterThanOrEqualToColumn (line 587) | public Criteria andNoticeTitleGreaterThanOrEqualToColumn(LitemallNot... method andNoticeTitleLessThan (line 592) | public Criteria andNoticeTitleLessThan(String value) { method andNoticeTitleLessThanColumn (line 603) | public Criteria andNoticeTitleLessThanColumn(LitemallNoticeAdmin.Col... method andNoticeTitleLessThanOrEqualTo (line 608) | public Criteria andNoticeTitleLessThanOrEqualTo(String value) { method andNoticeTitleLessThanOrEqualToColumn (line 619) | public Criteria andNoticeTitleLessThanOrEqualToColumn(LitemallNotice... method andNoticeTitleLike (line 624) | public Criteria andNoticeTitleLike(String value) { method andNoticeTitleNotLike (line 629) | public Criteria andNoticeTitleNotLike(String value) { method andNoticeTitleIn (line 634) | public Criteria andNoticeTitleIn(List values) { method andNoticeTitleNotIn (line 639) | public Criteria andNoticeTitleNotIn(List values) { method andNoticeTitleBetween (line 644) | public Criteria andNoticeTitleBetween(String value1, String value2) { method andNoticeTitleNotBetween (line 649) | public Criteria andNoticeTitleNotBetween(String value1, String value... method andAdminIdIsNull (line 654) | public Criteria andAdminIdIsNull() { method andAdminIdIsNotNull (line 659) | public Criteria andAdminIdIsNotNull() { method andAdminIdEqualTo (line 664) | public Criteria andAdminIdEqualTo(Integer value) { method andAdminIdEqualToColumn (line 675) | public Criteria andAdminIdEqualToColumn(LitemallNoticeAdmin.Column c... method andAdminIdNotEqualTo (line 680) | public Criteria andAdminIdNotEqualTo(Integer value) { method andAdminIdNotEqualToColumn (line 691) | public Criteria andAdminIdNotEqualToColumn(LitemallNoticeAdmin.Colum... method andAdminIdGreaterThan (line 696) | public Criteria andAdminIdGreaterThan(Integer value) { method andAdminIdGreaterThanColumn (line 707) | public Criteria andAdminIdGreaterThanColumn(LitemallNoticeAdmin.Colu... method andAdminIdGreaterThanOrEqualTo (line 712) | public Criteria andAdminIdGreaterThanOrEqualTo(Integer value) { method andAdminIdGreaterThanOrEqualToColumn (line 723) | public Criteria andAdminIdGreaterThanOrEqualToColumn(LitemallNoticeA... method andAdminIdLessThan (line 728) | public Criteria andAdminIdLessThan(Integer value) { method andAdminIdLessThanColumn (line 739) | public Criteria andAdminIdLessThanColumn(LitemallNoticeAdmin.Column ... method andAdminIdLessThanOrEqualTo (line 744) | public Criteria andAdminIdLessThanOrEqualTo(Integer value) { method andAdminIdLessThanOrEqualToColumn (line 755) | public Criteria andAdminIdLessThanOrEqualToColumn(LitemallNoticeAdmi... method andAdminIdIn (line 760) | public Criteria andAdminIdIn(List values) { method andAdminIdNotIn (line 765) | public Criteria andAdminIdNotIn(List values) { method andAdminIdBetween (line 770) | public Criteria andAdminIdBetween(Integer value1, Integer value2) { method andAdminIdNotBetween (line 775) | public Criteria andAdminIdNotBetween(Integer value1, Integer value2) { method andReadTimeIsNull (line 780) | public Criteria andReadTimeIsNull() { method andReadTimeIsNotNull (line 785) | public Criteria andReadTimeIsNotNull() { method andReadTimeEqualTo (line 790) | public Criteria andReadTimeEqualTo(LocalDateTime value) { method andReadTimeEqualToColumn (line 801) | public Criteria andReadTimeEqualToColumn(LitemallNoticeAdmin.Column ... method andReadTimeNotEqualTo (line 806) | public Criteria andReadTimeNotEqualTo(LocalDateTime value) { method andReadTimeNotEqualToColumn (line 817) | public Criteria andReadTimeNotEqualToColumn(LitemallNoticeAdmin.Colu... method andReadTimeGreaterThan (line 822) | public Criteria andReadTimeGreaterThan(LocalDateTime value) { method andReadTimeGreaterThanColumn (line 833) | public Criteria andReadTimeGreaterThanColumn(LitemallNoticeAdmin.Col... method andReadTimeGreaterThanOrEqualTo (line 838) | public Criteria andReadTimeGreaterThanOrEqualTo(LocalDateTime value) { method andReadTimeGreaterThanOrEqualToColumn (line 849) | public Criteria andReadTimeGreaterThanOrEqualToColumn(LitemallNotice... method andReadTimeLessThan (line 854) | public Criteria andReadTimeLessThan(LocalDateTime value) { method andReadTimeLessThanColumn (line 865) | public Criteria andReadTimeLessThanColumn(LitemallNoticeAdmin.Column... method andReadTimeLessThanOrEqualTo (line 870) | public Criteria andReadTimeLessThanOrEqualTo(LocalDateTime value) { method andReadTimeLessThanOrEqualToColumn (line 881) | public Criteria andReadTimeLessThanOrEqualToColumn(LitemallNoticeAdm... method andReadTimeIn (line 886) | public Criteria andReadTimeIn(List values) { method andReadTimeNotIn (line 891) | public Criteria andReadTimeNotIn(List values) { method andReadTimeBetween (line 896) | public Criteria andReadTimeBetween(LocalDateTime value1, LocalDateTi... method andReadTimeNotBetween (line 901) | public Criteria andReadTimeNotBetween(LocalDateTime value1, LocalDat... method andAddTimeIsNull (line 906) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 911) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 916) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 927) | public Criteria andAddTimeEqualToColumn(LitemallNoticeAdmin.Column c... method andAddTimeNotEqualTo (line 932) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 943) | public Criteria andAddTimeNotEqualToColumn(LitemallNoticeAdmin.Colum... method andAddTimeGreaterThan (line 948) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 959) | public Criteria andAddTimeGreaterThanColumn(LitemallNoticeAdmin.Colu... method andAddTimeGreaterThanOrEqualTo (line 964) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 975) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallNoticeA... method andAddTimeLessThan (line 980) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 991) | public Criteria andAddTimeLessThanColumn(LitemallNoticeAdmin.Column ... method andAddTimeLessThanOrEqualTo (line 996) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1007) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallNoticeAdmi... method andAddTimeIn (line 1012) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1017) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1022) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1027) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1032) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1037) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1042) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1053) | public Criteria andUpdateTimeEqualToColumn(LitemallNoticeAdmin.Colum... method andUpdateTimeNotEqualTo (line 1058) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1069) | public Criteria andUpdateTimeNotEqualToColumn(LitemallNoticeAdmin.Co... method andUpdateTimeGreaterThan (line 1074) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1085) | public Criteria andUpdateTimeGreaterThanColumn(LitemallNoticeAdmin.C... method andUpdateTimeGreaterThanOrEqualTo (line 1090) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1101) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallNoti... method andUpdateTimeLessThan (line 1106) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1117) | public Criteria andUpdateTimeLessThanColumn(LitemallNoticeAdmin.Colu... method andUpdateTimeLessThanOrEqualTo (line 1122) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1133) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallNoticeA... method andUpdateTimeIn (line 1138) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1143) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1148) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1153) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1158) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1163) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1168) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1179) | public Criteria andDeletedEqualToColumn(LitemallNoticeAdmin.Column c... method andDeletedNotEqualTo (line 1184) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1195) | public Criteria andDeletedNotEqualToColumn(LitemallNoticeAdmin.Colum... method andDeletedGreaterThan (line 1200) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1211) | public Criteria andDeletedGreaterThanColumn(LitemallNoticeAdmin.Colu... method andDeletedGreaterThanOrEqualTo (line 1216) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1227) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallNoticeA... method andDeletedLessThan (line 1232) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1243) | public Criteria andDeletedLessThanColumn(LitemallNoticeAdmin.Column ... method andDeletedLessThanOrEqualTo (line 1248) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1259) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallNoticeAdmi... method andDeletedIn (line 1264) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1269) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1274) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1279) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1291) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1306) | protected Criteria(LitemallNoticeAdminExample example) { method example (line 1317) | public LitemallNoticeAdminExample example() { method andIf (line 1327) | @Deprecated method when (line 1341) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1354) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1369) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1373) | @Deprecated method add (line 1381) | Criteria add(Criteria add); class Criterion (line 1391) | public static class Criterion { method getCondition (line 1408) | public String getCondition() { method getValue (line 1412) | public Object getValue() { method getSecondValue (line 1416) | public Object getSecondValue() { method isNoValue (line 1420) | public boolean isNoValue() { method isSingleValue (line 1424) | public boolean isSingleValue() { method isBetweenValue (line 1428) | public boolean isBetweenValue() { method isListValue (line 1432) | public boolean isListValue() { method getTypeHandler (line 1436) | public String getTypeHandler() { method Criterion (line 1440) | protected Criterion(String condition) { method Criterion (line 1447) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1459) | protected Criterion(String condition, Object value) { method Criterion (line 1463) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1472) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1477) | public interface ICriteriaWhen { method criteria (line 1484) | void criteria(Criteria criteria); type IExampleWhen (line 1487) | public interface IExampleWhen { method example (line 1494) | void example(org.linlinjava.litemall.db.domain.LitemallNoticeAdminEx... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallNoticeExample.java class LitemallNoticeExample (line 7) | public class LitemallNoticeExample { method LitemallNoticeExample (line 38) | public LitemallNoticeExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallNoticeExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallNoticeExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallNoticeExample when(boolean condition, IExampleWhen then) { method when (line 210) | public LitemallNoticeExample when(boolean condition, IExampleWhen then... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallNotice.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallNotice.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallNotice.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallNotice.Colum... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallNotice.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallNotice.Column c... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andTitleIsNull (line 392) | public Criteria andTitleIsNull() { method andTitleIsNotNull (line 397) | public Criteria andTitleIsNotNull() { method andTitleEqualTo (line 402) | public Criteria andTitleEqualTo(String value) { method andTitleEqualToColumn (line 413) | public Criteria andTitleEqualToColumn(LitemallNotice.Column column) { method andTitleNotEqualTo (line 418) | public Criteria andTitleNotEqualTo(String value) { method andTitleNotEqualToColumn (line 429) | public Criteria andTitleNotEqualToColumn(LitemallNotice.Column colum... method andTitleGreaterThan (line 434) | public Criteria andTitleGreaterThan(String value) { method andTitleGreaterThanColumn (line 445) | public Criteria andTitleGreaterThanColumn(LitemallNotice.Column colu... method andTitleGreaterThanOrEqualTo (line 450) | public Criteria andTitleGreaterThanOrEqualTo(String value) { method andTitleGreaterThanOrEqualToColumn (line 461) | public Criteria andTitleGreaterThanOrEqualToColumn(LitemallNotice.Co... method andTitleLessThan (line 466) | public Criteria andTitleLessThan(String value) { method andTitleLessThanColumn (line 477) | public Criteria andTitleLessThanColumn(LitemallNotice.Column column) { method andTitleLessThanOrEqualTo (line 482) | public Criteria andTitleLessThanOrEqualTo(String value) { method andTitleLessThanOrEqualToColumn (line 493) | public Criteria andTitleLessThanOrEqualToColumn(LitemallNotice.Colum... method andTitleLike (line 498) | public Criteria andTitleLike(String value) { method andTitleNotLike (line 503) | public Criteria andTitleNotLike(String value) { method andTitleIn (line 508) | public Criteria andTitleIn(List values) { method andTitleNotIn (line 513) | public Criteria andTitleNotIn(List values) { method andTitleBetween (line 518) | public Criteria andTitleBetween(String value1, String value2) { method andTitleNotBetween (line 523) | public Criteria andTitleNotBetween(String value1, String value2) { method andContentIsNull (line 528) | public Criteria andContentIsNull() { method andContentIsNotNull (line 533) | public Criteria andContentIsNotNull() { method andContentEqualTo (line 538) | public Criteria andContentEqualTo(String value) { method andContentEqualToColumn (line 549) | public Criteria andContentEqualToColumn(LitemallNotice.Column column) { method andContentNotEqualTo (line 554) | public Criteria andContentNotEqualTo(String value) { method andContentNotEqualToColumn (line 565) | public Criteria andContentNotEqualToColumn(LitemallNotice.Column col... method andContentGreaterThan (line 570) | public Criteria andContentGreaterThan(String value) { method andContentGreaterThanColumn (line 581) | public Criteria andContentGreaterThanColumn(LitemallNotice.Column co... method andContentGreaterThanOrEqualTo (line 586) | public Criteria andContentGreaterThanOrEqualTo(String value) { method andContentGreaterThanOrEqualToColumn (line 597) | public Criteria andContentGreaterThanOrEqualToColumn(LitemallNotice.... method andContentLessThan (line 602) | public Criteria andContentLessThan(String value) { method andContentLessThanColumn (line 613) | public Criteria andContentLessThanColumn(LitemallNotice.Column colum... method andContentLessThanOrEqualTo (line 618) | public Criteria andContentLessThanOrEqualTo(String value) { method andContentLessThanOrEqualToColumn (line 629) | public Criteria andContentLessThanOrEqualToColumn(LitemallNotice.Col... method andContentLike (line 634) | public Criteria andContentLike(String value) { method andContentNotLike (line 639) | public Criteria andContentNotLike(String value) { method andContentIn (line 644) | public Criteria andContentIn(List values) { method andContentNotIn (line 649) | public Criteria andContentNotIn(List values) { method andContentBetween (line 654) | public Criteria andContentBetween(String value1, String value2) { method andContentNotBetween (line 659) | public Criteria andContentNotBetween(String value1, String value2) { method andAdminIdIsNull (line 664) | public Criteria andAdminIdIsNull() { method andAdminIdIsNotNull (line 669) | public Criteria andAdminIdIsNotNull() { method andAdminIdEqualTo (line 674) | public Criteria andAdminIdEqualTo(Integer value) { method andAdminIdEqualToColumn (line 685) | public Criteria andAdminIdEqualToColumn(LitemallNotice.Column column) { method andAdminIdNotEqualTo (line 690) | public Criteria andAdminIdNotEqualTo(Integer value) { method andAdminIdNotEqualToColumn (line 701) | public Criteria andAdminIdNotEqualToColumn(LitemallNotice.Column col... method andAdminIdGreaterThan (line 706) | public Criteria andAdminIdGreaterThan(Integer value) { method andAdminIdGreaterThanColumn (line 717) | public Criteria andAdminIdGreaterThanColumn(LitemallNotice.Column co... method andAdminIdGreaterThanOrEqualTo (line 722) | public Criteria andAdminIdGreaterThanOrEqualTo(Integer value) { method andAdminIdGreaterThanOrEqualToColumn (line 733) | public Criteria andAdminIdGreaterThanOrEqualToColumn(LitemallNotice.... method andAdminIdLessThan (line 738) | public Criteria andAdminIdLessThan(Integer value) { method andAdminIdLessThanColumn (line 749) | public Criteria andAdminIdLessThanColumn(LitemallNotice.Column colum... method andAdminIdLessThanOrEqualTo (line 754) | public Criteria andAdminIdLessThanOrEqualTo(Integer value) { method andAdminIdLessThanOrEqualToColumn (line 765) | public Criteria andAdminIdLessThanOrEqualToColumn(LitemallNotice.Col... method andAdminIdIn (line 770) | public Criteria andAdminIdIn(List values) { method andAdminIdNotIn (line 775) | public Criteria andAdminIdNotIn(List values) { method andAdminIdBetween (line 780) | public Criteria andAdminIdBetween(Integer value1, Integer value2) { method andAdminIdNotBetween (line 785) | public Criteria andAdminIdNotBetween(Integer value1, Integer value2) { method andAddTimeIsNull (line 790) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 795) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 800) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 811) | public Criteria andAddTimeEqualToColumn(LitemallNotice.Column column) { method andAddTimeNotEqualTo (line 816) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 827) | public Criteria andAddTimeNotEqualToColumn(LitemallNotice.Column col... method andAddTimeGreaterThan (line 832) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 843) | public Criteria andAddTimeGreaterThanColumn(LitemallNotice.Column co... method andAddTimeGreaterThanOrEqualTo (line 848) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 859) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallNotice.... method andAddTimeLessThan (line 864) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 875) | public Criteria andAddTimeLessThanColumn(LitemallNotice.Column colum... method andAddTimeLessThanOrEqualTo (line 880) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 891) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallNotice.Col... method andAddTimeIn (line 896) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 901) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 906) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 911) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 916) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 921) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 926) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 937) | public Criteria andUpdateTimeEqualToColumn(LitemallNotice.Column col... method andUpdateTimeNotEqualTo (line 942) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 953) | public Criteria andUpdateTimeNotEqualToColumn(LitemallNotice.Column ... method andUpdateTimeGreaterThan (line 958) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 969) | public Criteria andUpdateTimeGreaterThanColumn(LitemallNotice.Column... method andUpdateTimeGreaterThanOrEqualTo (line 974) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 985) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallNoti... method andUpdateTimeLessThan (line 990) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1001) | public Criteria andUpdateTimeLessThanColumn(LitemallNotice.Column co... method andUpdateTimeLessThanOrEqualTo (line 1006) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1017) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallNotice.... method andUpdateTimeIn (line 1022) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1027) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1032) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1037) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1042) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1047) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1052) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1063) | public Criteria andDeletedEqualToColumn(LitemallNotice.Column column) { method andDeletedNotEqualTo (line 1068) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1079) | public Criteria andDeletedNotEqualToColumn(LitemallNotice.Column col... method andDeletedGreaterThan (line 1084) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1095) | public Criteria andDeletedGreaterThanColumn(LitemallNotice.Column co... method andDeletedGreaterThanOrEqualTo (line 1100) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1111) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallNotice.... method andDeletedLessThan (line 1116) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1127) | public Criteria andDeletedLessThanColumn(LitemallNotice.Column colum... method andDeletedLessThanOrEqualTo (line 1132) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1143) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallNotice.Col... method andDeletedIn (line 1148) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1153) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1158) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1163) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1175) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1190) | protected Criteria(LitemallNoticeExample example) { method example (line 1201) | public LitemallNoticeExample example() { method andIf (line 1211) | @Deprecated method when (line 1225) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1238) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1253) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1257) | @Deprecated method add (line 1265) | Criteria add(Criteria add); class Criterion (line 1275) | public static class Criterion { method getCondition (line 1292) | public String getCondition() { method getValue (line 1296) | public Object getValue() { method getSecondValue (line 1300) | public Object getSecondValue() { method isNoValue (line 1304) | public boolean isNoValue() { method isSingleValue (line 1308) | public boolean isSingleValue() { method isBetweenValue (line 1312) | public boolean isBetweenValue() { method isListValue (line 1316) | public boolean isListValue() { method getTypeHandler (line 1320) | public String getTypeHandler() { method Criterion (line 1324) | protected Criterion(String condition) { method Criterion (line 1331) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1343) | protected Criterion(String condition, Object value) { method Criterion (line 1347) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1356) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1361) | public interface ICriteriaWhen { method criteria (line 1368) | void criteria(Criteria criteria); type IExampleWhen (line 1371) | public interface IExampleWhen { method example (line 1378) | void example(org.linlinjava.litemall.db.domain.LitemallNoticeExample... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallOrder.java class LitemallOrder (line 8) | public class LitemallOrder { method getId (line 312) | public Integer getId() { method setId (line 324) | public void setId(Integer id) { method getUserId (line 336) | public Integer getUserId() { method setUserId (line 348) | public void setUserId(Integer userId) { method getOrderSn (line 360) | public String getOrderSn() { method setOrderSn (line 372) | public void setOrderSn(String orderSn) { method getOrderStatus (line 384) | public Short getOrderStatus() { method setOrderStatus (line 396) | public void setOrderStatus(Short orderStatus) { method getAftersaleStatus (line 408) | public Short getAftersaleStatus() { method setAftersaleStatus (line 420) | public void setAftersaleStatus(Short aftersaleStatus) { method getConsignee (line 432) | public String getConsignee() { method setConsignee (line 444) | public void setConsignee(String consignee) { method getMobile (line 456) | public String getMobile() { method setMobile (line 468) | public void setMobile(String mobile) { method getAddress (line 480) | public String getAddress() { method setAddress (line 492) | public void setAddress(String address) { method getMessage (line 504) | public String getMessage() { method setMessage (line 516) | public void setMessage(String message) { method getGoodsPrice (line 528) | public BigDecimal getGoodsPrice() { method setGoodsPrice (line 540) | public void setGoodsPrice(BigDecimal goodsPrice) { method getFreightPrice (line 552) | public BigDecimal getFreightPrice() { method setFreightPrice (line 564) | public void setFreightPrice(BigDecimal freightPrice) { method getCouponPrice (line 576) | public BigDecimal getCouponPrice() { method setCouponPrice (line 588) | public void setCouponPrice(BigDecimal couponPrice) { method getIntegralPrice (line 600) | public BigDecimal getIntegralPrice() { method setIntegralPrice (line 612) | public void setIntegralPrice(BigDecimal integralPrice) { method getGrouponPrice (line 624) | public BigDecimal getGrouponPrice() { method setGrouponPrice (line 636) | public void setGrouponPrice(BigDecimal grouponPrice) { method getOrderPrice (line 648) | public BigDecimal getOrderPrice() { method setOrderPrice (line 660) | public void setOrderPrice(BigDecimal orderPrice) { method getActualPrice (line 672) | public BigDecimal getActualPrice() { method setActualPrice (line 684) | public void setActualPrice(BigDecimal actualPrice) { method getPayId (line 696) | public String getPayId() { method setPayId (line 708) | public void setPayId(String payId) { method getPayTime (line 720) | public LocalDateTime getPayTime() { method setPayTime (line 732) | public void setPayTime(LocalDateTime payTime) { method getShipSn (line 744) | public String getShipSn() { method setShipSn (line 756) | public void setShipSn(String shipSn) { method getShipChannel (line 768) | public String getShipChannel() { method setShipChannel (line 780) | public void setShipChannel(String shipChannel) { method getShipTime (line 792) | public LocalDateTime getShipTime() { method setShipTime (line 804) | public void setShipTime(LocalDateTime shipTime) { method getRefundAmount (line 816) | public BigDecimal getRefundAmount() { method setRefundAmount (line 828) | public void setRefundAmount(BigDecimal refundAmount) { method getRefundType (line 840) | public String getRefundType() { method setRefundType (line 852) | public void setRefundType(String refundType) { method getRefundContent (line 864) | public String getRefundContent() { method setRefundContent (line 876) | public void setRefundContent(String refundContent) { method getRefundTime (line 888) | public LocalDateTime getRefundTime() { method setRefundTime (line 900) | public void setRefundTime(LocalDateTime refundTime) { method getConfirmTime (line 912) | public LocalDateTime getConfirmTime() { method setConfirmTime (line 924) | public void setConfirmTime(LocalDateTime confirmTime) { method getComments (line 936) | public Short getComments() { method setComments (line 948) | public void setComments(Short comments) { method getEndTime (line 960) | public LocalDateTime getEndTime() { method setEndTime (line 972) | public void setEndTime(LocalDateTime endTime) { method getAddTime (line 984) | public LocalDateTime getAddTime() { method setAddTime (line 996) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 1008) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 1020) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 1030) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 1042) | public Boolean getDeleted() { method setDeleted (line 1054) | public void setDeleted(Boolean deleted) { method toString (line 1064) | @Override method equals (line 1113) | @Override method hashCode (line 1164) | @Override type Deleted (line 1208) | public enum Deleted { method Deleted (line 1234) | Deleted(Boolean value, String name) { method getValue (line 1245) | public Boolean getValue() { method value (line 1255) | public Boolean value() { method getName (line 1265) | public String getName() { type Column (line 1276) | public enum Column { method value (line 1363) | public String value() { method getValue (line 1373) | public String getValue() { method getJavaProperty (line 1383) | public String getJavaProperty() { method getJdbcType (line 1393) | public String getJdbcType() { method Column (line 1403) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 1416) | public String desc() { method asc (line 1426) | public String asc() { method excludes (line 1436) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 1450) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 1464) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallOrderExample.java class LitemallOrderExample (line 8) | public class LitemallOrderExample { method LitemallOrderExample (line 39) | public LitemallOrderExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallOrderExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallOrderExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallOrderExample when(boolean condition, IExampleWhen then) { method when (line 211) | public LitemallOrderExample when(boolean condition, IExampleWhen then,... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 229) | protected GeneratedCriteria() { method isValid (line 234) | public boolean isValid() { method getAllCriteria (line 238) | public List getAllCriteria() { method getCriteria (line 242) | public List getCriteria() { method addCriterion (line 246) | protected void addCriterion(String condition) { method addCriterion (line 253) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 260) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 267) | public Criteria andIdIsNull() { method andIdIsNotNull (line 272) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 277) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 288) | public Criteria andIdEqualToColumn(LitemallOrder.Column column) { method andIdNotEqualTo (line 293) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 304) | public Criteria andIdNotEqualToColumn(LitemallOrder.Column column) { method andIdGreaterThan (line 309) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 320) | public Criteria andIdGreaterThanColumn(LitemallOrder.Column column) { method andIdGreaterThanOrEqualTo (line 325) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 336) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallOrder.Column... method andIdLessThan (line 341) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 352) | public Criteria andIdLessThanColumn(LitemallOrder.Column column) { method andIdLessThanOrEqualTo (line 357) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 368) | public Criteria andIdLessThanOrEqualToColumn(LitemallOrder.Column co... method andIdIn (line 373) | public Criteria andIdIn(List values) { method andIdNotIn (line 378) | public Criteria andIdNotIn(List values) { method andIdBetween (line 383) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 388) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 393) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 398) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 403) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 414) | public Criteria andUserIdEqualToColumn(LitemallOrder.Column column) { method andUserIdNotEqualTo (line 419) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 430) | public Criteria andUserIdNotEqualToColumn(LitemallOrder.Column colum... method andUserIdGreaterThan (line 435) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 446) | public Criteria andUserIdGreaterThanColumn(LitemallOrder.Column colu... method andUserIdGreaterThanOrEqualTo (line 451) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 462) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallOrder.Co... method andUserIdLessThan (line 467) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 478) | public Criteria andUserIdLessThanColumn(LitemallOrder.Column column) { method andUserIdLessThanOrEqualTo (line 483) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 494) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallOrder.Colum... method andUserIdIn (line 499) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 504) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 509) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 514) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andOrderSnIsNull (line 519) | public Criteria andOrderSnIsNull() { method andOrderSnIsNotNull (line 524) | public Criteria andOrderSnIsNotNull() { method andOrderSnEqualTo (line 529) | public Criteria andOrderSnEqualTo(String value) { method andOrderSnEqualToColumn (line 540) | public Criteria andOrderSnEqualToColumn(LitemallOrder.Column column) { method andOrderSnNotEqualTo (line 545) | public Criteria andOrderSnNotEqualTo(String value) { method andOrderSnNotEqualToColumn (line 556) | public Criteria andOrderSnNotEqualToColumn(LitemallOrder.Column colu... method andOrderSnGreaterThan (line 561) | public Criteria andOrderSnGreaterThan(String value) { method andOrderSnGreaterThanColumn (line 572) | public Criteria andOrderSnGreaterThanColumn(LitemallOrder.Column col... method andOrderSnGreaterThanOrEqualTo (line 577) | public Criteria andOrderSnGreaterThanOrEqualTo(String value) { method andOrderSnGreaterThanOrEqualToColumn (line 588) | public Criteria andOrderSnGreaterThanOrEqualToColumn(LitemallOrder.C... method andOrderSnLessThan (line 593) | public Criteria andOrderSnLessThan(String value) { method andOrderSnLessThanColumn (line 604) | public Criteria andOrderSnLessThanColumn(LitemallOrder.Column column) { method andOrderSnLessThanOrEqualTo (line 609) | public Criteria andOrderSnLessThanOrEqualTo(String value) { method andOrderSnLessThanOrEqualToColumn (line 620) | public Criteria andOrderSnLessThanOrEqualToColumn(LitemallOrder.Colu... method andOrderSnLike (line 625) | public Criteria andOrderSnLike(String value) { method andOrderSnNotLike (line 630) | public Criteria andOrderSnNotLike(String value) { method andOrderSnIn (line 635) | public Criteria andOrderSnIn(List values) { method andOrderSnNotIn (line 640) | public Criteria andOrderSnNotIn(List values) { method andOrderSnBetween (line 645) | public Criteria andOrderSnBetween(String value1, String value2) { method andOrderSnNotBetween (line 650) | public Criteria andOrderSnNotBetween(String value1, String value2) { method andOrderStatusIsNull (line 655) | public Criteria andOrderStatusIsNull() { method andOrderStatusIsNotNull (line 660) | public Criteria andOrderStatusIsNotNull() { method andOrderStatusEqualTo (line 665) | public Criteria andOrderStatusEqualTo(Short value) { method andOrderStatusEqualToColumn (line 676) | public Criteria andOrderStatusEqualToColumn(LitemallOrder.Column col... method andOrderStatusNotEqualTo (line 681) | public Criteria andOrderStatusNotEqualTo(Short value) { method andOrderStatusNotEqualToColumn (line 692) | public Criteria andOrderStatusNotEqualToColumn(LitemallOrder.Column ... method andOrderStatusGreaterThan (line 697) | public Criteria andOrderStatusGreaterThan(Short value) { method andOrderStatusGreaterThanColumn (line 708) | public Criteria andOrderStatusGreaterThanColumn(LitemallOrder.Column... method andOrderStatusGreaterThanOrEqualTo (line 713) | public Criteria andOrderStatusGreaterThanOrEqualTo(Short value) { method andOrderStatusGreaterThanOrEqualToColumn (line 724) | public Criteria andOrderStatusGreaterThanOrEqualToColumn(LitemallOrd... method andOrderStatusLessThan (line 729) | public Criteria andOrderStatusLessThan(Short value) { method andOrderStatusLessThanColumn (line 740) | public Criteria andOrderStatusLessThanColumn(LitemallOrder.Column co... method andOrderStatusLessThanOrEqualTo (line 745) | public Criteria andOrderStatusLessThanOrEqualTo(Short value) { method andOrderStatusLessThanOrEqualToColumn (line 756) | public Criteria andOrderStatusLessThanOrEqualToColumn(LitemallOrder.... method andOrderStatusIn (line 761) | public Criteria andOrderStatusIn(List values) { method andOrderStatusNotIn (line 766) | public Criteria andOrderStatusNotIn(List values) { method andOrderStatusBetween (line 771) | public Criteria andOrderStatusBetween(Short value1, Short value2) { method andOrderStatusNotBetween (line 776) | public Criteria andOrderStatusNotBetween(Short value1, Short value2) { method andAftersaleStatusIsNull (line 781) | public Criteria andAftersaleStatusIsNull() { method andAftersaleStatusIsNotNull (line 786) | public Criteria andAftersaleStatusIsNotNull() { method andAftersaleStatusEqualTo (line 791) | public Criteria andAftersaleStatusEqualTo(Short value) { method andAftersaleStatusEqualToColumn (line 802) | public Criteria andAftersaleStatusEqualToColumn(LitemallOrder.Column... method andAftersaleStatusNotEqualTo (line 807) | public Criteria andAftersaleStatusNotEqualTo(Short value) { method andAftersaleStatusNotEqualToColumn (line 818) | public Criteria andAftersaleStatusNotEqualToColumn(LitemallOrder.Col... method andAftersaleStatusGreaterThan (line 823) | public Criteria andAftersaleStatusGreaterThan(Short value) { method andAftersaleStatusGreaterThanColumn (line 834) | public Criteria andAftersaleStatusGreaterThanColumn(LitemallOrder.Co... method andAftersaleStatusGreaterThanOrEqualTo (line 839) | public Criteria andAftersaleStatusGreaterThanOrEqualTo(Short value) { method andAftersaleStatusGreaterThanOrEqualToColumn (line 850) | public Criteria andAftersaleStatusGreaterThanOrEqualToColumn(Litemal... method andAftersaleStatusLessThan (line 855) | public Criteria andAftersaleStatusLessThan(Short value) { method andAftersaleStatusLessThanColumn (line 866) | public Criteria andAftersaleStatusLessThanColumn(LitemallOrder.Colum... method andAftersaleStatusLessThanOrEqualTo (line 871) | public Criteria andAftersaleStatusLessThanOrEqualTo(Short value) { method andAftersaleStatusLessThanOrEqualToColumn (line 882) | public Criteria andAftersaleStatusLessThanOrEqualToColumn(LitemallOr... method andAftersaleStatusIn (line 887) | public Criteria andAftersaleStatusIn(List values) { method andAftersaleStatusNotIn (line 892) | public Criteria andAftersaleStatusNotIn(List values) { method andAftersaleStatusBetween (line 897) | public Criteria andAftersaleStatusBetween(Short value1, Short value2) { method andAftersaleStatusNotBetween (line 902) | public Criteria andAftersaleStatusNotBetween(Short value1, Short val... method andConsigneeIsNull (line 907) | public Criteria andConsigneeIsNull() { method andConsigneeIsNotNull (line 912) | public Criteria andConsigneeIsNotNull() { method andConsigneeEqualTo (line 917) | public Criteria andConsigneeEqualTo(String value) { method andConsigneeEqualToColumn (line 928) | public Criteria andConsigneeEqualToColumn(LitemallOrder.Column colum... method andConsigneeNotEqualTo (line 933) | public Criteria andConsigneeNotEqualTo(String value) { method andConsigneeNotEqualToColumn (line 944) | public Criteria andConsigneeNotEqualToColumn(LitemallOrder.Column co... method andConsigneeGreaterThan (line 949) | public Criteria andConsigneeGreaterThan(String value) { method andConsigneeGreaterThanColumn (line 960) | public Criteria andConsigneeGreaterThanColumn(LitemallOrder.Column c... method andConsigneeGreaterThanOrEqualTo (line 965) | public Criteria andConsigneeGreaterThanOrEqualTo(String value) { method andConsigneeGreaterThanOrEqualToColumn (line 976) | public Criteria andConsigneeGreaterThanOrEqualToColumn(LitemallOrder... method andConsigneeLessThan (line 981) | public Criteria andConsigneeLessThan(String value) { method andConsigneeLessThanColumn (line 992) | public Criteria andConsigneeLessThanColumn(LitemallOrder.Column colu... method andConsigneeLessThanOrEqualTo (line 997) | public Criteria andConsigneeLessThanOrEqualTo(String value) { method andConsigneeLessThanOrEqualToColumn (line 1008) | public Criteria andConsigneeLessThanOrEqualToColumn(LitemallOrder.Co... method andConsigneeLike (line 1013) | public Criteria andConsigneeLike(String value) { method andConsigneeNotLike (line 1018) | public Criteria andConsigneeNotLike(String value) { method andConsigneeIn (line 1023) | public Criteria andConsigneeIn(List values) { method andConsigneeNotIn (line 1028) | public Criteria andConsigneeNotIn(List values) { method andConsigneeBetween (line 1033) | public Criteria andConsigneeBetween(String value1, String value2) { method andConsigneeNotBetween (line 1038) | public Criteria andConsigneeNotBetween(String value1, String value2) { method andMobileIsNull (line 1043) | public Criteria andMobileIsNull() { method andMobileIsNotNull (line 1048) | public Criteria andMobileIsNotNull() { method andMobileEqualTo (line 1053) | public Criteria andMobileEqualTo(String value) { method andMobileEqualToColumn (line 1064) | public Criteria andMobileEqualToColumn(LitemallOrder.Column column) { method andMobileNotEqualTo (line 1069) | public Criteria andMobileNotEqualTo(String value) { method andMobileNotEqualToColumn (line 1080) | public Criteria andMobileNotEqualToColumn(LitemallOrder.Column colum... method andMobileGreaterThan (line 1085) | public Criteria andMobileGreaterThan(String value) { method andMobileGreaterThanColumn (line 1096) | public Criteria andMobileGreaterThanColumn(LitemallOrder.Column colu... method andMobileGreaterThanOrEqualTo (line 1101) | public Criteria andMobileGreaterThanOrEqualTo(String value) { method andMobileGreaterThanOrEqualToColumn (line 1112) | public Criteria andMobileGreaterThanOrEqualToColumn(LitemallOrder.Co... method andMobileLessThan (line 1117) | public Criteria andMobileLessThan(String value) { method andMobileLessThanColumn (line 1128) | public Criteria andMobileLessThanColumn(LitemallOrder.Column column) { method andMobileLessThanOrEqualTo (line 1133) | public Criteria andMobileLessThanOrEqualTo(String value) { method andMobileLessThanOrEqualToColumn (line 1144) | public Criteria andMobileLessThanOrEqualToColumn(LitemallOrder.Colum... method andMobileLike (line 1149) | public Criteria andMobileLike(String value) { method andMobileNotLike (line 1154) | public Criteria andMobileNotLike(String value) { method andMobileIn (line 1159) | public Criteria andMobileIn(List values) { method andMobileNotIn (line 1164) | public Criteria andMobileNotIn(List values) { method andMobileBetween (line 1169) | public Criteria andMobileBetween(String value1, String value2) { method andMobileNotBetween (line 1174) | public Criteria andMobileNotBetween(String value1, String value2) { method andAddressIsNull (line 1179) | public Criteria andAddressIsNull() { method andAddressIsNotNull (line 1184) | public Criteria andAddressIsNotNull() { method andAddressEqualTo (line 1189) | public Criteria andAddressEqualTo(String value) { method andAddressEqualToColumn (line 1200) | public Criteria andAddressEqualToColumn(LitemallOrder.Column column) { method andAddressNotEqualTo (line 1205) | public Criteria andAddressNotEqualTo(String value) { method andAddressNotEqualToColumn (line 1216) | public Criteria andAddressNotEqualToColumn(LitemallOrder.Column colu... method andAddressGreaterThan (line 1221) | public Criteria andAddressGreaterThan(String value) { method andAddressGreaterThanColumn (line 1232) | public Criteria andAddressGreaterThanColumn(LitemallOrder.Column col... method andAddressGreaterThanOrEqualTo (line 1237) | public Criteria andAddressGreaterThanOrEqualTo(String value) { method andAddressGreaterThanOrEqualToColumn (line 1248) | public Criteria andAddressGreaterThanOrEqualToColumn(LitemallOrder.C... method andAddressLessThan (line 1253) | public Criteria andAddressLessThan(String value) { method andAddressLessThanColumn (line 1264) | public Criteria andAddressLessThanColumn(LitemallOrder.Column column) { method andAddressLessThanOrEqualTo (line 1269) | public Criteria andAddressLessThanOrEqualTo(String value) { method andAddressLessThanOrEqualToColumn (line 1280) | public Criteria andAddressLessThanOrEqualToColumn(LitemallOrder.Colu... method andAddressLike (line 1285) | public Criteria andAddressLike(String value) { method andAddressNotLike (line 1290) | public Criteria andAddressNotLike(String value) { method andAddressIn (line 1295) | public Criteria andAddressIn(List values) { method andAddressNotIn (line 1300) | public Criteria andAddressNotIn(List values) { method andAddressBetween (line 1305) | public Criteria andAddressBetween(String value1, String value2) { method andAddressNotBetween (line 1310) | public Criteria andAddressNotBetween(String value1, String value2) { method andMessageIsNull (line 1315) | public Criteria andMessageIsNull() { method andMessageIsNotNull (line 1320) | public Criteria andMessageIsNotNull() { method andMessageEqualTo (line 1325) | public Criteria andMessageEqualTo(String value) { method andMessageEqualToColumn (line 1336) | public Criteria andMessageEqualToColumn(LitemallOrder.Column column) { method andMessageNotEqualTo (line 1341) | public Criteria andMessageNotEqualTo(String value) { method andMessageNotEqualToColumn (line 1352) | public Criteria andMessageNotEqualToColumn(LitemallOrder.Column colu... method andMessageGreaterThan (line 1357) | public Criteria andMessageGreaterThan(String value) { method andMessageGreaterThanColumn (line 1368) | public Criteria andMessageGreaterThanColumn(LitemallOrder.Column col... method andMessageGreaterThanOrEqualTo (line 1373) | public Criteria andMessageGreaterThanOrEqualTo(String value) { method andMessageGreaterThanOrEqualToColumn (line 1384) | public Criteria andMessageGreaterThanOrEqualToColumn(LitemallOrder.C... method andMessageLessThan (line 1389) | public Criteria andMessageLessThan(String value) { method andMessageLessThanColumn (line 1400) | public Criteria andMessageLessThanColumn(LitemallOrder.Column column) { method andMessageLessThanOrEqualTo (line 1405) | public Criteria andMessageLessThanOrEqualTo(String value) { method andMessageLessThanOrEqualToColumn (line 1416) | public Criteria andMessageLessThanOrEqualToColumn(LitemallOrder.Colu... method andMessageLike (line 1421) | public Criteria andMessageLike(String value) { method andMessageNotLike (line 1426) | public Criteria andMessageNotLike(String value) { method andMessageIn (line 1431) | public Criteria andMessageIn(List values) { method andMessageNotIn (line 1436) | public Criteria andMessageNotIn(List values) { method andMessageBetween (line 1441) | public Criteria andMessageBetween(String value1, String value2) { method andMessageNotBetween (line 1446) | public Criteria andMessageNotBetween(String value1, String value2) { method andGoodsPriceIsNull (line 1451) | public Criteria andGoodsPriceIsNull() { method andGoodsPriceIsNotNull (line 1456) | public Criteria andGoodsPriceIsNotNull() { method andGoodsPriceEqualTo (line 1461) | public Criteria andGoodsPriceEqualTo(BigDecimal value) { method andGoodsPriceEqualToColumn (line 1472) | public Criteria andGoodsPriceEqualToColumn(LitemallOrder.Column colu... method andGoodsPriceNotEqualTo (line 1477) | public Criteria andGoodsPriceNotEqualTo(BigDecimal value) { method andGoodsPriceNotEqualToColumn (line 1488) | public Criteria andGoodsPriceNotEqualToColumn(LitemallOrder.Column c... method andGoodsPriceGreaterThan (line 1493) | public Criteria andGoodsPriceGreaterThan(BigDecimal value) { method andGoodsPriceGreaterThanColumn (line 1504) | public Criteria andGoodsPriceGreaterThanColumn(LitemallOrder.Column ... method andGoodsPriceGreaterThanOrEqualTo (line 1509) | public Criteria andGoodsPriceGreaterThanOrEqualTo(BigDecimal value) { method andGoodsPriceGreaterThanOrEqualToColumn (line 1520) | public Criteria andGoodsPriceGreaterThanOrEqualToColumn(LitemallOrde... method andGoodsPriceLessThan (line 1525) | public Criteria andGoodsPriceLessThan(BigDecimal value) { method andGoodsPriceLessThanColumn (line 1536) | public Criteria andGoodsPriceLessThanColumn(LitemallOrder.Column col... method andGoodsPriceLessThanOrEqualTo (line 1541) | public Criteria andGoodsPriceLessThanOrEqualTo(BigDecimal value) { method andGoodsPriceLessThanOrEqualToColumn (line 1552) | public Criteria andGoodsPriceLessThanOrEqualToColumn(LitemallOrder.C... method andGoodsPriceIn (line 1557) | public Criteria andGoodsPriceIn(List values) { method andGoodsPriceNotIn (line 1562) | public Criteria andGoodsPriceNotIn(List values) { method andGoodsPriceBetween (line 1567) | public Criteria andGoodsPriceBetween(BigDecimal value1, BigDecimal v... method andGoodsPriceNotBetween (line 1572) | public Criteria andGoodsPriceNotBetween(BigDecimal value1, BigDecima... method andFreightPriceIsNull (line 1577) | public Criteria andFreightPriceIsNull() { method andFreightPriceIsNotNull (line 1582) | public Criteria andFreightPriceIsNotNull() { method andFreightPriceEqualTo (line 1587) | public Criteria andFreightPriceEqualTo(BigDecimal value) { method andFreightPriceEqualToColumn (line 1598) | public Criteria andFreightPriceEqualToColumn(LitemallOrder.Column co... method andFreightPriceNotEqualTo (line 1603) | public Criteria andFreightPriceNotEqualTo(BigDecimal value) { method andFreightPriceNotEqualToColumn (line 1614) | public Criteria andFreightPriceNotEqualToColumn(LitemallOrder.Column... method andFreightPriceGreaterThan (line 1619) | public Criteria andFreightPriceGreaterThan(BigDecimal value) { method andFreightPriceGreaterThanColumn (line 1630) | public Criteria andFreightPriceGreaterThanColumn(LitemallOrder.Colum... method andFreightPriceGreaterThanOrEqualTo (line 1635) | public Criteria andFreightPriceGreaterThanOrEqualTo(BigDecimal value) { method andFreightPriceGreaterThanOrEqualToColumn (line 1646) | public Criteria andFreightPriceGreaterThanOrEqualToColumn(LitemallOr... method andFreightPriceLessThan (line 1651) | public Criteria andFreightPriceLessThan(BigDecimal value) { method andFreightPriceLessThanColumn (line 1662) | public Criteria andFreightPriceLessThanColumn(LitemallOrder.Column c... method andFreightPriceLessThanOrEqualTo (line 1667) | public Criteria andFreightPriceLessThanOrEqualTo(BigDecimal value) { method andFreightPriceLessThanOrEqualToColumn (line 1678) | public Criteria andFreightPriceLessThanOrEqualToColumn(LitemallOrder... method andFreightPriceIn (line 1683) | public Criteria andFreightPriceIn(List values) { method andFreightPriceNotIn (line 1688) | public Criteria andFreightPriceNotIn(List values) { method andFreightPriceBetween (line 1693) | public Criteria andFreightPriceBetween(BigDecimal value1, BigDecimal... method andFreightPriceNotBetween (line 1698) | public Criteria andFreightPriceNotBetween(BigDecimal value1, BigDeci... method andCouponPriceIsNull (line 1703) | public Criteria andCouponPriceIsNull() { method andCouponPriceIsNotNull (line 1708) | public Criteria andCouponPriceIsNotNull() { method andCouponPriceEqualTo (line 1713) | public Criteria andCouponPriceEqualTo(BigDecimal value) { method andCouponPriceEqualToColumn (line 1724) | public Criteria andCouponPriceEqualToColumn(LitemallOrder.Column col... method andCouponPriceNotEqualTo (line 1729) | public Criteria andCouponPriceNotEqualTo(BigDecimal value) { method andCouponPriceNotEqualToColumn (line 1740) | public Criteria andCouponPriceNotEqualToColumn(LitemallOrder.Column ... method andCouponPriceGreaterThan (line 1745) | public Criteria andCouponPriceGreaterThan(BigDecimal value) { method andCouponPriceGreaterThanColumn (line 1756) | public Criteria andCouponPriceGreaterThanColumn(LitemallOrder.Column... method andCouponPriceGreaterThanOrEqualTo (line 1761) | public Criteria andCouponPriceGreaterThanOrEqualTo(BigDecimal value) { method andCouponPriceGreaterThanOrEqualToColumn (line 1772) | public Criteria andCouponPriceGreaterThanOrEqualToColumn(LitemallOrd... method andCouponPriceLessThan (line 1777) | public Criteria andCouponPriceLessThan(BigDecimal value) { method andCouponPriceLessThanColumn (line 1788) | public Criteria andCouponPriceLessThanColumn(LitemallOrder.Column co... method andCouponPriceLessThanOrEqualTo (line 1793) | public Criteria andCouponPriceLessThanOrEqualTo(BigDecimal value) { method andCouponPriceLessThanOrEqualToColumn (line 1804) | public Criteria andCouponPriceLessThanOrEqualToColumn(LitemallOrder.... method andCouponPriceIn (line 1809) | public Criteria andCouponPriceIn(List values) { method andCouponPriceNotIn (line 1814) | public Criteria andCouponPriceNotIn(List values) { method andCouponPriceBetween (line 1819) | public Criteria andCouponPriceBetween(BigDecimal value1, BigDecimal ... method andCouponPriceNotBetween (line 1824) | public Criteria andCouponPriceNotBetween(BigDecimal value1, BigDecim... method andIntegralPriceIsNull (line 1829) | public Criteria andIntegralPriceIsNull() { method andIntegralPriceIsNotNull (line 1834) | public Criteria andIntegralPriceIsNotNull() { method andIntegralPriceEqualTo (line 1839) | public Criteria andIntegralPriceEqualTo(BigDecimal value) { method andIntegralPriceEqualToColumn (line 1850) | public Criteria andIntegralPriceEqualToColumn(LitemallOrder.Column c... method andIntegralPriceNotEqualTo (line 1855) | public Criteria andIntegralPriceNotEqualTo(BigDecimal value) { method andIntegralPriceNotEqualToColumn (line 1866) | public Criteria andIntegralPriceNotEqualToColumn(LitemallOrder.Colum... method andIntegralPriceGreaterThan (line 1871) | public Criteria andIntegralPriceGreaterThan(BigDecimal value) { method andIntegralPriceGreaterThanColumn (line 1882) | public Criteria andIntegralPriceGreaterThanColumn(LitemallOrder.Colu... method andIntegralPriceGreaterThanOrEqualTo (line 1887) | public Criteria andIntegralPriceGreaterThanOrEqualTo(BigDecimal valu... method andIntegralPriceGreaterThanOrEqualToColumn (line 1898) | public Criteria andIntegralPriceGreaterThanOrEqualToColumn(LitemallO... method andIntegralPriceLessThan (line 1903) | public Criteria andIntegralPriceLessThan(BigDecimal value) { method andIntegralPriceLessThanColumn (line 1914) | public Criteria andIntegralPriceLessThanColumn(LitemallOrder.Column ... method andIntegralPriceLessThanOrEqualTo (line 1919) | public Criteria andIntegralPriceLessThanOrEqualTo(BigDecimal value) { method andIntegralPriceLessThanOrEqualToColumn (line 1930) | public Criteria andIntegralPriceLessThanOrEqualToColumn(LitemallOrde... method andIntegralPriceIn (line 1935) | public Criteria andIntegralPriceIn(List values) { method andIntegralPriceNotIn (line 1940) | public Criteria andIntegralPriceNotIn(List values) { method andIntegralPriceBetween (line 1945) | public Criteria andIntegralPriceBetween(BigDecimal value1, BigDecima... method andIntegralPriceNotBetween (line 1950) | public Criteria andIntegralPriceNotBetween(BigDecimal value1, BigDec... method andGrouponPriceIsNull (line 1955) | public Criteria andGrouponPriceIsNull() { method andGrouponPriceIsNotNull (line 1960) | public Criteria andGrouponPriceIsNotNull() { method andGrouponPriceEqualTo (line 1965) | public Criteria andGrouponPriceEqualTo(BigDecimal value) { method andGrouponPriceEqualToColumn (line 1976) | public Criteria andGrouponPriceEqualToColumn(LitemallOrder.Column co... method andGrouponPriceNotEqualTo (line 1981) | public Criteria andGrouponPriceNotEqualTo(BigDecimal value) { method andGrouponPriceNotEqualToColumn (line 1992) | public Criteria andGrouponPriceNotEqualToColumn(LitemallOrder.Column... method andGrouponPriceGreaterThan (line 1997) | public Criteria andGrouponPriceGreaterThan(BigDecimal value) { method andGrouponPriceGreaterThanColumn (line 2008) | public Criteria andGrouponPriceGreaterThanColumn(LitemallOrder.Colum... method andGrouponPriceGreaterThanOrEqualTo (line 2013) | public Criteria andGrouponPriceGreaterThanOrEqualTo(BigDecimal value) { method andGrouponPriceGreaterThanOrEqualToColumn (line 2024) | public Criteria andGrouponPriceGreaterThanOrEqualToColumn(LitemallOr... method andGrouponPriceLessThan (line 2029) | public Criteria andGrouponPriceLessThan(BigDecimal value) { method andGrouponPriceLessThanColumn (line 2040) | public Criteria andGrouponPriceLessThanColumn(LitemallOrder.Column c... method andGrouponPriceLessThanOrEqualTo (line 2045) | public Criteria andGrouponPriceLessThanOrEqualTo(BigDecimal value) { method andGrouponPriceLessThanOrEqualToColumn (line 2056) | public Criteria andGrouponPriceLessThanOrEqualToColumn(LitemallOrder... method andGrouponPriceIn (line 2061) | public Criteria andGrouponPriceIn(List values) { method andGrouponPriceNotIn (line 2066) | public Criteria andGrouponPriceNotIn(List values) { method andGrouponPriceBetween (line 2071) | public Criteria andGrouponPriceBetween(BigDecimal value1, BigDecimal... method andGrouponPriceNotBetween (line 2076) | public Criteria andGrouponPriceNotBetween(BigDecimal value1, BigDeci... method andOrderPriceIsNull (line 2081) | public Criteria andOrderPriceIsNull() { method andOrderPriceIsNotNull (line 2086) | public Criteria andOrderPriceIsNotNull() { method andOrderPriceEqualTo (line 2091) | public Criteria andOrderPriceEqualTo(BigDecimal value) { method andOrderPriceEqualToColumn (line 2102) | public Criteria andOrderPriceEqualToColumn(LitemallOrder.Column colu... method andOrderPriceNotEqualTo (line 2107) | public Criteria andOrderPriceNotEqualTo(BigDecimal value) { method andOrderPriceNotEqualToColumn (line 2118) | public Criteria andOrderPriceNotEqualToColumn(LitemallOrder.Column c... method andOrderPriceGreaterThan (line 2123) | public Criteria andOrderPriceGreaterThan(BigDecimal value) { method andOrderPriceGreaterThanColumn (line 2134) | public Criteria andOrderPriceGreaterThanColumn(LitemallOrder.Column ... method andOrderPriceGreaterThanOrEqualTo (line 2139) | public Criteria andOrderPriceGreaterThanOrEqualTo(BigDecimal value) { method andOrderPriceGreaterThanOrEqualToColumn (line 2150) | public Criteria andOrderPriceGreaterThanOrEqualToColumn(LitemallOrde... method andOrderPriceLessThan (line 2155) | public Criteria andOrderPriceLessThan(BigDecimal value) { method andOrderPriceLessThanColumn (line 2166) | public Criteria andOrderPriceLessThanColumn(LitemallOrder.Column col... method andOrderPriceLessThanOrEqualTo (line 2171) | public Criteria andOrderPriceLessThanOrEqualTo(BigDecimal value) { method andOrderPriceLessThanOrEqualToColumn (line 2182) | public Criteria andOrderPriceLessThanOrEqualToColumn(LitemallOrder.C... method andOrderPriceIn (line 2187) | public Criteria andOrderPriceIn(List values) { method andOrderPriceNotIn (line 2192) | public Criteria andOrderPriceNotIn(List values) { method andOrderPriceBetween (line 2197) | public Criteria andOrderPriceBetween(BigDecimal value1, BigDecimal v... method andOrderPriceNotBetween (line 2202) | public Criteria andOrderPriceNotBetween(BigDecimal value1, BigDecima... method andActualPriceIsNull (line 2207) | public Criteria andActualPriceIsNull() { method andActualPriceIsNotNull (line 2212) | public Criteria andActualPriceIsNotNull() { method andActualPriceEqualTo (line 2217) | public Criteria andActualPriceEqualTo(BigDecimal value) { method andActualPriceEqualToColumn (line 2228) | public Criteria andActualPriceEqualToColumn(LitemallOrder.Column col... method andActualPriceNotEqualTo (line 2233) | public Criteria andActualPriceNotEqualTo(BigDecimal value) { method andActualPriceNotEqualToColumn (line 2244) | public Criteria andActualPriceNotEqualToColumn(LitemallOrder.Column ... method andActualPriceGreaterThan (line 2249) | public Criteria andActualPriceGreaterThan(BigDecimal value) { method andActualPriceGreaterThanColumn (line 2260) | public Criteria andActualPriceGreaterThanColumn(LitemallOrder.Column... method andActualPriceGreaterThanOrEqualTo (line 2265) | public Criteria andActualPriceGreaterThanOrEqualTo(BigDecimal value) { method andActualPriceGreaterThanOrEqualToColumn (line 2276) | public Criteria andActualPriceGreaterThanOrEqualToColumn(LitemallOrd... method andActualPriceLessThan (line 2281) | public Criteria andActualPriceLessThan(BigDecimal value) { method andActualPriceLessThanColumn (line 2292) | public Criteria andActualPriceLessThanColumn(LitemallOrder.Column co... method andActualPriceLessThanOrEqualTo (line 2297) | public Criteria andActualPriceLessThanOrEqualTo(BigDecimal value) { method andActualPriceLessThanOrEqualToColumn (line 2308) | public Criteria andActualPriceLessThanOrEqualToColumn(LitemallOrder.... method andActualPriceIn (line 2313) | public Criteria andActualPriceIn(List values) { method andActualPriceNotIn (line 2318) | public Criteria andActualPriceNotIn(List values) { method andActualPriceBetween (line 2323) | public Criteria andActualPriceBetween(BigDecimal value1, BigDecimal ... method andActualPriceNotBetween (line 2328) | public Criteria andActualPriceNotBetween(BigDecimal value1, BigDecim... method andPayIdIsNull (line 2333) | public Criteria andPayIdIsNull() { method andPayIdIsNotNull (line 2338) | public Criteria andPayIdIsNotNull() { method andPayIdEqualTo (line 2343) | public Criteria andPayIdEqualTo(String value) { method andPayIdEqualToColumn (line 2354) | public Criteria andPayIdEqualToColumn(LitemallOrder.Column column) { method andPayIdNotEqualTo (line 2359) | public Criteria andPayIdNotEqualTo(String value) { method andPayIdNotEqualToColumn (line 2370) | public Criteria andPayIdNotEqualToColumn(LitemallOrder.Column column) { method andPayIdGreaterThan (line 2375) | public Criteria andPayIdGreaterThan(String value) { method andPayIdGreaterThanColumn (line 2386) | public Criteria andPayIdGreaterThanColumn(LitemallOrder.Column colum... method andPayIdGreaterThanOrEqualTo (line 2391) | public Criteria andPayIdGreaterThanOrEqualTo(String value) { method andPayIdGreaterThanOrEqualToColumn (line 2402) | public Criteria andPayIdGreaterThanOrEqualToColumn(LitemallOrder.Col... method andPayIdLessThan (line 2407) | public Criteria andPayIdLessThan(String value) { method andPayIdLessThanColumn (line 2418) | public Criteria andPayIdLessThanColumn(LitemallOrder.Column column) { method andPayIdLessThanOrEqualTo (line 2423) | public Criteria andPayIdLessThanOrEqualTo(String value) { method andPayIdLessThanOrEqualToColumn (line 2434) | public Criteria andPayIdLessThanOrEqualToColumn(LitemallOrder.Column... method andPayIdLike (line 2439) | public Criteria andPayIdLike(String value) { method andPayIdNotLike (line 2444) | public Criteria andPayIdNotLike(String value) { method andPayIdIn (line 2449) | public Criteria andPayIdIn(List values) { method andPayIdNotIn (line 2454) | public Criteria andPayIdNotIn(List values) { method andPayIdBetween (line 2459) | public Criteria andPayIdBetween(String value1, String value2) { method andPayIdNotBetween (line 2464) | public Criteria andPayIdNotBetween(String value1, String value2) { method andPayTimeIsNull (line 2469) | public Criteria andPayTimeIsNull() { method andPayTimeIsNotNull (line 2474) | public Criteria andPayTimeIsNotNull() { method andPayTimeEqualTo (line 2479) | public Criteria andPayTimeEqualTo(LocalDateTime value) { method andPayTimeEqualToColumn (line 2490) | public Criteria andPayTimeEqualToColumn(LitemallOrder.Column column) { method andPayTimeNotEqualTo (line 2495) | public Criteria andPayTimeNotEqualTo(LocalDateTime value) { method andPayTimeNotEqualToColumn (line 2506) | public Criteria andPayTimeNotEqualToColumn(LitemallOrder.Column colu... method andPayTimeGreaterThan (line 2511) | public Criteria andPayTimeGreaterThan(LocalDateTime value) { method andPayTimeGreaterThanColumn (line 2522) | public Criteria andPayTimeGreaterThanColumn(LitemallOrder.Column col... method andPayTimeGreaterThanOrEqualTo (line 2527) | public Criteria andPayTimeGreaterThanOrEqualTo(LocalDateTime value) { method andPayTimeGreaterThanOrEqualToColumn (line 2538) | public Criteria andPayTimeGreaterThanOrEqualToColumn(LitemallOrder.C... method andPayTimeLessThan (line 2543) | public Criteria andPayTimeLessThan(LocalDateTime value) { method andPayTimeLessThanColumn (line 2554) | public Criteria andPayTimeLessThanColumn(LitemallOrder.Column column) { method andPayTimeLessThanOrEqualTo (line 2559) | public Criteria andPayTimeLessThanOrEqualTo(LocalDateTime value) { method andPayTimeLessThanOrEqualToColumn (line 2570) | public Criteria andPayTimeLessThanOrEqualToColumn(LitemallOrder.Colu... method andPayTimeIn (line 2575) | public Criteria andPayTimeIn(List values) { method andPayTimeNotIn (line 2580) | public Criteria andPayTimeNotIn(List values) { method andPayTimeBetween (line 2585) | public Criteria andPayTimeBetween(LocalDateTime value1, LocalDateTim... method andPayTimeNotBetween (line 2590) | public Criteria andPayTimeNotBetween(LocalDateTime value1, LocalDate... method andShipSnIsNull (line 2595) | public Criteria andShipSnIsNull() { method andShipSnIsNotNull (line 2600) | public Criteria andShipSnIsNotNull() { method andShipSnEqualTo (line 2605) | public Criteria andShipSnEqualTo(String value) { method andShipSnEqualToColumn (line 2616) | public Criteria andShipSnEqualToColumn(LitemallOrder.Column column) { method andShipSnNotEqualTo (line 2621) | public Criteria andShipSnNotEqualTo(String value) { method andShipSnNotEqualToColumn (line 2632) | public Criteria andShipSnNotEqualToColumn(LitemallOrder.Column colum... method andShipSnGreaterThan (line 2637) | public Criteria andShipSnGreaterThan(String value) { method andShipSnGreaterThanColumn (line 2648) | public Criteria andShipSnGreaterThanColumn(LitemallOrder.Column colu... method andShipSnGreaterThanOrEqualTo (line 2653) | public Criteria andShipSnGreaterThanOrEqualTo(String value) { method andShipSnGreaterThanOrEqualToColumn (line 2664) | public Criteria andShipSnGreaterThanOrEqualToColumn(LitemallOrder.Co... method andShipSnLessThan (line 2669) | public Criteria andShipSnLessThan(String value) { method andShipSnLessThanColumn (line 2680) | public Criteria andShipSnLessThanColumn(LitemallOrder.Column column) { method andShipSnLessThanOrEqualTo (line 2685) | public Criteria andShipSnLessThanOrEqualTo(String value) { method andShipSnLessThanOrEqualToColumn (line 2696) | public Criteria andShipSnLessThanOrEqualToColumn(LitemallOrder.Colum... method andShipSnLike (line 2701) | public Criteria andShipSnLike(String value) { method andShipSnNotLike (line 2706) | public Criteria andShipSnNotLike(String value) { method andShipSnIn (line 2711) | public Criteria andShipSnIn(List values) { method andShipSnNotIn (line 2716) | public Criteria andShipSnNotIn(List values) { method andShipSnBetween (line 2721) | public Criteria andShipSnBetween(String value1, String value2) { method andShipSnNotBetween (line 2726) | public Criteria andShipSnNotBetween(String value1, String value2) { method andShipChannelIsNull (line 2731) | public Criteria andShipChannelIsNull() { method andShipChannelIsNotNull (line 2736) | public Criteria andShipChannelIsNotNull() { method andShipChannelEqualTo (line 2741) | public Criteria andShipChannelEqualTo(String value) { method andShipChannelEqualToColumn (line 2752) | public Criteria andShipChannelEqualToColumn(LitemallOrder.Column col... method andShipChannelNotEqualTo (line 2757) | public Criteria andShipChannelNotEqualTo(String value) { method andShipChannelNotEqualToColumn (line 2768) | public Criteria andShipChannelNotEqualToColumn(LitemallOrder.Column ... method andShipChannelGreaterThan (line 2773) | public Criteria andShipChannelGreaterThan(String value) { method andShipChannelGreaterThanColumn (line 2784) | public Criteria andShipChannelGreaterThanColumn(LitemallOrder.Column... method andShipChannelGreaterThanOrEqualTo (line 2789) | public Criteria andShipChannelGreaterThanOrEqualTo(String value) { method andShipChannelGreaterThanOrEqualToColumn (line 2800) | public Criteria andShipChannelGreaterThanOrEqualToColumn(LitemallOrd... method andShipChannelLessThan (line 2805) | public Criteria andShipChannelLessThan(String value) { method andShipChannelLessThanColumn (line 2816) | public Criteria andShipChannelLessThanColumn(LitemallOrder.Column co... method andShipChannelLessThanOrEqualTo (line 2821) | public Criteria andShipChannelLessThanOrEqualTo(String value) { method andShipChannelLessThanOrEqualToColumn (line 2832) | public Criteria andShipChannelLessThanOrEqualToColumn(LitemallOrder.... method andShipChannelLike (line 2837) | public Criteria andShipChannelLike(String value) { method andShipChannelNotLike (line 2842) | public Criteria andShipChannelNotLike(String value) { method andShipChannelIn (line 2847) | public Criteria andShipChannelIn(List values) { method andShipChannelNotIn (line 2852) | public Criteria andShipChannelNotIn(List values) { method andShipChannelBetween (line 2857) | public Criteria andShipChannelBetween(String value1, String value2) { method andShipChannelNotBetween (line 2862) | public Criteria andShipChannelNotBetween(String value1, String value... method andShipTimeIsNull (line 2867) | public Criteria andShipTimeIsNull() { method andShipTimeIsNotNull (line 2872) | public Criteria andShipTimeIsNotNull() { method andShipTimeEqualTo (line 2877) | public Criteria andShipTimeEqualTo(LocalDateTime value) { method andShipTimeEqualToColumn (line 2888) | public Criteria andShipTimeEqualToColumn(LitemallOrder.Column column) { method andShipTimeNotEqualTo (line 2893) | public Criteria andShipTimeNotEqualTo(LocalDateTime value) { method andShipTimeNotEqualToColumn (line 2904) | public Criteria andShipTimeNotEqualToColumn(LitemallOrder.Column col... method andShipTimeGreaterThan (line 2909) | public Criteria andShipTimeGreaterThan(LocalDateTime value) { method andShipTimeGreaterThanColumn (line 2920) | public Criteria andShipTimeGreaterThanColumn(LitemallOrder.Column co... method andShipTimeGreaterThanOrEqualTo (line 2925) | public Criteria andShipTimeGreaterThanOrEqualTo(LocalDateTime value) { method andShipTimeGreaterThanOrEqualToColumn (line 2936) | public Criteria andShipTimeGreaterThanOrEqualToColumn(LitemallOrder.... method andShipTimeLessThan (line 2941) | public Criteria andShipTimeLessThan(LocalDateTime value) { method andShipTimeLessThanColumn (line 2952) | public Criteria andShipTimeLessThanColumn(LitemallOrder.Column colum... method andShipTimeLessThanOrEqualTo (line 2957) | public Criteria andShipTimeLessThanOrEqualTo(LocalDateTime value) { method andShipTimeLessThanOrEqualToColumn (line 2968) | public Criteria andShipTimeLessThanOrEqualToColumn(LitemallOrder.Col... method andShipTimeIn (line 2973) | public Criteria andShipTimeIn(List values) { method andShipTimeNotIn (line 2978) | public Criteria andShipTimeNotIn(List values) { method andShipTimeBetween (line 2983) | public Criteria andShipTimeBetween(LocalDateTime value1, LocalDateTi... method andShipTimeNotBetween (line 2988) | public Criteria andShipTimeNotBetween(LocalDateTime value1, LocalDat... method andRefundAmountIsNull (line 2993) | public Criteria andRefundAmountIsNull() { method andRefundAmountIsNotNull (line 2998) | public Criteria andRefundAmountIsNotNull() { method andRefundAmountEqualTo (line 3003) | public Criteria andRefundAmountEqualTo(BigDecimal value) { method andRefundAmountEqualToColumn (line 3014) | public Criteria andRefundAmountEqualToColumn(LitemallOrder.Column co... method andRefundAmountNotEqualTo (line 3019) | public Criteria andRefundAmountNotEqualTo(BigDecimal value) { method andRefundAmountNotEqualToColumn (line 3030) | public Criteria andRefundAmountNotEqualToColumn(LitemallOrder.Column... method andRefundAmountGreaterThan (line 3035) | public Criteria andRefundAmountGreaterThan(BigDecimal value) { method andRefundAmountGreaterThanColumn (line 3046) | public Criteria andRefundAmountGreaterThanColumn(LitemallOrder.Colum... method andRefundAmountGreaterThanOrEqualTo (line 3051) | public Criteria andRefundAmountGreaterThanOrEqualTo(BigDecimal value) { method andRefundAmountGreaterThanOrEqualToColumn (line 3062) | public Criteria andRefundAmountGreaterThanOrEqualToColumn(LitemallOr... method andRefundAmountLessThan (line 3067) | public Criteria andRefundAmountLessThan(BigDecimal value) { method andRefundAmountLessThanColumn (line 3078) | public Criteria andRefundAmountLessThanColumn(LitemallOrder.Column c... method andRefundAmountLessThanOrEqualTo (line 3083) | public Criteria andRefundAmountLessThanOrEqualTo(BigDecimal value) { method andRefundAmountLessThanOrEqualToColumn (line 3094) | public Criteria andRefundAmountLessThanOrEqualToColumn(LitemallOrder... method andRefundAmountIn (line 3099) | public Criteria andRefundAmountIn(List values) { method andRefundAmountNotIn (line 3104) | public Criteria andRefundAmountNotIn(List values) { method andRefundAmountBetween (line 3109) | public Criteria andRefundAmountBetween(BigDecimal value1, BigDecimal... method andRefundAmountNotBetween (line 3114) | public Criteria andRefundAmountNotBetween(BigDecimal value1, BigDeci... method andRefundTypeIsNull (line 3119) | public Criteria andRefundTypeIsNull() { method andRefundTypeIsNotNull (line 3124) | public Criteria andRefundTypeIsNotNull() { method andRefundTypeEqualTo (line 3129) | public Criteria andRefundTypeEqualTo(String value) { method andRefundTypeEqualToColumn (line 3140) | public Criteria andRefundTypeEqualToColumn(LitemallOrder.Column colu... method andRefundTypeNotEqualTo (line 3145) | public Criteria andRefundTypeNotEqualTo(String value) { method andRefundTypeNotEqualToColumn (line 3156) | public Criteria andRefundTypeNotEqualToColumn(LitemallOrder.Column c... method andRefundTypeGreaterThan (line 3161) | public Criteria andRefundTypeGreaterThan(String value) { method andRefundTypeGreaterThanColumn (line 3172) | public Criteria andRefundTypeGreaterThanColumn(LitemallOrder.Column ... method andRefundTypeGreaterThanOrEqualTo (line 3177) | public Criteria andRefundTypeGreaterThanOrEqualTo(String value) { method andRefundTypeGreaterThanOrEqualToColumn (line 3188) | public Criteria andRefundTypeGreaterThanOrEqualToColumn(LitemallOrde... method andRefundTypeLessThan (line 3193) | public Criteria andRefundTypeLessThan(String value) { method andRefundTypeLessThanColumn (line 3204) | public Criteria andRefundTypeLessThanColumn(LitemallOrder.Column col... method andRefundTypeLessThanOrEqualTo (line 3209) | public Criteria andRefundTypeLessThanOrEqualTo(String value) { method andRefundTypeLessThanOrEqualToColumn (line 3220) | public Criteria andRefundTypeLessThanOrEqualToColumn(LitemallOrder.C... method andRefundTypeLike (line 3225) | public Criteria andRefundTypeLike(String value) { method andRefundTypeNotLike (line 3230) | public Criteria andRefundTypeNotLike(String value) { method andRefundTypeIn (line 3235) | public Criteria andRefundTypeIn(List values) { method andRefundTypeNotIn (line 3240) | public Criteria andRefundTypeNotIn(List values) { method andRefundTypeBetween (line 3245) | public Criteria andRefundTypeBetween(String value1, String value2) { method andRefundTypeNotBetween (line 3250) | public Criteria andRefundTypeNotBetween(String value1, String value2) { method andRefundContentIsNull (line 3255) | public Criteria andRefundContentIsNull() { method andRefundContentIsNotNull (line 3260) | public Criteria andRefundContentIsNotNull() { method andRefundContentEqualTo (line 3265) | public Criteria andRefundContentEqualTo(String value) { method andRefundContentEqualToColumn (line 3276) | public Criteria andRefundContentEqualToColumn(LitemallOrder.Column c... method andRefundContentNotEqualTo (line 3281) | public Criteria andRefundContentNotEqualTo(String value) { method andRefundContentNotEqualToColumn (line 3292) | public Criteria andRefundContentNotEqualToColumn(LitemallOrder.Colum... method andRefundContentGreaterThan (line 3297) | public Criteria andRefundContentGreaterThan(String value) { method andRefundContentGreaterThanColumn (line 3308) | public Criteria andRefundContentGreaterThanColumn(LitemallOrder.Colu... method andRefundContentGreaterThanOrEqualTo (line 3313) | public Criteria andRefundContentGreaterThanOrEqualTo(String value) { method andRefundContentGreaterThanOrEqualToColumn (line 3324) | public Criteria andRefundContentGreaterThanOrEqualToColumn(LitemallO... method andRefundContentLessThan (line 3329) | public Criteria andRefundContentLessThan(String value) { method andRefundContentLessThanColumn (line 3340) | public Criteria andRefundContentLessThanColumn(LitemallOrder.Column ... method andRefundContentLessThanOrEqualTo (line 3345) | public Criteria andRefundContentLessThanOrEqualTo(String value) { method andRefundContentLessThanOrEqualToColumn (line 3356) | public Criteria andRefundContentLessThanOrEqualToColumn(LitemallOrde... method andRefundContentLike (line 3361) | public Criteria andRefundContentLike(String value) { method andRefundContentNotLike (line 3366) | public Criteria andRefundContentNotLike(String value) { method andRefundContentIn (line 3371) | public Criteria andRefundContentIn(List values) { method andRefundContentNotIn (line 3376) | public Criteria andRefundContentNotIn(List values) { method andRefundContentBetween (line 3381) | public Criteria andRefundContentBetween(String value1, String value2) { method andRefundContentNotBetween (line 3386) | public Criteria andRefundContentNotBetween(String value1, String val... method andRefundTimeIsNull (line 3391) | public Criteria andRefundTimeIsNull() { method andRefundTimeIsNotNull (line 3396) | public Criteria andRefundTimeIsNotNull() { method andRefundTimeEqualTo (line 3401) | public Criteria andRefundTimeEqualTo(LocalDateTime value) { method andRefundTimeEqualToColumn (line 3412) | public Criteria andRefundTimeEqualToColumn(LitemallOrder.Column colu... method andRefundTimeNotEqualTo (line 3417) | public Criteria andRefundTimeNotEqualTo(LocalDateTime value) { method andRefundTimeNotEqualToColumn (line 3428) | public Criteria andRefundTimeNotEqualToColumn(LitemallOrder.Column c... method andRefundTimeGreaterThan (line 3433) | public Criteria andRefundTimeGreaterThan(LocalDateTime value) { method andRefundTimeGreaterThanColumn (line 3444) | public Criteria andRefundTimeGreaterThanColumn(LitemallOrder.Column ... method andRefundTimeGreaterThanOrEqualTo (line 3449) | public Criteria andRefundTimeGreaterThanOrEqualTo(LocalDateTime valu... method andRefundTimeGreaterThanOrEqualToColumn (line 3460) | public Criteria andRefundTimeGreaterThanOrEqualToColumn(LitemallOrde... method andRefundTimeLessThan (line 3465) | public Criteria andRefundTimeLessThan(LocalDateTime value) { method andRefundTimeLessThanColumn (line 3476) | public Criteria andRefundTimeLessThanColumn(LitemallOrder.Column col... method andRefundTimeLessThanOrEqualTo (line 3481) | public Criteria andRefundTimeLessThanOrEqualTo(LocalDateTime value) { method andRefundTimeLessThanOrEqualToColumn (line 3492) | public Criteria andRefundTimeLessThanOrEqualToColumn(LitemallOrder.C... method andRefundTimeIn (line 3497) | public Criteria andRefundTimeIn(List values) { method andRefundTimeNotIn (line 3502) | public Criteria andRefundTimeNotIn(List values) { method andRefundTimeBetween (line 3507) | public Criteria andRefundTimeBetween(LocalDateTime value1, LocalDate... method andRefundTimeNotBetween (line 3512) | public Criteria andRefundTimeNotBetween(LocalDateTime value1, LocalD... method andConfirmTimeIsNull (line 3517) | public Criteria andConfirmTimeIsNull() { method andConfirmTimeIsNotNull (line 3522) | public Criteria andConfirmTimeIsNotNull() { method andConfirmTimeEqualTo (line 3527) | public Criteria andConfirmTimeEqualTo(LocalDateTime value) { method andConfirmTimeEqualToColumn (line 3538) | public Criteria andConfirmTimeEqualToColumn(LitemallOrder.Column col... method andConfirmTimeNotEqualTo (line 3543) | public Criteria andConfirmTimeNotEqualTo(LocalDateTime value) { method andConfirmTimeNotEqualToColumn (line 3554) | public Criteria andConfirmTimeNotEqualToColumn(LitemallOrder.Column ... method andConfirmTimeGreaterThan (line 3559) | public Criteria andConfirmTimeGreaterThan(LocalDateTime value) { method andConfirmTimeGreaterThanColumn (line 3570) | public Criteria andConfirmTimeGreaterThanColumn(LitemallOrder.Column... method andConfirmTimeGreaterThanOrEqualTo (line 3575) | public Criteria andConfirmTimeGreaterThanOrEqualTo(LocalDateTime val... method andConfirmTimeGreaterThanOrEqualToColumn (line 3586) | public Criteria andConfirmTimeGreaterThanOrEqualToColumn(LitemallOrd... method andConfirmTimeLessThan (line 3591) | public Criteria andConfirmTimeLessThan(LocalDateTime value) { method andConfirmTimeLessThanColumn (line 3602) | public Criteria andConfirmTimeLessThanColumn(LitemallOrder.Column co... method andConfirmTimeLessThanOrEqualTo (line 3607) | public Criteria andConfirmTimeLessThanOrEqualTo(LocalDateTime value) { method andConfirmTimeLessThanOrEqualToColumn (line 3618) | public Criteria andConfirmTimeLessThanOrEqualToColumn(LitemallOrder.... method andConfirmTimeIn (line 3623) | public Criteria andConfirmTimeIn(List values) { method andConfirmTimeNotIn (line 3628) | public Criteria andConfirmTimeNotIn(List values) { method andConfirmTimeBetween (line 3633) | public Criteria andConfirmTimeBetween(LocalDateTime value1, LocalDat... method andConfirmTimeNotBetween (line 3638) | public Criteria andConfirmTimeNotBetween(LocalDateTime value1, Local... method andCommentsIsNull (line 3643) | public Criteria andCommentsIsNull() { method andCommentsIsNotNull (line 3648) | public Criteria andCommentsIsNotNull() { method andCommentsEqualTo (line 3653) | public Criteria andCommentsEqualTo(Short value) { method andCommentsEqualToColumn (line 3664) | public Criteria andCommentsEqualToColumn(LitemallOrder.Column column) { method andCommentsNotEqualTo (line 3669) | public Criteria andCommentsNotEqualTo(Short value) { method andCommentsNotEqualToColumn (line 3680) | public Criteria andCommentsNotEqualToColumn(LitemallOrder.Column col... method andCommentsGreaterThan (line 3685) | public Criteria andCommentsGreaterThan(Short value) { method andCommentsGreaterThanColumn (line 3696) | public Criteria andCommentsGreaterThanColumn(LitemallOrder.Column co... method andCommentsGreaterThanOrEqualTo (line 3701) | public Criteria andCommentsGreaterThanOrEqualTo(Short value) { method andCommentsGreaterThanOrEqualToColumn (line 3712) | public Criteria andCommentsGreaterThanOrEqualToColumn(LitemallOrder.... method andCommentsLessThan (line 3717) | public Criteria andCommentsLessThan(Short value) { method andCommentsLessThanColumn (line 3728) | public Criteria andCommentsLessThanColumn(LitemallOrder.Column colum... method andCommentsLessThanOrEqualTo (line 3733) | public Criteria andCommentsLessThanOrEqualTo(Short value) { method andCommentsLessThanOrEqualToColumn (line 3744) | public Criteria andCommentsLessThanOrEqualToColumn(LitemallOrder.Col... method andCommentsIn (line 3749) | public Criteria andCommentsIn(List values) { method andCommentsNotIn (line 3754) | public Criteria andCommentsNotIn(List values) { method andCommentsBetween (line 3759) | public Criteria andCommentsBetween(Short value1, Short value2) { method andCommentsNotBetween (line 3764) | public Criteria andCommentsNotBetween(Short value1, Short value2) { method andEndTimeIsNull (line 3769) | public Criteria andEndTimeIsNull() { method andEndTimeIsNotNull (line 3774) | public Criteria andEndTimeIsNotNull() { method andEndTimeEqualTo (line 3779) | public Criteria andEndTimeEqualTo(LocalDateTime value) { method andEndTimeEqualToColumn (line 3790) | public Criteria andEndTimeEqualToColumn(LitemallOrder.Column column) { method andEndTimeNotEqualTo (line 3795) | public Criteria andEndTimeNotEqualTo(LocalDateTime value) { method andEndTimeNotEqualToColumn (line 3806) | public Criteria andEndTimeNotEqualToColumn(LitemallOrder.Column colu... method andEndTimeGreaterThan (line 3811) | public Criteria andEndTimeGreaterThan(LocalDateTime value) { method andEndTimeGreaterThanColumn (line 3822) | public Criteria andEndTimeGreaterThanColumn(LitemallOrder.Column col... method andEndTimeGreaterThanOrEqualTo (line 3827) | public Criteria andEndTimeGreaterThanOrEqualTo(LocalDateTime value) { method andEndTimeGreaterThanOrEqualToColumn (line 3838) | public Criteria andEndTimeGreaterThanOrEqualToColumn(LitemallOrder.C... method andEndTimeLessThan (line 3843) | public Criteria andEndTimeLessThan(LocalDateTime value) { method andEndTimeLessThanColumn (line 3854) | public Criteria andEndTimeLessThanColumn(LitemallOrder.Column column) { method andEndTimeLessThanOrEqualTo (line 3859) | public Criteria andEndTimeLessThanOrEqualTo(LocalDateTime value) { method andEndTimeLessThanOrEqualToColumn (line 3870) | public Criteria andEndTimeLessThanOrEqualToColumn(LitemallOrder.Colu... method andEndTimeIn (line 3875) | public Criteria andEndTimeIn(List values) { method andEndTimeNotIn (line 3880) | public Criteria andEndTimeNotIn(List values) { method andEndTimeBetween (line 3885) | public Criteria andEndTimeBetween(LocalDateTime value1, LocalDateTim... method andEndTimeNotBetween (line 3890) | public Criteria andEndTimeNotBetween(LocalDateTime value1, LocalDate... method andAddTimeIsNull (line 3895) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 3900) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 3905) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 3916) | public Criteria andAddTimeEqualToColumn(LitemallOrder.Column column) { method andAddTimeNotEqualTo (line 3921) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 3932) | public Criteria andAddTimeNotEqualToColumn(LitemallOrder.Column colu... method andAddTimeGreaterThan (line 3937) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 3948) | public Criteria andAddTimeGreaterThanColumn(LitemallOrder.Column col... method andAddTimeGreaterThanOrEqualTo (line 3953) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 3964) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallOrder.C... method andAddTimeLessThan (line 3969) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 3980) | public Criteria andAddTimeLessThanColumn(LitemallOrder.Column column) { method andAddTimeLessThanOrEqualTo (line 3985) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 3996) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallOrder.Colu... method andAddTimeIn (line 4001) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 4006) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 4011) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 4016) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 4021) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 4026) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 4031) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 4042) | public Criteria andUpdateTimeEqualToColumn(LitemallOrder.Column colu... method andUpdateTimeNotEqualTo (line 4047) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 4058) | public Criteria andUpdateTimeNotEqualToColumn(LitemallOrder.Column c... method andUpdateTimeGreaterThan (line 4063) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 4074) | public Criteria andUpdateTimeGreaterThanColumn(LitemallOrder.Column ... method andUpdateTimeGreaterThanOrEqualTo (line 4079) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 4090) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallOrde... method andUpdateTimeLessThan (line 4095) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 4106) | public Criteria andUpdateTimeLessThanColumn(LitemallOrder.Column col... method andUpdateTimeLessThanOrEqualTo (line 4111) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 4122) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallOrder.C... method andUpdateTimeIn (line 4127) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 4132) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 4137) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 4142) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 4147) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 4152) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 4157) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 4168) | public Criteria andDeletedEqualToColumn(LitemallOrder.Column column) { method andDeletedNotEqualTo (line 4173) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 4184) | public Criteria andDeletedNotEqualToColumn(LitemallOrder.Column colu... method andDeletedGreaterThan (line 4189) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 4200) | public Criteria andDeletedGreaterThanColumn(LitemallOrder.Column col... method andDeletedGreaterThanOrEqualTo (line 4205) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 4216) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallOrder.C... method andDeletedLessThan (line 4221) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 4232) | public Criteria andDeletedLessThanColumn(LitemallOrder.Column column) { method andDeletedLessThanOrEqualTo (line 4237) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 4248) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallOrder.Colu... method andDeletedIn (line 4253) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 4258) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 4263) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 4268) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 4280) | public static class Criteria extends GeneratedCriteria { method Criteria (line 4295) | protected Criteria(LitemallOrderExample example) { method example (line 4306) | public LitemallOrderExample example() { method andIf (line 4316) | @Deprecated method when (line 4330) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 4343) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 4358) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 4362) | @Deprecated method add (line 4370) | Criteria add(Criteria add); class Criterion (line 4380) | public static class Criterion { method getCondition (line 4397) | public String getCondition() { method getValue (line 4401) | public Object getValue() { method getSecondValue (line 4405) | public Object getSecondValue() { method isNoValue (line 4409) | public boolean isNoValue() { method isSingleValue (line 4413) | public boolean isSingleValue() { method isBetweenValue (line 4417) | public boolean isBetweenValue() { method isListValue (line 4421) | public boolean isListValue() { method getTypeHandler (line 4425) | public String getTypeHandler() { method Criterion (line 4429) | protected Criterion(String condition) { method Criterion (line 4436) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 4448) | protected Criterion(String condition, Object value) { method Criterion (line 4452) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 4461) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 4466) | public interface ICriteriaWhen { method criteria (line 4473) | void criteria(Criteria criteria); type IExampleWhen (line 4476) | public interface IExampleWhen { method example (line 4483) | void example(org.linlinjava.litemall.db.domain.LitemallOrderExample ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallOrderGoods.java class LitemallOrderGoods (line 8) | public class LitemallOrderGoods { method getId (line 159) | public Integer getId() { method setId (line 171) | public void setId(Integer id) { method getOrderId (line 183) | public Integer getOrderId() { method setOrderId (line 195) | public void setOrderId(Integer orderId) { method getGoodsId (line 207) | public Integer getGoodsId() { method setGoodsId (line 219) | public void setGoodsId(Integer goodsId) { method getGoodsName (line 231) | public String getGoodsName() { method setGoodsName (line 243) | public void setGoodsName(String goodsName) { method getGoodsSn (line 255) | public String getGoodsSn() { method setGoodsSn (line 267) | public void setGoodsSn(String goodsSn) { method getProductId (line 279) | public Integer getProductId() { method setProductId (line 291) | public void setProductId(Integer productId) { method getNumber (line 303) | public Short getNumber() { method setNumber (line 315) | public void setNumber(Short number) { method getPrice (line 327) | public BigDecimal getPrice() { method setPrice (line 339) | public void setPrice(BigDecimal price) { method getSpecifications (line 351) | public String[] getSpecifications() { method setSpecifications (line 363) | public void setSpecifications(String[] specifications) { method getPicUrl (line 375) | public String getPicUrl() { method setPicUrl (line 387) | public void setPicUrl(String picUrl) { method getComment (line 399) | public Integer getComment() { method setComment (line 411) | public void setComment(Integer comment) { method getAddTime (line 423) | public LocalDateTime getAddTime() { method setAddTime (line 435) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 447) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 459) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 469) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 481) | public Boolean getDeleted() { method setDeleted (line 493) | public void setDeleted(Boolean deleted) { method toString (line 503) | @Override method equals (line 535) | @Override method hashCode (line 569) | @Override type Deleted (line 596) | public enum Deleted { method Deleted (line 622) | Deleted(Boolean value, String name) { method getValue (line 633) | public Boolean getValue() { method value (line 643) | public Boolean value() { method getName (line 653) | public String getName() { type Column (line 664) | public enum Column { method value (line 734) | public String value() { method getValue (line 744) | public String getValue() { method getJavaProperty (line 754) | public String getJavaProperty() { method getJdbcType (line 764) | public String getJdbcType() { method Column (line 774) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 787) | public String desc() { method asc (line 797) | public String asc() { method excludes (line 807) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 821) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 835) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallOrderGoodsExample.java class LitemallOrderGoodsExample (line 8) | public class LitemallOrderGoodsExample { method LitemallOrderGoodsExample (line 39) | public LitemallOrderGoodsExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallOrderGoodsExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallOrderGoodsExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallOrderGoodsExample when(boolean condition, IExampleWhen ... method when (line 211) | public LitemallOrderGoodsExample when(boolean condition, IExampleWhen ... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 233) | protected GeneratedCriteria() { method getSpecificationsCriteria (line 239) | public List getSpecificationsCriteria() { method addSpecificationsCriterion (line 243) | protected void addSpecificationsCriterion(String condition, Object v... method addSpecificationsCriterion (line 251) | protected void addSpecificationsCriterion(String condition, String[]... method isValid (line 259) | public boolean isValid() { method getAllCriteria (line 264) | public List getAllCriteria() { method getCriteria (line 273) | public List getCriteria() { method addCriterion (line 277) | protected void addCriterion(String condition) { method addCriterion (line 285) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 293) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 301) | public Criteria andIdIsNull() { method andIdIsNotNull (line 306) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 311) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 322) | public Criteria andIdEqualToColumn(LitemallOrderGoods.Column column) { method andIdNotEqualTo (line 327) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 338) | public Criteria andIdNotEqualToColumn(LitemallOrderGoods.Column colu... method andIdGreaterThan (line 343) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 354) | public Criteria andIdGreaterThanColumn(LitemallOrderGoods.Column col... method andIdGreaterThanOrEqualTo (line 359) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 370) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallOrderGoods.C... method andIdLessThan (line 375) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 386) | public Criteria andIdLessThanColumn(LitemallOrderGoods.Column column) { method andIdLessThanOrEqualTo (line 391) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 402) | public Criteria andIdLessThanOrEqualToColumn(LitemallOrderGoods.Colu... method andIdIn (line 407) | public Criteria andIdIn(List values) { method andIdNotIn (line 412) | public Criteria andIdNotIn(List values) { method andIdBetween (line 417) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 422) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andOrderIdIsNull (line 427) | public Criteria andOrderIdIsNull() { method andOrderIdIsNotNull (line 432) | public Criteria andOrderIdIsNotNull() { method andOrderIdEqualTo (line 437) | public Criteria andOrderIdEqualTo(Integer value) { method andOrderIdEqualToColumn (line 448) | public Criteria andOrderIdEqualToColumn(LitemallOrderGoods.Column co... method andOrderIdNotEqualTo (line 453) | public Criteria andOrderIdNotEqualTo(Integer value) { method andOrderIdNotEqualToColumn (line 464) | public Criteria andOrderIdNotEqualToColumn(LitemallOrderGoods.Column... method andOrderIdGreaterThan (line 469) | public Criteria andOrderIdGreaterThan(Integer value) { method andOrderIdGreaterThanColumn (line 480) | public Criteria andOrderIdGreaterThanColumn(LitemallOrderGoods.Colum... method andOrderIdGreaterThanOrEqualTo (line 485) | public Criteria andOrderIdGreaterThanOrEqualTo(Integer value) { method andOrderIdGreaterThanOrEqualToColumn (line 496) | public Criteria andOrderIdGreaterThanOrEqualToColumn(LitemallOrderGo... method andOrderIdLessThan (line 501) | public Criteria andOrderIdLessThan(Integer value) { method andOrderIdLessThanColumn (line 512) | public Criteria andOrderIdLessThanColumn(LitemallOrderGoods.Column c... method andOrderIdLessThanOrEqualTo (line 517) | public Criteria andOrderIdLessThanOrEqualTo(Integer value) { method andOrderIdLessThanOrEqualToColumn (line 528) | public Criteria andOrderIdLessThanOrEqualToColumn(LitemallOrderGoods... method andOrderIdIn (line 533) | public Criteria andOrderIdIn(List values) { method andOrderIdNotIn (line 538) | public Criteria andOrderIdNotIn(List values) { method andOrderIdBetween (line 543) | public Criteria andOrderIdBetween(Integer value1, Integer value2) { method andOrderIdNotBetween (line 548) | public Criteria andOrderIdNotBetween(Integer value1, Integer value2) { method andGoodsIdIsNull (line 553) | public Criteria andGoodsIdIsNull() { method andGoodsIdIsNotNull (line 558) | public Criteria andGoodsIdIsNotNull() { method andGoodsIdEqualTo (line 563) | public Criteria andGoodsIdEqualTo(Integer value) { method andGoodsIdEqualToColumn (line 574) | public Criteria andGoodsIdEqualToColumn(LitemallOrderGoods.Column co... method andGoodsIdNotEqualTo (line 579) | public Criteria andGoodsIdNotEqualTo(Integer value) { method andGoodsIdNotEqualToColumn (line 590) | public Criteria andGoodsIdNotEqualToColumn(LitemallOrderGoods.Column... method andGoodsIdGreaterThan (line 595) | public Criteria andGoodsIdGreaterThan(Integer value) { method andGoodsIdGreaterThanColumn (line 606) | public Criteria andGoodsIdGreaterThanColumn(LitemallOrderGoods.Colum... method andGoodsIdGreaterThanOrEqualTo (line 611) | public Criteria andGoodsIdGreaterThanOrEqualTo(Integer value) { method andGoodsIdGreaterThanOrEqualToColumn (line 622) | public Criteria andGoodsIdGreaterThanOrEqualToColumn(LitemallOrderGo... method andGoodsIdLessThan (line 627) | public Criteria andGoodsIdLessThan(Integer value) { method andGoodsIdLessThanColumn (line 638) | public Criteria andGoodsIdLessThanColumn(LitemallOrderGoods.Column c... method andGoodsIdLessThanOrEqualTo (line 643) | public Criteria andGoodsIdLessThanOrEqualTo(Integer value) { method andGoodsIdLessThanOrEqualToColumn (line 654) | public Criteria andGoodsIdLessThanOrEqualToColumn(LitemallOrderGoods... method andGoodsIdIn (line 659) | public Criteria andGoodsIdIn(List values) { method andGoodsIdNotIn (line 664) | public Criteria andGoodsIdNotIn(List values) { method andGoodsIdBetween (line 669) | public Criteria andGoodsIdBetween(Integer value1, Integer value2) { method andGoodsIdNotBetween (line 674) | public Criteria andGoodsIdNotBetween(Integer value1, Integer value2) { method andGoodsNameIsNull (line 679) | public Criteria andGoodsNameIsNull() { method andGoodsNameIsNotNull (line 684) | public Criteria andGoodsNameIsNotNull() { method andGoodsNameEqualTo (line 689) | public Criteria andGoodsNameEqualTo(String value) { method andGoodsNameEqualToColumn (line 700) | public Criteria andGoodsNameEqualToColumn(LitemallOrderGoods.Column ... method andGoodsNameNotEqualTo (line 705) | public Criteria andGoodsNameNotEqualTo(String value) { method andGoodsNameNotEqualToColumn (line 716) | public Criteria andGoodsNameNotEqualToColumn(LitemallOrderGoods.Colu... method andGoodsNameGreaterThan (line 721) | public Criteria andGoodsNameGreaterThan(String value) { method andGoodsNameGreaterThanColumn (line 732) | public Criteria andGoodsNameGreaterThanColumn(LitemallOrderGoods.Col... method andGoodsNameGreaterThanOrEqualTo (line 737) | public Criteria andGoodsNameGreaterThanOrEqualTo(String value) { method andGoodsNameGreaterThanOrEqualToColumn (line 748) | public Criteria andGoodsNameGreaterThanOrEqualToColumn(LitemallOrder... method andGoodsNameLessThan (line 753) | public Criteria andGoodsNameLessThan(String value) { method andGoodsNameLessThanColumn (line 764) | public Criteria andGoodsNameLessThanColumn(LitemallOrderGoods.Column... method andGoodsNameLessThanOrEqualTo (line 769) | public Criteria andGoodsNameLessThanOrEqualTo(String value) { method andGoodsNameLessThanOrEqualToColumn (line 780) | public Criteria andGoodsNameLessThanOrEqualToColumn(LitemallOrderGoo... method andGoodsNameLike (line 785) | public Criteria andGoodsNameLike(String value) { method andGoodsNameNotLike (line 790) | public Criteria andGoodsNameNotLike(String value) { method andGoodsNameIn (line 795) | public Criteria andGoodsNameIn(List values) { method andGoodsNameNotIn (line 800) | public Criteria andGoodsNameNotIn(List values) { method andGoodsNameBetween (line 805) | public Criteria andGoodsNameBetween(String value1, String value2) { method andGoodsNameNotBetween (line 810) | public Criteria andGoodsNameNotBetween(String value1, String value2) { method andGoodsSnIsNull (line 815) | public Criteria andGoodsSnIsNull() { method andGoodsSnIsNotNull (line 820) | public Criteria andGoodsSnIsNotNull() { method andGoodsSnEqualTo (line 825) | public Criteria andGoodsSnEqualTo(String value) { method andGoodsSnEqualToColumn (line 836) | public Criteria andGoodsSnEqualToColumn(LitemallOrderGoods.Column co... method andGoodsSnNotEqualTo (line 841) | public Criteria andGoodsSnNotEqualTo(String value) { method andGoodsSnNotEqualToColumn (line 852) | public Criteria andGoodsSnNotEqualToColumn(LitemallOrderGoods.Column... method andGoodsSnGreaterThan (line 857) | public Criteria andGoodsSnGreaterThan(String value) { method andGoodsSnGreaterThanColumn (line 868) | public Criteria andGoodsSnGreaterThanColumn(LitemallOrderGoods.Colum... method andGoodsSnGreaterThanOrEqualTo (line 873) | public Criteria andGoodsSnGreaterThanOrEqualTo(String value) { method andGoodsSnGreaterThanOrEqualToColumn (line 884) | public Criteria andGoodsSnGreaterThanOrEqualToColumn(LitemallOrderGo... method andGoodsSnLessThan (line 889) | public Criteria andGoodsSnLessThan(String value) { method andGoodsSnLessThanColumn (line 900) | public Criteria andGoodsSnLessThanColumn(LitemallOrderGoods.Column c... method andGoodsSnLessThanOrEqualTo (line 905) | public Criteria andGoodsSnLessThanOrEqualTo(String value) { method andGoodsSnLessThanOrEqualToColumn (line 916) | public Criteria andGoodsSnLessThanOrEqualToColumn(LitemallOrderGoods... method andGoodsSnLike (line 921) | public Criteria andGoodsSnLike(String value) { method andGoodsSnNotLike (line 926) | public Criteria andGoodsSnNotLike(String value) { method andGoodsSnIn (line 931) | public Criteria andGoodsSnIn(List values) { method andGoodsSnNotIn (line 936) | public Criteria andGoodsSnNotIn(List values) { method andGoodsSnBetween (line 941) | public Criteria andGoodsSnBetween(String value1, String value2) { method andGoodsSnNotBetween (line 946) | public Criteria andGoodsSnNotBetween(String value1, String value2) { method andProductIdIsNull (line 951) | public Criteria andProductIdIsNull() { method andProductIdIsNotNull (line 956) | public Criteria andProductIdIsNotNull() { method andProductIdEqualTo (line 961) | public Criteria andProductIdEqualTo(Integer value) { method andProductIdEqualToColumn (line 972) | public Criteria andProductIdEqualToColumn(LitemallOrderGoods.Column ... method andProductIdNotEqualTo (line 977) | public Criteria andProductIdNotEqualTo(Integer value) { method andProductIdNotEqualToColumn (line 988) | public Criteria andProductIdNotEqualToColumn(LitemallOrderGoods.Colu... method andProductIdGreaterThan (line 993) | public Criteria andProductIdGreaterThan(Integer value) { method andProductIdGreaterThanColumn (line 1004) | public Criteria andProductIdGreaterThanColumn(LitemallOrderGoods.Col... method andProductIdGreaterThanOrEqualTo (line 1009) | public Criteria andProductIdGreaterThanOrEqualTo(Integer value) { method andProductIdGreaterThanOrEqualToColumn (line 1020) | public Criteria andProductIdGreaterThanOrEqualToColumn(LitemallOrder... method andProductIdLessThan (line 1025) | public Criteria andProductIdLessThan(Integer value) { method andProductIdLessThanColumn (line 1036) | public Criteria andProductIdLessThanColumn(LitemallOrderGoods.Column... method andProductIdLessThanOrEqualTo (line 1041) | public Criteria andProductIdLessThanOrEqualTo(Integer value) { method andProductIdLessThanOrEqualToColumn (line 1052) | public Criteria andProductIdLessThanOrEqualToColumn(LitemallOrderGoo... method andProductIdIn (line 1057) | public Criteria andProductIdIn(List values) { method andProductIdNotIn (line 1062) | public Criteria andProductIdNotIn(List values) { method andProductIdBetween (line 1067) | public Criteria andProductIdBetween(Integer value1, Integer value2) { method andProductIdNotBetween (line 1072) | public Criteria andProductIdNotBetween(Integer value1, Integer value... method andNumberIsNull (line 1077) | public Criteria andNumberIsNull() { method andNumberIsNotNull (line 1082) | public Criteria andNumberIsNotNull() { method andNumberEqualTo (line 1087) | public Criteria andNumberEqualTo(Short value) { method andNumberEqualToColumn (line 1098) | public Criteria andNumberEqualToColumn(LitemallOrderGoods.Column col... method andNumberNotEqualTo (line 1103) | public Criteria andNumberNotEqualTo(Short value) { method andNumberNotEqualToColumn (line 1114) | public Criteria andNumberNotEqualToColumn(LitemallOrderGoods.Column ... method andNumberGreaterThan (line 1119) | public Criteria andNumberGreaterThan(Short value) { method andNumberGreaterThanColumn (line 1130) | public Criteria andNumberGreaterThanColumn(LitemallOrderGoods.Column... method andNumberGreaterThanOrEqualTo (line 1135) | public Criteria andNumberGreaterThanOrEqualTo(Short value) { method andNumberGreaterThanOrEqualToColumn (line 1146) | public Criteria andNumberGreaterThanOrEqualToColumn(LitemallOrderGoo... method andNumberLessThan (line 1151) | public Criteria andNumberLessThan(Short value) { method andNumberLessThanColumn (line 1162) | public Criteria andNumberLessThanColumn(LitemallOrderGoods.Column co... method andNumberLessThanOrEqualTo (line 1167) | public Criteria andNumberLessThanOrEqualTo(Short value) { method andNumberLessThanOrEqualToColumn (line 1178) | public Criteria andNumberLessThanOrEqualToColumn(LitemallOrderGoods.... method andNumberIn (line 1183) | public Criteria andNumberIn(List values) { method andNumberNotIn (line 1188) | public Criteria andNumberNotIn(List values) { method andNumberBetween (line 1193) | public Criteria andNumberBetween(Short value1, Short value2) { method andNumberNotBetween (line 1198) | public Criteria andNumberNotBetween(Short value1, Short value2) { method andPriceIsNull (line 1203) | public Criteria andPriceIsNull() { method andPriceIsNotNull (line 1208) | public Criteria andPriceIsNotNull() { method andPriceEqualTo (line 1213) | public Criteria andPriceEqualTo(BigDecimal value) { method andPriceEqualToColumn (line 1224) | public Criteria andPriceEqualToColumn(LitemallOrderGoods.Column colu... method andPriceNotEqualTo (line 1229) | public Criteria andPriceNotEqualTo(BigDecimal value) { method andPriceNotEqualToColumn (line 1240) | public Criteria andPriceNotEqualToColumn(LitemallOrderGoods.Column c... method andPriceGreaterThan (line 1245) | public Criteria andPriceGreaterThan(BigDecimal value) { method andPriceGreaterThanColumn (line 1256) | public Criteria andPriceGreaterThanColumn(LitemallOrderGoods.Column ... method andPriceGreaterThanOrEqualTo (line 1261) | public Criteria andPriceGreaterThanOrEqualTo(BigDecimal value) { method andPriceGreaterThanOrEqualToColumn (line 1272) | public Criteria andPriceGreaterThanOrEqualToColumn(LitemallOrderGood... method andPriceLessThan (line 1277) | public Criteria andPriceLessThan(BigDecimal value) { method andPriceLessThanColumn (line 1288) | public Criteria andPriceLessThanColumn(LitemallOrderGoods.Column col... method andPriceLessThanOrEqualTo (line 1293) | public Criteria andPriceLessThanOrEqualTo(BigDecimal value) { method andPriceLessThanOrEqualToColumn (line 1304) | public Criteria andPriceLessThanOrEqualToColumn(LitemallOrderGoods.C... method andPriceIn (line 1309) | public Criteria andPriceIn(List values) { method andPriceNotIn (line 1314) | public Criteria andPriceNotIn(List values) { method andPriceBetween (line 1319) | public Criteria andPriceBetween(BigDecimal value1, BigDecimal value2) { method andPriceNotBetween (line 1324) | public Criteria andPriceNotBetween(BigDecimal value1, BigDecimal val... method andSpecificationsIsNull (line 1329) | public Criteria andSpecificationsIsNull() { method andSpecificationsIsNotNull (line 1334) | public Criteria andSpecificationsIsNotNull() { method andSpecificationsEqualTo (line 1339) | public Criteria andSpecificationsEqualTo(String[] value) { method andSpecificationsEqualToColumn (line 1350) | public Criteria andSpecificationsEqualToColumn(LitemallOrderGoods.Co... method andSpecificationsNotEqualTo (line 1355) | public Criteria andSpecificationsNotEqualTo(String[] value) { method andSpecificationsNotEqualToColumn (line 1366) | public Criteria andSpecificationsNotEqualToColumn(LitemallOrderGoods... method andSpecificationsGreaterThan (line 1371) | public Criteria andSpecificationsGreaterThan(String[] value) { method andSpecificationsGreaterThanColumn (line 1382) | public Criteria andSpecificationsGreaterThanColumn(LitemallOrderGood... method andSpecificationsGreaterThanOrEqualTo (line 1387) | public Criteria andSpecificationsGreaterThanOrEqualTo(String[] value) { method andSpecificationsGreaterThanOrEqualToColumn (line 1398) | public Criteria andSpecificationsGreaterThanOrEqualToColumn(Litemall... method andSpecificationsLessThan (line 1403) | public Criteria andSpecificationsLessThan(String[] value) { method andSpecificationsLessThanColumn (line 1414) | public Criteria andSpecificationsLessThanColumn(LitemallOrderGoods.C... method andSpecificationsLessThanOrEqualTo (line 1419) | public Criteria andSpecificationsLessThanOrEqualTo(String[] value) { method andSpecificationsLessThanOrEqualToColumn (line 1430) | public Criteria andSpecificationsLessThanOrEqualToColumn(LitemallOrd... method andSpecificationsLike (line 1435) | public Criteria andSpecificationsLike(String[] value) { method andSpecificationsNotLike (line 1440) | public Criteria andSpecificationsNotLike(String[] value) { method andSpecificationsIn (line 1445) | public Criteria andSpecificationsIn(List values) { method andSpecificationsNotIn (line 1450) | public Criteria andSpecificationsNotIn(List values) { method andSpecificationsBetween (line 1455) | public Criteria andSpecificationsBetween(String[] value1, String[] v... method andSpecificationsNotBetween (line 1460) | public Criteria andSpecificationsNotBetween(String[] value1, String[... method andPicUrlIsNull (line 1465) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 1470) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 1475) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 1486) | public Criteria andPicUrlEqualToColumn(LitemallOrderGoods.Column col... method andPicUrlNotEqualTo (line 1491) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 1502) | public Criteria andPicUrlNotEqualToColumn(LitemallOrderGoods.Column ... method andPicUrlGreaterThan (line 1507) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 1518) | public Criteria andPicUrlGreaterThanColumn(LitemallOrderGoods.Column... method andPicUrlGreaterThanOrEqualTo (line 1523) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 1534) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallOrderGoo... method andPicUrlLessThan (line 1539) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 1550) | public Criteria andPicUrlLessThanColumn(LitemallOrderGoods.Column co... method andPicUrlLessThanOrEqualTo (line 1555) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 1566) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallOrderGoods.... method andPicUrlLike (line 1571) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 1576) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 1581) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 1586) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 1591) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 1596) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andCommentIsNull (line 1601) | public Criteria andCommentIsNull() { method andCommentIsNotNull (line 1606) | public Criteria andCommentIsNotNull() { method andCommentEqualTo (line 1611) | public Criteria andCommentEqualTo(Integer value) { method andCommentEqualToColumn (line 1622) | public Criteria andCommentEqualToColumn(LitemallOrderGoods.Column co... method andCommentNotEqualTo (line 1627) | public Criteria andCommentNotEqualTo(Integer value) { method andCommentNotEqualToColumn (line 1638) | public Criteria andCommentNotEqualToColumn(LitemallOrderGoods.Column... method andCommentGreaterThan (line 1643) | public Criteria andCommentGreaterThan(Integer value) { method andCommentGreaterThanColumn (line 1654) | public Criteria andCommentGreaterThanColumn(LitemallOrderGoods.Colum... method andCommentGreaterThanOrEqualTo (line 1659) | public Criteria andCommentGreaterThanOrEqualTo(Integer value) { method andCommentGreaterThanOrEqualToColumn (line 1670) | public Criteria andCommentGreaterThanOrEqualToColumn(LitemallOrderGo... method andCommentLessThan (line 1675) | public Criteria andCommentLessThan(Integer value) { method andCommentLessThanColumn (line 1686) | public Criteria andCommentLessThanColumn(LitemallOrderGoods.Column c... method andCommentLessThanOrEqualTo (line 1691) | public Criteria andCommentLessThanOrEqualTo(Integer value) { method andCommentLessThanOrEqualToColumn (line 1702) | public Criteria andCommentLessThanOrEqualToColumn(LitemallOrderGoods... method andCommentIn (line 1707) | public Criteria andCommentIn(List values) { method andCommentNotIn (line 1712) | public Criteria andCommentNotIn(List values) { method andCommentBetween (line 1717) | public Criteria andCommentBetween(Integer value1, Integer value2) { method andCommentNotBetween (line 1722) | public Criteria andCommentNotBetween(Integer value1, Integer value2) { method andAddTimeIsNull (line 1727) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1732) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1737) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1748) | public Criteria andAddTimeEqualToColumn(LitemallOrderGoods.Column co... method andAddTimeNotEqualTo (line 1753) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1764) | public Criteria andAddTimeNotEqualToColumn(LitemallOrderGoods.Column... method andAddTimeGreaterThan (line 1769) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1780) | public Criteria andAddTimeGreaterThanColumn(LitemallOrderGoods.Colum... method andAddTimeGreaterThanOrEqualTo (line 1785) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1796) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallOrderGo... method andAddTimeLessThan (line 1801) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1812) | public Criteria andAddTimeLessThanColumn(LitemallOrderGoods.Column c... method andAddTimeLessThanOrEqualTo (line 1817) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1828) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallOrderGoods... method andAddTimeIn (line 1833) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1838) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1843) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1848) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1853) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1858) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1863) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1874) | public Criteria andUpdateTimeEqualToColumn(LitemallOrderGoods.Column... method andUpdateTimeNotEqualTo (line 1879) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1890) | public Criteria andUpdateTimeNotEqualToColumn(LitemallOrderGoods.Col... method andUpdateTimeGreaterThan (line 1895) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1906) | public Criteria andUpdateTimeGreaterThanColumn(LitemallOrderGoods.Co... method andUpdateTimeGreaterThanOrEqualTo (line 1911) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1922) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallOrde... method andUpdateTimeLessThan (line 1927) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1938) | public Criteria andUpdateTimeLessThanColumn(LitemallOrderGoods.Colum... method andUpdateTimeLessThanOrEqualTo (line 1943) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1954) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallOrderGo... method andUpdateTimeIn (line 1959) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1964) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1969) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1974) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1979) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1984) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1989) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 2000) | public Criteria andDeletedEqualToColumn(LitemallOrderGoods.Column co... method andDeletedNotEqualTo (line 2005) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 2016) | public Criteria andDeletedNotEqualToColumn(LitemallOrderGoods.Column... method andDeletedGreaterThan (line 2021) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 2032) | public Criteria andDeletedGreaterThanColumn(LitemallOrderGoods.Colum... method andDeletedGreaterThanOrEqualTo (line 2037) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 2048) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallOrderGo... method andDeletedLessThan (line 2053) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 2064) | public Criteria andDeletedLessThanColumn(LitemallOrderGoods.Column c... method andDeletedLessThanOrEqualTo (line 2069) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 2080) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallOrderGoods... method andDeletedIn (line 2085) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 2090) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 2095) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 2100) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 2112) | public static class Criteria extends GeneratedCriteria { method Criteria (line 2127) | protected Criteria(LitemallOrderGoodsExample example) { method example (line 2138) | public LitemallOrderGoodsExample example() { method andIf (line 2148) | @Deprecated method when (line 2162) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 2175) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 2190) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 2194) | @Deprecated method add (line 2202) | Criteria add(Criteria add); class Criterion (line 2212) | public static class Criterion { method getCondition (line 2229) | public String getCondition() { method getValue (line 2233) | public Object getValue() { method getSecondValue (line 2237) | public Object getSecondValue() { method isNoValue (line 2241) | public boolean isNoValue() { method isSingleValue (line 2245) | public boolean isSingleValue() { method isBetweenValue (line 2249) | public boolean isBetweenValue() { method isListValue (line 2253) | public boolean isListValue() { method getTypeHandler (line 2257) | public String getTypeHandler() { method Criterion (line 2261) | protected Criterion(String condition) { method Criterion (line 2268) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2280) | protected Criterion(String condition, Object value) { method Criterion (line 2284) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2293) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2298) | public interface ICriteriaWhen { method criteria (line 2305) | void criteria(Criteria criteria); type IExampleWhen (line 2308) | public interface IExampleWhen { method example (line 2315) | void example(org.linlinjava.litemall.db.domain.LitemallOrderGoodsExa... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallPermission.java class LitemallPermission (line 7) | public class LitemallPermission { method getId (line 86) | public Integer getId() { method setId (line 98) | public void setId(Integer id) { method getRoleId (line 110) | public Integer getRoleId() { method setRoleId (line 122) | public void setRoleId(Integer roleId) { method getPermission (line 134) | public String getPermission() { method setPermission (line 146) | public void setPermission(String permission) { method getAddTime (line 158) | public LocalDateTime getAddTime() { method setAddTime (line 170) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 182) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 194) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 204) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 216) | public Boolean getDeleted() { method setDeleted (line 228) | public void setDeleted(Boolean deleted) { method toString (line 238) | @Override method equals (line 262) | @Override method hashCode (line 288) | @Override type Deleted (line 307) | public enum Deleted { method Deleted (line 333) | Deleted(Boolean value, String name) { method getValue (line 344) | public Boolean getValue() { method value (line 354) | public Boolean value() { method getName (line 364) | public String getName() { type Column (line 375) | public enum Column { method value (line 437) | public String value() { method getValue (line 447) | public String getValue() { method getJavaProperty (line 457) | public String getJavaProperty() { method getJdbcType (line 467) | public String getJdbcType() { method Column (line 477) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 490) | public String desc() { method asc (line 500) | public String asc() { method excludes (line 510) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 524) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 538) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallPermissionExample.java class LitemallPermissionExample (line 7) | public class LitemallPermissionExample { method LitemallPermissionExample (line 38) | public LitemallPermissionExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallPermissionExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallPermissionExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallPermissionExample when(boolean condition, IExampleWhen ... method when (line 210) | public LitemallPermissionExample when(boolean condition, IExampleWhen ... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallPermission.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallPermission.Column colu... method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallPermission.Column col... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallPermission.C... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallPermission.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallPermission.Colu... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andRoleIdIsNull (line 392) | public Criteria andRoleIdIsNull() { method andRoleIdIsNotNull (line 397) | public Criteria andRoleIdIsNotNull() { method andRoleIdEqualTo (line 402) | public Criteria andRoleIdEqualTo(Integer value) { method andRoleIdEqualToColumn (line 413) | public Criteria andRoleIdEqualToColumn(LitemallPermission.Column col... method andRoleIdNotEqualTo (line 418) | public Criteria andRoleIdNotEqualTo(Integer value) { method andRoleIdNotEqualToColumn (line 429) | public Criteria andRoleIdNotEqualToColumn(LitemallPermission.Column ... method andRoleIdGreaterThan (line 434) | public Criteria andRoleIdGreaterThan(Integer value) { method andRoleIdGreaterThanColumn (line 445) | public Criteria andRoleIdGreaterThanColumn(LitemallPermission.Column... method andRoleIdGreaterThanOrEqualTo (line 450) | public Criteria andRoleIdGreaterThanOrEqualTo(Integer value) { method andRoleIdGreaterThanOrEqualToColumn (line 461) | public Criteria andRoleIdGreaterThanOrEqualToColumn(LitemallPermissi... method andRoleIdLessThan (line 466) | public Criteria andRoleIdLessThan(Integer value) { method andRoleIdLessThanColumn (line 477) | public Criteria andRoleIdLessThanColumn(LitemallPermission.Column co... method andRoleIdLessThanOrEqualTo (line 482) | public Criteria andRoleIdLessThanOrEqualTo(Integer value) { method andRoleIdLessThanOrEqualToColumn (line 493) | public Criteria andRoleIdLessThanOrEqualToColumn(LitemallPermission.... method andRoleIdIn (line 498) | public Criteria andRoleIdIn(List values) { method andRoleIdNotIn (line 503) | public Criteria andRoleIdNotIn(List values) { method andRoleIdBetween (line 508) | public Criteria andRoleIdBetween(Integer value1, Integer value2) { method andRoleIdNotBetween (line 513) | public Criteria andRoleIdNotBetween(Integer value1, Integer value2) { method andPermissionIsNull (line 518) | public Criteria andPermissionIsNull() { method andPermissionIsNotNull (line 523) | public Criteria andPermissionIsNotNull() { method andPermissionEqualTo (line 528) | public Criteria andPermissionEqualTo(String value) { method andPermissionEqualToColumn (line 539) | public Criteria andPermissionEqualToColumn(LitemallPermission.Column... method andPermissionNotEqualTo (line 544) | public Criteria andPermissionNotEqualTo(String value) { method andPermissionNotEqualToColumn (line 555) | public Criteria andPermissionNotEqualToColumn(LitemallPermission.Col... method andPermissionGreaterThan (line 560) | public Criteria andPermissionGreaterThan(String value) { method andPermissionGreaterThanColumn (line 571) | public Criteria andPermissionGreaterThanColumn(LitemallPermission.Co... method andPermissionGreaterThanOrEqualTo (line 576) | public Criteria andPermissionGreaterThanOrEqualTo(String value) { method andPermissionGreaterThanOrEqualToColumn (line 587) | public Criteria andPermissionGreaterThanOrEqualToColumn(LitemallPerm... method andPermissionLessThan (line 592) | public Criteria andPermissionLessThan(String value) { method andPermissionLessThanColumn (line 603) | public Criteria andPermissionLessThanColumn(LitemallPermission.Colum... method andPermissionLessThanOrEqualTo (line 608) | public Criteria andPermissionLessThanOrEqualTo(String value) { method andPermissionLessThanOrEqualToColumn (line 619) | public Criteria andPermissionLessThanOrEqualToColumn(LitemallPermiss... method andPermissionLike (line 624) | public Criteria andPermissionLike(String value) { method andPermissionNotLike (line 629) | public Criteria andPermissionNotLike(String value) { method andPermissionIn (line 634) | public Criteria andPermissionIn(List values) { method andPermissionNotIn (line 639) | public Criteria andPermissionNotIn(List values) { method andPermissionBetween (line 644) | public Criteria andPermissionBetween(String value1, String value2) { method andPermissionNotBetween (line 649) | public Criteria andPermissionNotBetween(String value1, String value2) { method andAddTimeIsNull (line 654) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 659) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 664) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 675) | public Criteria andAddTimeEqualToColumn(LitemallPermission.Column co... method andAddTimeNotEqualTo (line 680) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 691) | public Criteria andAddTimeNotEqualToColumn(LitemallPermission.Column... method andAddTimeGreaterThan (line 696) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 707) | public Criteria andAddTimeGreaterThanColumn(LitemallPermission.Colum... method andAddTimeGreaterThanOrEqualTo (line 712) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 723) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallPermiss... method andAddTimeLessThan (line 728) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 739) | public Criteria andAddTimeLessThanColumn(LitemallPermission.Column c... method andAddTimeLessThanOrEqualTo (line 744) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 755) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallPermission... method andAddTimeIn (line 760) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 765) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 770) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 775) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 780) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 785) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 790) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 801) | public Criteria andUpdateTimeEqualToColumn(LitemallPermission.Column... method andUpdateTimeNotEqualTo (line 806) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 817) | public Criteria andUpdateTimeNotEqualToColumn(LitemallPermission.Col... method andUpdateTimeGreaterThan (line 822) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 833) | public Criteria andUpdateTimeGreaterThanColumn(LitemallPermission.Co... method andUpdateTimeGreaterThanOrEqualTo (line 838) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 849) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallPerm... method andUpdateTimeLessThan (line 854) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 865) | public Criteria andUpdateTimeLessThanColumn(LitemallPermission.Colum... method andUpdateTimeLessThanOrEqualTo (line 870) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 881) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallPermiss... method andUpdateTimeIn (line 886) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 891) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 896) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 901) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 906) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 911) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 916) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 927) | public Criteria andDeletedEqualToColumn(LitemallPermission.Column co... method andDeletedNotEqualTo (line 932) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 943) | public Criteria andDeletedNotEqualToColumn(LitemallPermission.Column... method andDeletedGreaterThan (line 948) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 959) | public Criteria andDeletedGreaterThanColumn(LitemallPermission.Colum... method andDeletedGreaterThanOrEqualTo (line 964) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 975) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallPermiss... method andDeletedLessThan (line 980) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 991) | public Criteria andDeletedLessThanColumn(LitemallPermission.Column c... method andDeletedLessThanOrEqualTo (line 996) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1007) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallPermission... method andDeletedIn (line 1012) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1017) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1022) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1027) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1039) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1054) | protected Criteria(LitemallPermissionExample example) { method example (line 1065) | public LitemallPermissionExample example() { method andIf (line 1075) | @Deprecated method when (line 1089) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1102) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1117) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1121) | @Deprecated method add (line 1129) | Criteria add(Criteria add); class Criterion (line 1139) | public static class Criterion { method getCondition (line 1156) | public String getCondition() { method getValue (line 1160) | public Object getValue() { method getSecondValue (line 1164) | public Object getSecondValue() { method isNoValue (line 1168) | public boolean isNoValue() { method isSingleValue (line 1172) | public boolean isSingleValue() { method isBetweenValue (line 1176) | public boolean isBetweenValue() { method isListValue (line 1180) | public boolean isListValue() { method getTypeHandler (line 1184) | public String getTypeHandler() { method Criterion (line 1188) | protected Criterion(String condition) { method Criterion (line 1195) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1207) | protected Criterion(String condition, Object value) { method Criterion (line 1211) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1220) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1225) | public interface ICriteriaWhen { method criteria (line 1232) | void criteria(Criteria criteria); type IExampleWhen (line 1235) | public interface IExampleWhen { method example (line 1242) | void example(org.linlinjava.litemall.db.domain.LitemallPermissionExa... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallRegion.java class LitemallRegion (line 6) | public class LitemallRegion { method getId (line 60) | public Integer getId() { method setId (line 72) | public void setId(Integer id) { method getPid (line 84) | public Integer getPid() { method setPid (line 96) | public void setPid(Integer pid) { method getName (line 108) | public String getName() { method setName (line 120) | public void setName(String name) { method getType (line 132) | public Byte getType() { method setType (line 144) | public void setType(Byte type) { method getCode (line 156) | public Integer getCode() { method setCode (line 168) | public void setCode(Integer code) { method toString (line 178) | @Override method equals (line 199) | @Override method hashCode (line 224) | @Override type Column (line 242) | public enum Column { method value (line 303) | public String value() { method getValue (line 313) | public String getValue() { method getJavaProperty (line 323) | public String getJavaProperty() { method getJdbcType (line 333) | public String getJdbcType() { method Column (line 343) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 356) | public String desc() { method asc (line 366) | public String asc() { method excludes (line 376) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 390) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 404) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallRegionExample.java class LitemallRegionExample (line 6) | public class LitemallRegionExample { method LitemallRegionExample (line 37) | public LitemallRegionExample() { method setOrderByClause (line 47) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 57) | public String getOrderByClause() { method setDistinct (line 67) | public void setDistinct(boolean distinct) { method isDistinct (line 77) | public boolean isDistinct() { method getOredCriteria (line 87) | public List getOredCriteria() { method or (line 97) | public void or(Criteria criteria) { method or (line 107) | public Criteria or() { method orderBy (line 119) | public LitemallRegionExample orderBy(String orderByClause) { method orderBy (line 130) | public LitemallRegionExample orderBy(String ... orderByClauses) { method createCriteria (line 148) | public Criteria createCriteria() { method createCriteriaInternal (line 162) | protected Criteria createCriteriaInternal() { method clear (line 173) | public void clear() { method newAndCreateCriteria (line 185) | public static Criteria newAndCreateCriteria() { method when (line 196) | public LitemallRegionExample when(boolean condition, IExampleWhen then) { method when (line 209) | public LitemallRegionExample when(boolean condition, IExampleWhen then... class GeneratedCriteria (line 224) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 227) | protected GeneratedCriteria() { method isValid (line 232) | public boolean isValid() { method getAllCriteria (line 236) | public List getAllCriteria() { method getCriteria (line 240) | public List getCriteria() { method addCriterion (line 244) | protected void addCriterion(String condition) { method addCriterion (line 251) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 258) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 265) | public Criteria andIdIsNull() { method andIdIsNotNull (line 270) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 275) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 286) | public Criteria andIdEqualToColumn(LitemallRegion.Column column) { method andIdNotEqualTo (line 291) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 302) | public Criteria andIdNotEqualToColumn(LitemallRegion.Column column) { method andIdGreaterThan (line 307) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 318) | public Criteria andIdGreaterThanColumn(LitemallRegion.Column column) { method andIdGreaterThanOrEqualTo (line 323) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 334) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallRegion.Colum... method andIdLessThan (line 339) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 350) | public Criteria andIdLessThanColumn(LitemallRegion.Column column) { method andIdLessThanOrEqualTo (line 355) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 366) | public Criteria andIdLessThanOrEqualToColumn(LitemallRegion.Column c... method andIdIn (line 371) | public Criteria andIdIn(List values) { method andIdNotIn (line 376) | public Criteria andIdNotIn(List values) { method andIdBetween (line 381) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 386) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andPidIsNull (line 391) | public Criteria andPidIsNull() { method andPidIsNotNull (line 396) | public Criteria andPidIsNotNull() { method andPidEqualTo (line 401) | public Criteria andPidEqualTo(Integer value) { method andPidEqualToColumn (line 412) | public Criteria andPidEqualToColumn(LitemallRegion.Column column) { method andPidNotEqualTo (line 417) | public Criteria andPidNotEqualTo(Integer value) { method andPidNotEqualToColumn (line 428) | public Criteria andPidNotEqualToColumn(LitemallRegion.Column column) { method andPidGreaterThan (line 433) | public Criteria andPidGreaterThan(Integer value) { method andPidGreaterThanColumn (line 444) | public Criteria andPidGreaterThanColumn(LitemallRegion.Column column) { method andPidGreaterThanOrEqualTo (line 449) | public Criteria andPidGreaterThanOrEqualTo(Integer value) { method andPidGreaterThanOrEqualToColumn (line 460) | public Criteria andPidGreaterThanOrEqualToColumn(LitemallRegion.Colu... method andPidLessThan (line 465) | public Criteria andPidLessThan(Integer value) { method andPidLessThanColumn (line 476) | public Criteria andPidLessThanColumn(LitemallRegion.Column column) { method andPidLessThanOrEqualTo (line 481) | public Criteria andPidLessThanOrEqualTo(Integer value) { method andPidLessThanOrEqualToColumn (line 492) | public Criteria andPidLessThanOrEqualToColumn(LitemallRegion.Column ... method andPidIn (line 497) | public Criteria andPidIn(List values) { method andPidNotIn (line 502) | public Criteria andPidNotIn(List values) { method andPidBetween (line 507) | public Criteria andPidBetween(Integer value1, Integer value2) { method andPidNotBetween (line 512) | public Criteria andPidNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 517) | public Criteria andNameIsNull() { method andNameIsNotNull (line 522) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 527) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 538) | public Criteria andNameEqualToColumn(LitemallRegion.Column column) { method andNameNotEqualTo (line 543) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 554) | public Criteria andNameNotEqualToColumn(LitemallRegion.Column column) { method andNameGreaterThan (line 559) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 570) | public Criteria andNameGreaterThanColumn(LitemallRegion.Column colum... method andNameGreaterThanOrEqualTo (line 575) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 586) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallRegion.Col... method andNameLessThan (line 591) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 602) | public Criteria andNameLessThanColumn(LitemallRegion.Column column) { method andNameLessThanOrEqualTo (line 607) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 618) | public Criteria andNameLessThanOrEqualToColumn(LitemallRegion.Column... method andNameLike (line 623) | public Criteria andNameLike(String value) { method andNameNotLike (line 628) | public Criteria andNameNotLike(String value) { method andNameIn (line 633) | public Criteria andNameIn(List values) { method andNameNotIn (line 638) | public Criteria andNameNotIn(List values) { method andNameBetween (line 643) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 648) | public Criteria andNameNotBetween(String value1, String value2) { method andTypeIsNull (line 653) | public Criteria andTypeIsNull() { method andTypeIsNotNull (line 658) | public Criteria andTypeIsNotNull() { method andTypeEqualTo (line 663) | public Criteria andTypeEqualTo(Byte value) { method andTypeEqualToColumn (line 674) | public Criteria andTypeEqualToColumn(LitemallRegion.Column column) { method andTypeNotEqualTo (line 679) | public Criteria andTypeNotEqualTo(Byte value) { method andTypeNotEqualToColumn (line 690) | public Criteria andTypeNotEqualToColumn(LitemallRegion.Column column) { method andTypeGreaterThan (line 695) | public Criteria andTypeGreaterThan(Byte value) { method andTypeGreaterThanColumn (line 706) | public Criteria andTypeGreaterThanColumn(LitemallRegion.Column colum... method andTypeGreaterThanOrEqualTo (line 711) | public Criteria andTypeGreaterThanOrEqualTo(Byte value) { method andTypeGreaterThanOrEqualToColumn (line 722) | public Criteria andTypeGreaterThanOrEqualToColumn(LitemallRegion.Col... method andTypeLessThan (line 727) | public Criteria andTypeLessThan(Byte value) { method andTypeLessThanColumn (line 738) | public Criteria andTypeLessThanColumn(LitemallRegion.Column column) { method andTypeLessThanOrEqualTo (line 743) | public Criteria andTypeLessThanOrEqualTo(Byte value) { method andTypeLessThanOrEqualToColumn (line 754) | public Criteria andTypeLessThanOrEqualToColumn(LitemallRegion.Column... method andTypeIn (line 759) | public Criteria andTypeIn(List values) { method andTypeNotIn (line 764) | public Criteria andTypeNotIn(List values) { method andTypeBetween (line 769) | public Criteria andTypeBetween(Byte value1, Byte value2) { method andTypeNotBetween (line 774) | public Criteria andTypeNotBetween(Byte value1, Byte value2) { method andCodeIsNull (line 779) | public Criteria andCodeIsNull() { method andCodeIsNotNull (line 784) | public Criteria andCodeIsNotNull() { method andCodeEqualTo (line 789) | public Criteria andCodeEqualTo(Integer value) { method andCodeEqualToColumn (line 800) | public Criteria andCodeEqualToColumn(LitemallRegion.Column column) { method andCodeNotEqualTo (line 805) | public Criteria andCodeNotEqualTo(Integer value) { method andCodeNotEqualToColumn (line 816) | public Criteria andCodeNotEqualToColumn(LitemallRegion.Column column) { method andCodeGreaterThan (line 821) | public Criteria andCodeGreaterThan(Integer value) { method andCodeGreaterThanColumn (line 832) | public Criteria andCodeGreaterThanColumn(LitemallRegion.Column colum... method andCodeGreaterThanOrEqualTo (line 837) | public Criteria andCodeGreaterThanOrEqualTo(Integer value) { method andCodeGreaterThanOrEqualToColumn (line 848) | public Criteria andCodeGreaterThanOrEqualToColumn(LitemallRegion.Col... method andCodeLessThan (line 853) | public Criteria andCodeLessThan(Integer value) { method andCodeLessThanColumn (line 864) | public Criteria andCodeLessThanColumn(LitemallRegion.Column column) { method andCodeLessThanOrEqualTo (line 869) | public Criteria andCodeLessThanOrEqualTo(Integer value) { method andCodeLessThanOrEqualToColumn (line 880) | public Criteria andCodeLessThanOrEqualToColumn(LitemallRegion.Column... method andCodeIn (line 885) | public Criteria andCodeIn(List values) { method andCodeNotIn (line 890) | public Criteria andCodeNotIn(List values) { method andCodeBetween (line 895) | public Criteria andCodeBetween(Integer value1, Integer value2) { method andCodeNotBetween (line 900) | public Criteria andCodeNotBetween(Integer value1, Integer value2) { class Criteria (line 912) | public static class Criteria extends GeneratedCriteria { method Criteria (line 927) | protected Criteria(LitemallRegionExample example) { method example (line 938) | public LitemallRegionExample example() { method andIf (line 948) | @Deprecated method when (line 962) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 975) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... type ICriteriaAdd (line 984) | @Deprecated method add (line 992) | Criteria add(Criteria add); class Criterion (line 1002) | public static class Criterion { method getCondition (line 1019) | public String getCondition() { method getValue (line 1023) | public Object getValue() { method getSecondValue (line 1027) | public Object getSecondValue() { method isNoValue (line 1031) | public boolean isNoValue() { method isSingleValue (line 1035) | public boolean isSingleValue() { method isBetweenValue (line 1039) | public boolean isBetweenValue() { method isListValue (line 1043) | public boolean isListValue() { method getTypeHandler (line 1047) | public String getTypeHandler() { method Criterion (line 1051) | protected Criterion(String condition) { method Criterion (line 1058) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1070) | protected Criterion(String condition, Object value) { method Criterion (line 1074) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1083) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1088) | public interface ICriteriaWhen { method criteria (line 1095) | void criteria(Criteria criteria); type IExampleWhen (line 1098) | public interface IExampleWhen { method example (line 1105) | void example(org.linlinjava.litemall.db.domain.LitemallRegionExample... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallRole.java class LitemallRole (line 7) | public class LitemallRole { method getId (line 95) | public Integer getId() { method setId (line 107) | public void setId(Integer id) { method getName (line 119) | public String getName() { method setName (line 131) | public void setName(String name) { method getDesc (line 143) | public String getDesc() { method setDesc (line 155) | public void setDesc(String desc) { method getEnabled (line 167) | public Boolean getEnabled() { method setEnabled (line 179) | public void setEnabled(Boolean enabled) { method getAddTime (line 191) | public LocalDateTime getAddTime() { method setAddTime (line 203) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 215) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 227) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 237) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 249) | public Boolean getDeleted() { method setDeleted (line 261) | public void setDeleted(Boolean deleted) { method toString (line 271) | @Override method equals (line 296) | @Override method hashCode (line 323) | @Override type Deleted (line 343) | public enum Deleted { method Deleted (line 369) | Deleted(Boolean value, String name) { method getValue (line 380) | public Boolean getValue() { method value (line 390) | public Boolean value() { method getName (line 400) | public String getName() { type Column (line 411) | public enum Column { method value (line 474) | public String value() { method getValue (line 484) | public String getValue() { method getJavaProperty (line 494) | public String getJavaProperty() { method getJdbcType (line 504) | public String getJdbcType() { method Column (line 514) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 527) | public String desc() { method asc (line 537) | public String asc() { method excludes (line 547) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 561) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 575) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallRoleExample.java class LitemallRoleExample (line 7) | public class LitemallRoleExample { method LitemallRoleExample (line 38) | public LitemallRoleExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallRoleExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallRoleExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallRoleExample when(boolean condition, IExampleWhen then) { method when (line 210) | public LitemallRoleExample when(boolean condition, IExampleWhen then, ... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallRole.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallRole.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallRole.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallRole.Column ... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallRole.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallRole.Column col... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 392) | public Criteria andNameIsNull() { method andNameIsNotNull (line 397) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 402) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 413) | public Criteria andNameEqualToColumn(LitemallRole.Column column) { method andNameNotEqualTo (line 418) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 429) | public Criteria andNameNotEqualToColumn(LitemallRole.Column column) { method andNameGreaterThan (line 434) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 445) | public Criteria andNameGreaterThanColumn(LitemallRole.Column column) { method andNameGreaterThanOrEqualTo (line 450) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 461) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallRole.Colum... method andNameLessThan (line 466) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 477) | public Criteria andNameLessThanColumn(LitemallRole.Column column) { method andNameLessThanOrEqualTo (line 482) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 493) | public Criteria andNameLessThanOrEqualToColumn(LitemallRole.Column c... method andNameLike (line 498) | public Criteria andNameLike(String value) { method andNameNotLike (line 503) | public Criteria andNameNotLike(String value) { method andNameIn (line 508) | public Criteria andNameIn(List values) { method andNameNotIn (line 513) | public Criteria andNameNotIn(List values) { method andNameBetween (line 518) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 523) | public Criteria andNameNotBetween(String value1, String value2) { method andDescIsNull (line 528) | public Criteria andDescIsNull() { method andDescIsNotNull (line 533) | public Criteria andDescIsNotNull() { method andDescEqualTo (line 538) | public Criteria andDescEqualTo(String value) { method andDescEqualToColumn (line 549) | public Criteria andDescEqualToColumn(LitemallRole.Column column) { method andDescNotEqualTo (line 554) | public Criteria andDescNotEqualTo(String value) { method andDescNotEqualToColumn (line 565) | public Criteria andDescNotEqualToColumn(LitemallRole.Column column) { method andDescGreaterThan (line 570) | public Criteria andDescGreaterThan(String value) { method andDescGreaterThanColumn (line 581) | public Criteria andDescGreaterThanColumn(LitemallRole.Column column) { method andDescGreaterThanOrEqualTo (line 586) | public Criteria andDescGreaterThanOrEqualTo(String value) { method andDescGreaterThanOrEqualToColumn (line 597) | public Criteria andDescGreaterThanOrEqualToColumn(LitemallRole.Colum... method andDescLessThan (line 602) | public Criteria andDescLessThan(String value) { method andDescLessThanColumn (line 613) | public Criteria andDescLessThanColumn(LitemallRole.Column column) { method andDescLessThanOrEqualTo (line 618) | public Criteria andDescLessThanOrEqualTo(String value) { method andDescLessThanOrEqualToColumn (line 629) | public Criteria andDescLessThanOrEqualToColumn(LitemallRole.Column c... method andDescLike (line 634) | public Criteria andDescLike(String value) { method andDescNotLike (line 639) | public Criteria andDescNotLike(String value) { method andDescIn (line 644) | public Criteria andDescIn(List values) { method andDescNotIn (line 649) | public Criteria andDescNotIn(List values) { method andDescBetween (line 654) | public Criteria andDescBetween(String value1, String value2) { method andDescNotBetween (line 659) | public Criteria andDescNotBetween(String value1, String value2) { method andEnabledIsNull (line 664) | public Criteria andEnabledIsNull() { method andEnabledIsNotNull (line 669) | public Criteria andEnabledIsNotNull() { method andEnabledEqualTo (line 674) | public Criteria andEnabledEqualTo(Boolean value) { method andEnabledEqualToColumn (line 685) | public Criteria andEnabledEqualToColumn(LitemallRole.Column column) { method andEnabledNotEqualTo (line 690) | public Criteria andEnabledNotEqualTo(Boolean value) { method andEnabledNotEqualToColumn (line 701) | public Criteria andEnabledNotEqualToColumn(LitemallRole.Column colum... method andEnabledGreaterThan (line 706) | public Criteria andEnabledGreaterThan(Boolean value) { method andEnabledGreaterThanColumn (line 717) | public Criteria andEnabledGreaterThanColumn(LitemallRole.Column colu... method andEnabledGreaterThanOrEqualTo (line 722) | public Criteria andEnabledGreaterThanOrEqualTo(Boolean value) { method andEnabledGreaterThanOrEqualToColumn (line 733) | public Criteria andEnabledGreaterThanOrEqualToColumn(LitemallRole.Co... method andEnabledLessThan (line 738) | public Criteria andEnabledLessThan(Boolean value) { method andEnabledLessThanColumn (line 749) | public Criteria andEnabledLessThanColumn(LitemallRole.Column column) { method andEnabledLessThanOrEqualTo (line 754) | public Criteria andEnabledLessThanOrEqualTo(Boolean value) { method andEnabledLessThanOrEqualToColumn (line 765) | public Criteria andEnabledLessThanOrEqualToColumn(LitemallRole.Colum... method andEnabledIn (line 770) | public Criteria andEnabledIn(List values) { method andEnabledNotIn (line 775) | public Criteria andEnabledNotIn(List values) { method andEnabledBetween (line 780) | public Criteria andEnabledBetween(Boolean value1, Boolean value2) { method andEnabledNotBetween (line 785) | public Criteria andEnabledNotBetween(Boolean value1, Boolean value2) { method andAddTimeIsNull (line 790) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 795) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 800) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 811) | public Criteria andAddTimeEqualToColumn(LitemallRole.Column column) { method andAddTimeNotEqualTo (line 816) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 827) | public Criteria andAddTimeNotEqualToColumn(LitemallRole.Column colum... method andAddTimeGreaterThan (line 832) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 843) | public Criteria andAddTimeGreaterThanColumn(LitemallRole.Column colu... method andAddTimeGreaterThanOrEqualTo (line 848) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 859) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallRole.Co... method andAddTimeLessThan (line 864) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 875) | public Criteria andAddTimeLessThanColumn(LitemallRole.Column column) { method andAddTimeLessThanOrEqualTo (line 880) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 891) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallRole.Colum... method andAddTimeIn (line 896) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 901) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 906) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 911) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 916) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 921) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 926) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 937) | public Criteria andUpdateTimeEqualToColumn(LitemallRole.Column colum... method andUpdateTimeNotEqualTo (line 942) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 953) | public Criteria andUpdateTimeNotEqualToColumn(LitemallRole.Column co... method andUpdateTimeGreaterThan (line 958) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 969) | public Criteria andUpdateTimeGreaterThanColumn(LitemallRole.Column c... method andUpdateTimeGreaterThanOrEqualTo (line 974) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 985) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallRole... method andUpdateTimeLessThan (line 990) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1001) | public Criteria andUpdateTimeLessThanColumn(LitemallRole.Column colu... method andUpdateTimeLessThanOrEqualTo (line 1006) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1017) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallRole.Co... method andUpdateTimeIn (line 1022) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1027) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1032) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1037) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1042) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1047) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1052) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1063) | public Criteria andDeletedEqualToColumn(LitemallRole.Column column) { method andDeletedNotEqualTo (line 1068) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1079) | public Criteria andDeletedNotEqualToColumn(LitemallRole.Column colum... method andDeletedGreaterThan (line 1084) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1095) | public Criteria andDeletedGreaterThanColumn(LitemallRole.Column colu... method andDeletedGreaterThanOrEqualTo (line 1100) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1111) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallRole.Co... method andDeletedLessThan (line 1116) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1127) | public Criteria andDeletedLessThanColumn(LitemallRole.Column column) { method andDeletedLessThanOrEqualTo (line 1132) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1143) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallRole.Colum... method andDeletedIn (line 1148) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1153) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1158) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1163) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1175) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1190) | protected Criteria(LitemallRoleExample example) { method example (line 1201) | public LitemallRoleExample example() { method andIf (line 1211) | @Deprecated method when (line 1225) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1238) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1253) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1257) | @Deprecated method add (line 1265) | Criteria add(Criteria add); class Criterion (line 1275) | public static class Criterion { method getCondition (line 1292) | public String getCondition() { method getValue (line 1296) | public Object getValue() { method getSecondValue (line 1300) | public Object getSecondValue() { method isNoValue (line 1304) | public boolean isNoValue() { method isSingleValue (line 1308) | public boolean isSingleValue() { method isBetweenValue (line 1312) | public boolean isBetweenValue() { method isListValue (line 1316) | public boolean isListValue() { method getTypeHandler (line 1320) | public String getTypeHandler() { method Criterion (line 1324) | protected Criterion(String condition) { method Criterion (line 1331) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1343) | protected Criterion(String condition, Object value) { method Criterion (line 1347) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1356) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1361) | public interface ICriteriaWhen { method criteria (line 1368) | void criteria(Criteria criteria); type IExampleWhen (line 1371) | public interface IExampleWhen { method example (line 1378) | void example(org.linlinjava.litemall.db.domain.LitemallRoleExample e... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallSearchHistory.java class LitemallSearchHistory (line 7) | public class LitemallSearchHistory { method getId (line 95) | public Integer getId() { method setId (line 107) | public void setId(Integer id) { method getUserId (line 119) | public Integer getUserId() { method setUserId (line 131) | public void setUserId(Integer userId) { method getKeyword (line 143) | public String getKeyword() { method setKeyword (line 155) | public void setKeyword(String keyword) { method getFrom (line 167) | public String getFrom() { method setFrom (line 179) | public void setFrom(String from) { method getAddTime (line 191) | public LocalDateTime getAddTime() { method setAddTime (line 203) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 215) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 227) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 237) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 249) | public Boolean getDeleted() { method setDeleted (line 261) | public void setDeleted(Boolean deleted) { method toString (line 271) | @Override method equals (line 296) | @Override method hashCode (line 323) | @Override type Deleted (line 343) | public enum Deleted { method Deleted (line 369) | Deleted(Boolean value, String name) { method getValue (line 380) | public Boolean getValue() { method value (line 390) | public Boolean value() { method getName (line 400) | public String getName() { type Column (line 411) | public enum Column { method value (line 474) | public String value() { method getValue (line 484) | public String getValue() { method getJavaProperty (line 494) | public String getJavaProperty() { method getJdbcType (line 504) | public String getJdbcType() { method Column (line 514) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 527) | public String desc() { method asc (line 537) | public String asc() { method excludes (line 547) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 561) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 575) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallSearchHistoryExample.java class LitemallSearchHistoryExample (line 7) | public class LitemallSearchHistoryExample { method LitemallSearchHistoryExample (line 38) | public LitemallSearchHistoryExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallSearchHistoryExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallSearchHistoryExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallSearchHistoryExample when(boolean condition, IExampleWh... method when (line 210) | public LitemallSearchHistoryExample when(boolean condition, IExampleWh... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallSearchHistory.Column colu... method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallSearchHistory.Column c... method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallSearchHistory.Column ... method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallSearchHistor... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallSearchHistory.Column col... method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallSearchHistory.C... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUserIdIsNull (line 392) | public Criteria andUserIdIsNull() { method andUserIdIsNotNull (line 397) | public Criteria andUserIdIsNotNull() { method andUserIdEqualTo (line 402) | public Criteria andUserIdEqualTo(Integer value) { method andUserIdEqualToColumn (line 413) | public Criteria andUserIdEqualToColumn(LitemallSearchHistory.Column ... method andUserIdNotEqualTo (line 418) | public Criteria andUserIdNotEqualTo(Integer value) { method andUserIdNotEqualToColumn (line 429) | public Criteria andUserIdNotEqualToColumn(LitemallSearchHistory.Colu... method andUserIdGreaterThan (line 434) | public Criteria andUserIdGreaterThan(Integer value) { method andUserIdGreaterThanColumn (line 445) | public Criteria andUserIdGreaterThanColumn(LitemallSearchHistory.Col... method andUserIdGreaterThanOrEqualTo (line 450) | public Criteria andUserIdGreaterThanOrEqualTo(Integer value) { method andUserIdGreaterThanOrEqualToColumn (line 461) | public Criteria andUserIdGreaterThanOrEqualToColumn(LitemallSearchHi... method andUserIdLessThan (line 466) | public Criteria andUserIdLessThan(Integer value) { method andUserIdLessThanColumn (line 477) | public Criteria andUserIdLessThanColumn(LitemallSearchHistory.Column... method andUserIdLessThanOrEqualTo (line 482) | public Criteria andUserIdLessThanOrEqualTo(Integer value) { method andUserIdLessThanOrEqualToColumn (line 493) | public Criteria andUserIdLessThanOrEqualToColumn(LitemallSearchHisto... method andUserIdIn (line 498) | public Criteria andUserIdIn(List values) { method andUserIdNotIn (line 503) | public Criteria andUserIdNotIn(List values) { method andUserIdBetween (line 508) | public Criteria andUserIdBetween(Integer value1, Integer value2) { method andUserIdNotBetween (line 513) | public Criteria andUserIdNotBetween(Integer value1, Integer value2) { method andKeywordIsNull (line 518) | public Criteria andKeywordIsNull() { method andKeywordIsNotNull (line 523) | public Criteria andKeywordIsNotNull() { method andKeywordEqualTo (line 528) | public Criteria andKeywordEqualTo(String value) { method andKeywordEqualToColumn (line 539) | public Criteria andKeywordEqualToColumn(LitemallSearchHistory.Column... method andKeywordNotEqualTo (line 544) | public Criteria andKeywordNotEqualTo(String value) { method andKeywordNotEqualToColumn (line 555) | public Criteria andKeywordNotEqualToColumn(LitemallSearchHistory.Col... method andKeywordGreaterThan (line 560) | public Criteria andKeywordGreaterThan(String value) { method andKeywordGreaterThanColumn (line 571) | public Criteria andKeywordGreaterThanColumn(LitemallSearchHistory.Co... method andKeywordGreaterThanOrEqualTo (line 576) | public Criteria andKeywordGreaterThanOrEqualTo(String value) { method andKeywordGreaterThanOrEqualToColumn (line 587) | public Criteria andKeywordGreaterThanOrEqualToColumn(LitemallSearchH... method andKeywordLessThan (line 592) | public Criteria andKeywordLessThan(String value) { method andKeywordLessThanColumn (line 603) | public Criteria andKeywordLessThanColumn(LitemallSearchHistory.Colum... method andKeywordLessThanOrEqualTo (line 608) | public Criteria andKeywordLessThanOrEqualTo(String value) { method andKeywordLessThanOrEqualToColumn (line 619) | public Criteria andKeywordLessThanOrEqualToColumn(LitemallSearchHist... method andKeywordLike (line 624) | public Criteria andKeywordLike(String value) { method andKeywordNotLike (line 629) | public Criteria andKeywordNotLike(String value) { method andKeywordIn (line 634) | public Criteria andKeywordIn(List values) { method andKeywordNotIn (line 639) | public Criteria andKeywordNotIn(List values) { method andKeywordBetween (line 644) | public Criteria andKeywordBetween(String value1, String value2) { method andKeywordNotBetween (line 649) | public Criteria andKeywordNotBetween(String value1, String value2) { method andFromIsNull (line 654) | public Criteria andFromIsNull() { method andFromIsNotNull (line 659) | public Criteria andFromIsNotNull() { method andFromEqualTo (line 664) | public Criteria andFromEqualTo(String value) { method andFromEqualToColumn (line 675) | public Criteria andFromEqualToColumn(LitemallSearchHistory.Column co... method andFromNotEqualTo (line 680) | public Criteria andFromNotEqualTo(String value) { method andFromNotEqualToColumn (line 691) | public Criteria andFromNotEqualToColumn(LitemallSearchHistory.Column... method andFromGreaterThan (line 696) | public Criteria andFromGreaterThan(String value) { method andFromGreaterThanColumn (line 707) | public Criteria andFromGreaterThanColumn(LitemallSearchHistory.Colum... method andFromGreaterThanOrEqualTo (line 712) | public Criteria andFromGreaterThanOrEqualTo(String value) { method andFromGreaterThanOrEqualToColumn (line 723) | public Criteria andFromGreaterThanOrEqualToColumn(LitemallSearchHist... method andFromLessThan (line 728) | public Criteria andFromLessThan(String value) { method andFromLessThanColumn (line 739) | public Criteria andFromLessThanColumn(LitemallSearchHistory.Column c... method andFromLessThanOrEqualTo (line 744) | public Criteria andFromLessThanOrEqualTo(String value) { method andFromLessThanOrEqualToColumn (line 755) | public Criteria andFromLessThanOrEqualToColumn(LitemallSearchHistory... method andFromLike (line 760) | public Criteria andFromLike(String value) { method andFromNotLike (line 765) | public Criteria andFromNotLike(String value) { method andFromIn (line 770) | public Criteria andFromIn(List values) { method andFromNotIn (line 775) | public Criteria andFromNotIn(List values) { method andFromBetween (line 780) | public Criteria andFromBetween(String value1, String value2) { method andFromNotBetween (line 785) | public Criteria andFromNotBetween(String value1, String value2) { method andAddTimeIsNull (line 790) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 795) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 800) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 811) | public Criteria andAddTimeEqualToColumn(LitemallSearchHistory.Column... method andAddTimeNotEqualTo (line 816) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 827) | public Criteria andAddTimeNotEqualToColumn(LitemallSearchHistory.Col... method andAddTimeGreaterThan (line 832) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 843) | public Criteria andAddTimeGreaterThanColumn(LitemallSearchHistory.Co... method andAddTimeGreaterThanOrEqualTo (line 848) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 859) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallSearchH... method andAddTimeLessThan (line 864) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 875) | public Criteria andAddTimeLessThanColumn(LitemallSearchHistory.Colum... method andAddTimeLessThanOrEqualTo (line 880) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 891) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallSearchHist... method andAddTimeIn (line 896) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 901) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 906) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 911) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 916) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 921) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 926) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 937) | public Criteria andUpdateTimeEqualToColumn(LitemallSearchHistory.Col... method andUpdateTimeNotEqualTo (line 942) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 953) | public Criteria andUpdateTimeNotEqualToColumn(LitemallSearchHistory.... method andUpdateTimeGreaterThan (line 958) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 969) | public Criteria andUpdateTimeGreaterThanColumn(LitemallSearchHistory... method andUpdateTimeGreaterThanOrEqualTo (line 974) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 985) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallSear... method andUpdateTimeLessThan (line 990) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1001) | public Criteria andUpdateTimeLessThanColumn(LitemallSearchHistory.Co... method andUpdateTimeLessThanOrEqualTo (line 1006) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1017) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallSearchH... method andUpdateTimeIn (line 1022) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1027) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1032) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1037) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1042) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1047) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1052) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1063) | public Criteria andDeletedEqualToColumn(LitemallSearchHistory.Column... method andDeletedNotEqualTo (line 1068) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1079) | public Criteria andDeletedNotEqualToColumn(LitemallSearchHistory.Col... method andDeletedGreaterThan (line 1084) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1095) | public Criteria andDeletedGreaterThanColumn(LitemallSearchHistory.Co... method andDeletedGreaterThanOrEqualTo (line 1100) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1111) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallSearchH... method andDeletedLessThan (line 1116) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1127) | public Criteria andDeletedLessThanColumn(LitemallSearchHistory.Colum... method andDeletedLessThanOrEqualTo (line 1132) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1143) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallSearchHist... method andDeletedIn (line 1148) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1153) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1158) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1163) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1175) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1190) | protected Criteria(LitemallSearchHistoryExample example) { method example (line 1201) | public LitemallSearchHistoryExample example() { method andIf (line 1211) | @Deprecated method when (line 1225) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1238) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1253) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1257) | @Deprecated method add (line 1265) | Criteria add(Criteria add); class Criterion (line 1275) | public static class Criterion { method getCondition (line 1292) | public String getCondition() { method getValue (line 1296) | public Object getValue() { method getSecondValue (line 1300) | public Object getSecondValue() { method isNoValue (line 1304) | public boolean isNoValue() { method isSingleValue (line 1308) | public boolean isSingleValue() { method isBetweenValue (line 1312) | public boolean isBetweenValue() { method isListValue (line 1316) | public boolean isListValue() { method getTypeHandler (line 1320) | public String getTypeHandler() { method Criterion (line 1324) | protected Criterion(String condition) { method Criterion (line 1331) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1343) | protected Criterion(String condition, Object value) { method Criterion (line 1347) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1356) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1361) | public interface ICriteriaWhen { method criteria (line 1368) | void criteria(Criteria criteria); type IExampleWhen (line 1371) | public interface IExampleWhen { method example (line 1378) | void example(org.linlinjava.litemall.db.domain.LitemallSearchHistory... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallStorage.java class LitemallStorage (line 7) | public class LitemallStorage { method getId (line 113) | public Integer getId() { method setId (line 125) | public void setId(Integer id) { method getKey (line 137) | public String getKey() { method setKey (line 149) | public void setKey(String key) { method getName (line 161) | public String getName() { method setName (line 173) | public void setName(String name) { method getType (line 185) | public String getType() { method setType (line 197) | public void setType(String type) { method getSize (line 209) | public Integer getSize() { method setSize (line 221) | public void setSize(Integer size) { method getUrl (line 233) | public String getUrl() { method setUrl (line 245) | public void setUrl(String url) { method getAddTime (line 257) | public LocalDateTime getAddTime() { method setAddTime (line 269) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 281) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 293) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 303) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 315) | public Boolean getDeleted() { method setDeleted (line 327) | public void setDeleted(Boolean deleted) { method toString (line 337) | @Override method equals (line 364) | @Override method hashCode (line 393) | @Override type Deleted (line 415) | public enum Deleted { method Deleted (line 441) | Deleted(Boolean value, String name) { method getValue (line 452) | public Boolean getValue() { method value (line 462) | public Boolean value() { method getName (line 472) | public String getName() { type Column (line 483) | public enum Column { method value (line 548) | public String value() { method getValue (line 558) | public String getValue() { method getJavaProperty (line 568) | public String getJavaProperty() { method getJdbcType (line 578) | public String getJdbcType() { method Column (line 588) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 601) | public String desc() { method asc (line 611) | public String asc() { method excludes (line 621) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 635) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 649) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallStorageExample.java class LitemallStorageExample (line 7) | public class LitemallStorageExample { method LitemallStorageExample (line 38) | public LitemallStorageExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallStorageExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallStorageExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallStorageExample when(boolean condition, IExampleWhen the... method when (line 210) | public LitemallStorageExample when(boolean condition, IExampleWhen the... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallStorage.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallStorage.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallStorage.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallStorage.Colu... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallStorage.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallStorage.Column ... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andKeyIsNull (line 392) | public Criteria andKeyIsNull() { method andKeyIsNotNull (line 397) | public Criteria andKeyIsNotNull() { method andKeyEqualTo (line 402) | public Criteria andKeyEqualTo(String value) { method andKeyEqualToColumn (line 413) | public Criteria andKeyEqualToColumn(LitemallStorage.Column column) { method andKeyNotEqualTo (line 418) | public Criteria andKeyNotEqualTo(String value) { method andKeyNotEqualToColumn (line 429) | public Criteria andKeyNotEqualToColumn(LitemallStorage.Column column) { method andKeyGreaterThan (line 434) | public Criteria andKeyGreaterThan(String value) { method andKeyGreaterThanColumn (line 445) | public Criteria andKeyGreaterThanColumn(LitemallStorage.Column colum... method andKeyGreaterThanOrEqualTo (line 450) | public Criteria andKeyGreaterThanOrEqualTo(String value) { method andKeyGreaterThanOrEqualToColumn (line 461) | public Criteria andKeyGreaterThanOrEqualToColumn(LitemallStorage.Col... method andKeyLessThan (line 466) | public Criteria andKeyLessThan(String value) { method andKeyLessThanColumn (line 477) | public Criteria andKeyLessThanColumn(LitemallStorage.Column column) { method andKeyLessThanOrEqualTo (line 482) | public Criteria andKeyLessThanOrEqualTo(String value) { method andKeyLessThanOrEqualToColumn (line 493) | public Criteria andKeyLessThanOrEqualToColumn(LitemallStorage.Column... method andKeyLike (line 498) | public Criteria andKeyLike(String value) { method andKeyNotLike (line 503) | public Criteria andKeyNotLike(String value) { method andKeyIn (line 508) | public Criteria andKeyIn(List values) { method andKeyNotIn (line 513) | public Criteria andKeyNotIn(List values) { method andKeyBetween (line 518) | public Criteria andKeyBetween(String value1, String value2) { method andKeyNotBetween (line 523) | public Criteria andKeyNotBetween(String value1, String value2) { method andNameIsNull (line 528) | public Criteria andNameIsNull() { method andNameIsNotNull (line 533) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 538) | public Criteria andNameEqualTo(String value) { method andNameEqualToColumn (line 549) | public Criteria andNameEqualToColumn(LitemallStorage.Column column) { method andNameNotEqualTo (line 554) | public Criteria andNameNotEqualTo(String value) { method andNameNotEqualToColumn (line 565) | public Criteria andNameNotEqualToColumn(LitemallStorage.Column colum... method andNameGreaterThan (line 570) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanColumn (line 581) | public Criteria andNameGreaterThanColumn(LitemallStorage.Column colu... method andNameGreaterThanOrEqualTo (line 586) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameGreaterThanOrEqualToColumn (line 597) | public Criteria andNameGreaterThanOrEqualToColumn(LitemallStorage.Co... method andNameLessThan (line 602) | public Criteria andNameLessThan(String value) { method andNameLessThanColumn (line 613) | public Criteria andNameLessThanColumn(LitemallStorage.Column column) { method andNameLessThanOrEqualTo (line 618) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLessThanOrEqualToColumn (line 629) | public Criteria andNameLessThanOrEqualToColumn(LitemallStorage.Colum... method andNameLike (line 634) | public Criteria andNameLike(String value) { method andNameNotLike (line 639) | public Criteria andNameNotLike(String value) { method andNameIn (line 644) | public Criteria andNameIn(List values) { method andNameNotIn (line 649) | public Criteria andNameNotIn(List values) { method andNameBetween (line 654) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 659) | public Criteria andNameNotBetween(String value1, String value2) { method andTypeIsNull (line 664) | public Criteria andTypeIsNull() { method andTypeIsNotNull (line 669) | public Criteria andTypeIsNotNull() { method andTypeEqualTo (line 674) | public Criteria andTypeEqualTo(String value) { method andTypeEqualToColumn (line 685) | public Criteria andTypeEqualToColumn(LitemallStorage.Column column) { method andTypeNotEqualTo (line 690) | public Criteria andTypeNotEqualTo(String value) { method andTypeNotEqualToColumn (line 701) | public Criteria andTypeNotEqualToColumn(LitemallStorage.Column colum... method andTypeGreaterThan (line 706) | public Criteria andTypeGreaterThan(String value) { method andTypeGreaterThanColumn (line 717) | public Criteria andTypeGreaterThanColumn(LitemallStorage.Column colu... method andTypeGreaterThanOrEqualTo (line 722) | public Criteria andTypeGreaterThanOrEqualTo(String value) { method andTypeGreaterThanOrEqualToColumn (line 733) | public Criteria andTypeGreaterThanOrEqualToColumn(LitemallStorage.Co... method andTypeLessThan (line 738) | public Criteria andTypeLessThan(String value) { method andTypeLessThanColumn (line 749) | public Criteria andTypeLessThanColumn(LitemallStorage.Column column) { method andTypeLessThanOrEqualTo (line 754) | public Criteria andTypeLessThanOrEqualTo(String value) { method andTypeLessThanOrEqualToColumn (line 765) | public Criteria andTypeLessThanOrEqualToColumn(LitemallStorage.Colum... method andTypeLike (line 770) | public Criteria andTypeLike(String value) { method andTypeNotLike (line 775) | public Criteria andTypeNotLike(String value) { method andTypeIn (line 780) | public Criteria andTypeIn(List values) { method andTypeNotIn (line 785) | public Criteria andTypeNotIn(List values) { method andTypeBetween (line 790) | public Criteria andTypeBetween(String value1, String value2) { method andTypeNotBetween (line 795) | public Criteria andTypeNotBetween(String value1, String value2) { method andSizeIsNull (line 800) | public Criteria andSizeIsNull() { method andSizeIsNotNull (line 805) | public Criteria andSizeIsNotNull() { method andSizeEqualTo (line 810) | public Criteria andSizeEqualTo(Integer value) { method andSizeEqualToColumn (line 821) | public Criteria andSizeEqualToColumn(LitemallStorage.Column column) { method andSizeNotEqualTo (line 826) | public Criteria andSizeNotEqualTo(Integer value) { method andSizeNotEqualToColumn (line 837) | public Criteria andSizeNotEqualToColumn(LitemallStorage.Column colum... method andSizeGreaterThan (line 842) | public Criteria andSizeGreaterThan(Integer value) { method andSizeGreaterThanColumn (line 853) | public Criteria andSizeGreaterThanColumn(LitemallStorage.Column colu... method andSizeGreaterThanOrEqualTo (line 858) | public Criteria andSizeGreaterThanOrEqualTo(Integer value) { method andSizeGreaterThanOrEqualToColumn (line 869) | public Criteria andSizeGreaterThanOrEqualToColumn(LitemallStorage.Co... method andSizeLessThan (line 874) | public Criteria andSizeLessThan(Integer value) { method andSizeLessThanColumn (line 885) | public Criteria andSizeLessThanColumn(LitemallStorage.Column column) { method andSizeLessThanOrEqualTo (line 890) | public Criteria andSizeLessThanOrEqualTo(Integer value) { method andSizeLessThanOrEqualToColumn (line 901) | public Criteria andSizeLessThanOrEqualToColumn(LitemallStorage.Colum... method andSizeIn (line 906) | public Criteria andSizeIn(List values) { method andSizeNotIn (line 911) | public Criteria andSizeNotIn(List values) { method andSizeBetween (line 916) | public Criteria andSizeBetween(Integer value1, Integer value2) { method andSizeNotBetween (line 921) | public Criteria andSizeNotBetween(Integer value1, Integer value2) { method andUrlIsNull (line 926) | public Criteria andUrlIsNull() { method andUrlIsNotNull (line 931) | public Criteria andUrlIsNotNull() { method andUrlEqualTo (line 936) | public Criteria andUrlEqualTo(String value) { method andUrlEqualToColumn (line 947) | public Criteria andUrlEqualToColumn(LitemallStorage.Column column) { method andUrlNotEqualTo (line 952) | public Criteria andUrlNotEqualTo(String value) { method andUrlNotEqualToColumn (line 963) | public Criteria andUrlNotEqualToColumn(LitemallStorage.Column column) { method andUrlGreaterThan (line 968) | public Criteria andUrlGreaterThan(String value) { method andUrlGreaterThanColumn (line 979) | public Criteria andUrlGreaterThanColumn(LitemallStorage.Column colum... method andUrlGreaterThanOrEqualTo (line 984) | public Criteria andUrlGreaterThanOrEqualTo(String value) { method andUrlGreaterThanOrEqualToColumn (line 995) | public Criteria andUrlGreaterThanOrEqualToColumn(LitemallStorage.Col... method andUrlLessThan (line 1000) | public Criteria andUrlLessThan(String value) { method andUrlLessThanColumn (line 1011) | public Criteria andUrlLessThanColumn(LitemallStorage.Column column) { method andUrlLessThanOrEqualTo (line 1016) | public Criteria andUrlLessThanOrEqualTo(String value) { method andUrlLessThanOrEqualToColumn (line 1027) | public Criteria andUrlLessThanOrEqualToColumn(LitemallStorage.Column... method andUrlLike (line 1032) | public Criteria andUrlLike(String value) { method andUrlNotLike (line 1037) | public Criteria andUrlNotLike(String value) { method andUrlIn (line 1042) | public Criteria andUrlIn(List values) { method andUrlNotIn (line 1047) | public Criteria andUrlNotIn(List values) { method andUrlBetween (line 1052) | public Criteria andUrlBetween(String value1, String value2) { method andUrlNotBetween (line 1057) | public Criteria andUrlNotBetween(String value1, String value2) { method andAddTimeIsNull (line 1062) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1067) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1072) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1083) | public Criteria andAddTimeEqualToColumn(LitemallStorage.Column colum... method andAddTimeNotEqualTo (line 1088) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1099) | public Criteria andAddTimeNotEqualToColumn(LitemallStorage.Column co... method andAddTimeGreaterThan (line 1104) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1115) | public Criteria andAddTimeGreaterThanColumn(LitemallStorage.Column c... method andAddTimeGreaterThanOrEqualTo (line 1120) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1131) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallStorage... method andAddTimeLessThan (line 1136) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1147) | public Criteria andAddTimeLessThanColumn(LitemallStorage.Column colu... method andAddTimeLessThanOrEqualTo (line 1152) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1163) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallStorage.Co... method andAddTimeIn (line 1168) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1173) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1178) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1183) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1188) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1193) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1198) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1209) | public Criteria andUpdateTimeEqualToColumn(LitemallStorage.Column co... method andUpdateTimeNotEqualTo (line 1214) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1225) | public Criteria andUpdateTimeNotEqualToColumn(LitemallStorage.Column... method andUpdateTimeGreaterThan (line 1230) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1241) | public Criteria andUpdateTimeGreaterThanColumn(LitemallStorage.Colum... method andUpdateTimeGreaterThanOrEqualTo (line 1246) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1257) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallStor... method andUpdateTimeLessThan (line 1262) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1273) | public Criteria andUpdateTimeLessThanColumn(LitemallStorage.Column c... method andUpdateTimeLessThanOrEqualTo (line 1278) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1289) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallStorage... method andUpdateTimeIn (line 1294) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1299) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1304) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1309) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1314) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1319) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1324) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1335) | public Criteria andDeletedEqualToColumn(LitemallStorage.Column colum... method andDeletedNotEqualTo (line 1340) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1351) | public Criteria andDeletedNotEqualToColumn(LitemallStorage.Column co... method andDeletedGreaterThan (line 1356) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1367) | public Criteria andDeletedGreaterThanColumn(LitemallStorage.Column c... method andDeletedGreaterThanOrEqualTo (line 1372) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1383) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallStorage... method andDeletedLessThan (line 1388) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1399) | public Criteria andDeletedLessThanColumn(LitemallStorage.Column colu... method andDeletedLessThanOrEqualTo (line 1404) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1415) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallStorage.Co... method andDeletedIn (line 1420) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1425) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1430) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1435) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1447) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1462) | protected Criteria(LitemallStorageExample example) { method example (line 1473) | public LitemallStorageExample example() { method andIf (line 1483) | @Deprecated method when (line 1497) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1510) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1525) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1529) | @Deprecated method add (line 1537) | Criteria add(Criteria add); class Criterion (line 1547) | public static class Criterion { method getCondition (line 1564) | public String getCondition() { method getValue (line 1568) | public Object getValue() { method getSecondValue (line 1572) | public Object getSecondValue() { method isNoValue (line 1576) | public boolean isNoValue() { method isSingleValue (line 1580) | public boolean isSingleValue() { method isBetweenValue (line 1584) | public boolean isBetweenValue() { method isListValue (line 1588) | public boolean isListValue() { method getTypeHandler (line 1592) | public String getTypeHandler() { method Criterion (line 1596) | protected Criterion(String condition) { method Criterion (line 1603) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1615) | protected Criterion(String condition, Object value) { method Criterion (line 1619) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1628) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1633) | public interface ICriteriaWhen { method criteria (line 1640) | void criteria(Criteria criteria); type IExampleWhen (line 1643) | public interface IExampleWhen { method example (line 1650) | void example(org.linlinjava.litemall.db.domain.LitemallStorageExampl... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallSystem.java class LitemallSystem (line 7) | public class LitemallSystem { method getId (line 86) | public Integer getId() { method setId (line 98) | public void setId(Integer id) { method getKeyName (line 110) | public String getKeyName() { method setKeyName (line 122) | public void setKeyName(String keyName) { method getKeyValue (line 134) | public String getKeyValue() { method setKeyValue (line 146) | public void setKeyValue(String keyValue) { method getAddTime (line 158) | public LocalDateTime getAddTime() { method setAddTime (line 170) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 182) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 194) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 204) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 216) | public Boolean getDeleted() { method setDeleted (line 228) | public void setDeleted(Boolean deleted) { method toString (line 238) | @Override method equals (line 262) | @Override method hashCode (line 288) | @Override type Deleted (line 307) | public enum Deleted { method Deleted (line 333) | Deleted(Boolean value, String name) { method getValue (line 344) | public Boolean getValue() { method value (line 354) | public Boolean value() { method getName (line 364) | public String getName() { type Column (line 375) | public enum Column { method value (line 437) | public String value() { method getValue (line 447) | public String getValue() { method getJavaProperty (line 457) | public String getJavaProperty() { method getJdbcType (line 467) | public String getJdbcType() { method Column (line 477) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 490) | public String desc() { method asc (line 500) | public String asc() { method excludes (line 510) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 524) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 538) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallSystemExample.java class LitemallSystemExample (line 7) | public class LitemallSystemExample { method LitemallSystemExample (line 38) | public LitemallSystemExample() { method setOrderByClause (line 48) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 58) | public String getOrderByClause() { method setDistinct (line 68) | public void setDistinct(boolean distinct) { method isDistinct (line 78) | public boolean isDistinct() { method getOredCriteria (line 88) | public List getOredCriteria() { method or (line 98) | public void or(Criteria criteria) { method or (line 108) | public Criteria or() { method orderBy (line 120) | public LitemallSystemExample orderBy(String orderByClause) { method orderBy (line 131) | public LitemallSystemExample orderBy(String ... orderByClauses) { method createCriteria (line 149) | public Criteria createCriteria() { method createCriteriaInternal (line 163) | protected Criteria createCriteriaInternal() { method clear (line 174) | public void clear() { method newAndCreateCriteria (line 186) | public static Criteria newAndCreateCriteria() { method when (line 197) | public LitemallSystemExample when(boolean condition, IExampleWhen then) { method when (line 210) | public LitemallSystemExample when(boolean condition, IExampleWhen then... class GeneratedCriteria (line 225) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 228) | protected GeneratedCriteria() { method isValid (line 233) | public boolean isValid() { method getAllCriteria (line 237) | public List getAllCriteria() { method getCriteria (line 241) | public List getCriteria() { method addCriterion (line 245) | protected void addCriterion(String condition) { method addCriterion (line 252) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 259) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 266) | public Criteria andIdIsNull() { method andIdIsNotNull (line 271) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 276) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 287) | public Criteria andIdEqualToColumn(LitemallSystem.Column column) { method andIdNotEqualTo (line 292) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 303) | public Criteria andIdNotEqualToColumn(LitemallSystem.Column column) { method andIdGreaterThan (line 308) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 319) | public Criteria andIdGreaterThanColumn(LitemallSystem.Column column) { method andIdGreaterThanOrEqualTo (line 324) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 335) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallSystem.Colum... method andIdLessThan (line 340) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 351) | public Criteria andIdLessThanColumn(LitemallSystem.Column column) { method andIdLessThanOrEqualTo (line 356) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 367) | public Criteria andIdLessThanOrEqualToColumn(LitemallSystem.Column c... method andIdIn (line 372) | public Criteria andIdIn(List values) { method andIdNotIn (line 377) | public Criteria andIdNotIn(List values) { method andIdBetween (line 382) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 387) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andKeyNameIsNull (line 392) | public Criteria andKeyNameIsNull() { method andKeyNameIsNotNull (line 397) | public Criteria andKeyNameIsNotNull() { method andKeyNameEqualTo (line 402) | public Criteria andKeyNameEqualTo(String value) { method andKeyNameEqualToColumn (line 413) | public Criteria andKeyNameEqualToColumn(LitemallSystem.Column column) { method andKeyNameNotEqualTo (line 418) | public Criteria andKeyNameNotEqualTo(String value) { method andKeyNameNotEqualToColumn (line 429) | public Criteria andKeyNameNotEqualToColumn(LitemallSystem.Column col... method andKeyNameGreaterThan (line 434) | public Criteria andKeyNameGreaterThan(String value) { method andKeyNameGreaterThanColumn (line 445) | public Criteria andKeyNameGreaterThanColumn(LitemallSystem.Column co... method andKeyNameGreaterThanOrEqualTo (line 450) | public Criteria andKeyNameGreaterThanOrEqualTo(String value) { method andKeyNameGreaterThanOrEqualToColumn (line 461) | public Criteria andKeyNameGreaterThanOrEqualToColumn(LitemallSystem.... method andKeyNameLessThan (line 466) | public Criteria andKeyNameLessThan(String value) { method andKeyNameLessThanColumn (line 477) | public Criteria andKeyNameLessThanColumn(LitemallSystem.Column colum... method andKeyNameLessThanOrEqualTo (line 482) | public Criteria andKeyNameLessThanOrEqualTo(String value) { method andKeyNameLessThanOrEqualToColumn (line 493) | public Criteria andKeyNameLessThanOrEqualToColumn(LitemallSystem.Col... method andKeyNameLike (line 498) | public Criteria andKeyNameLike(String value) { method andKeyNameNotLike (line 503) | public Criteria andKeyNameNotLike(String value) { method andKeyNameIn (line 508) | public Criteria andKeyNameIn(List values) { method andKeyNameNotIn (line 513) | public Criteria andKeyNameNotIn(List values) { method andKeyNameBetween (line 518) | public Criteria andKeyNameBetween(String value1, String value2) { method andKeyNameNotBetween (line 523) | public Criteria andKeyNameNotBetween(String value1, String value2) { method andKeyValueIsNull (line 528) | public Criteria andKeyValueIsNull() { method andKeyValueIsNotNull (line 533) | public Criteria andKeyValueIsNotNull() { method andKeyValueEqualTo (line 538) | public Criteria andKeyValueEqualTo(String value) { method andKeyValueEqualToColumn (line 549) | public Criteria andKeyValueEqualToColumn(LitemallSystem.Column colum... method andKeyValueNotEqualTo (line 554) | public Criteria andKeyValueNotEqualTo(String value) { method andKeyValueNotEqualToColumn (line 565) | public Criteria andKeyValueNotEqualToColumn(LitemallSystem.Column co... method andKeyValueGreaterThan (line 570) | public Criteria andKeyValueGreaterThan(String value) { method andKeyValueGreaterThanColumn (line 581) | public Criteria andKeyValueGreaterThanColumn(LitemallSystem.Column c... method andKeyValueGreaterThanOrEqualTo (line 586) | public Criteria andKeyValueGreaterThanOrEqualTo(String value) { method andKeyValueGreaterThanOrEqualToColumn (line 597) | public Criteria andKeyValueGreaterThanOrEqualToColumn(LitemallSystem... method andKeyValueLessThan (line 602) | public Criteria andKeyValueLessThan(String value) { method andKeyValueLessThanColumn (line 613) | public Criteria andKeyValueLessThanColumn(LitemallSystem.Column colu... method andKeyValueLessThanOrEqualTo (line 618) | public Criteria andKeyValueLessThanOrEqualTo(String value) { method andKeyValueLessThanOrEqualToColumn (line 629) | public Criteria andKeyValueLessThanOrEqualToColumn(LitemallSystem.Co... method andKeyValueLike (line 634) | public Criteria andKeyValueLike(String value) { method andKeyValueNotLike (line 639) | public Criteria andKeyValueNotLike(String value) { method andKeyValueIn (line 644) | public Criteria andKeyValueIn(List values) { method andKeyValueNotIn (line 649) | public Criteria andKeyValueNotIn(List values) { method andKeyValueBetween (line 654) | public Criteria andKeyValueBetween(String value1, String value2) { method andKeyValueNotBetween (line 659) | public Criteria andKeyValueNotBetween(String value1, String value2) { method andAddTimeIsNull (line 664) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 669) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 674) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 685) | public Criteria andAddTimeEqualToColumn(LitemallSystem.Column column) { method andAddTimeNotEqualTo (line 690) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 701) | public Criteria andAddTimeNotEqualToColumn(LitemallSystem.Column col... method andAddTimeGreaterThan (line 706) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 717) | public Criteria andAddTimeGreaterThanColumn(LitemallSystem.Column co... method andAddTimeGreaterThanOrEqualTo (line 722) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 733) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallSystem.... method andAddTimeLessThan (line 738) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 749) | public Criteria andAddTimeLessThanColumn(LitemallSystem.Column colum... method andAddTimeLessThanOrEqualTo (line 754) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 765) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallSystem.Col... method andAddTimeIn (line 770) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 775) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 780) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 785) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 790) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 795) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 800) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 811) | public Criteria andUpdateTimeEqualToColumn(LitemallSystem.Column col... method andUpdateTimeNotEqualTo (line 816) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 827) | public Criteria andUpdateTimeNotEqualToColumn(LitemallSystem.Column ... method andUpdateTimeGreaterThan (line 832) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 843) | public Criteria andUpdateTimeGreaterThanColumn(LitemallSystem.Column... method andUpdateTimeGreaterThanOrEqualTo (line 848) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 859) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallSyst... method andUpdateTimeLessThan (line 864) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 875) | public Criteria andUpdateTimeLessThanColumn(LitemallSystem.Column co... method andUpdateTimeLessThanOrEqualTo (line 880) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 891) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallSystem.... method andUpdateTimeIn (line 896) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 901) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 906) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 911) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 916) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 921) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 926) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 937) | public Criteria andDeletedEqualToColumn(LitemallSystem.Column column) { method andDeletedNotEqualTo (line 942) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 953) | public Criteria andDeletedNotEqualToColumn(LitemallSystem.Column col... method andDeletedGreaterThan (line 958) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 969) | public Criteria andDeletedGreaterThanColumn(LitemallSystem.Column co... method andDeletedGreaterThanOrEqualTo (line 974) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 985) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallSystem.... method andDeletedLessThan (line 990) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1001) | public Criteria andDeletedLessThanColumn(LitemallSystem.Column colum... method andDeletedLessThanOrEqualTo (line 1006) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1017) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallSystem.Col... method andDeletedIn (line 1022) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1027) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1032) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1037) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1049) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1064) | protected Criteria(LitemallSystemExample example) { method example (line 1075) | public LitemallSystemExample example() { method andIf (line 1085) | @Deprecated method when (line 1099) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1112) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1127) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1131) | @Deprecated method add (line 1139) | Criteria add(Criteria add); class Criterion (line 1149) | public static class Criterion { method getCondition (line 1166) | public String getCondition() { method getValue (line 1170) | public Object getValue() { method getSecondValue (line 1174) | public Object getSecondValue() { method isNoValue (line 1178) | public boolean isNoValue() { method isSingleValue (line 1182) | public boolean isSingleValue() { method isBetweenValue (line 1186) | public boolean isBetweenValue() { method isListValue (line 1190) | public boolean isListValue() { method getTypeHandler (line 1194) | public String getTypeHandler() { method Criterion (line 1198) | protected Criterion(String condition) { method Criterion (line 1205) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1217) | protected Criterion(String condition, Object value) { method Criterion (line 1221) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1230) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1235) | public interface ICriteriaWhen { method criteria (line 1242) | void criteria(Criteria criteria); type IExampleWhen (line 1245) | public interface IExampleWhen { method example (line 1252) | void example(org.linlinjava.litemall.db.domain.LitemallSystemExample... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallTopic.java class LitemallTopic (line 8) | public class LitemallTopic { method getId (line 141) | public Integer getId() { method setId (line 153) | public void setId(Integer id) { method getTitle (line 165) | public String getTitle() { method setTitle (line 177) | public void setTitle(String title) { method getSubtitle (line 189) | public String getSubtitle() { method setSubtitle (line 201) | public void setSubtitle(String subtitle) { method getPrice (line 213) | public BigDecimal getPrice() { method setPrice (line 225) | public void setPrice(BigDecimal price) { method getReadCount (line 237) | public String getReadCount() { method setReadCount (line 249) | public void setReadCount(String readCount) { method getPicUrl (line 261) | public String getPicUrl() { method setPicUrl (line 273) | public void setPicUrl(String picUrl) { method getSortOrder (line 285) | public Integer getSortOrder() { method setSortOrder (line 297) | public void setSortOrder(Integer sortOrder) { method getGoods (line 309) | public Integer[] getGoods() { method setGoods (line 321) | public void setGoods(Integer[] goods) { method getAddTime (line 333) | public LocalDateTime getAddTime() { method setAddTime (line 345) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 357) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 369) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 379) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 391) | public Boolean getDeleted() { method setDeleted (line 403) | public void setDeleted(Boolean deleted) { method getContent (line 415) | public String getContent() { method setContent (line 427) | public void setContent(String content) { method toString (line 437) | @Override method equals (line 467) | @Override method hashCode (line 499) | @Override type Deleted (line 524) | public enum Deleted { method Deleted (line 550) | Deleted(Boolean value, String name) { method getValue (line 561) | public Boolean getValue() { method value (line 571) | public Boolean value() { method getName (line 581) | public String getName() { type Column (line 592) | public enum Column { method value (line 660) | public String value() { method getValue (line 670) | public String getValue() { method getJavaProperty (line 680) | public String getJavaProperty() { method getJdbcType (line 690) | public String getJdbcType() { method Column (line 700) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 713) | public String desc() { method asc (line 723) | public String asc() { method excludes (line 733) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 747) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 761) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallTopicExample.java class LitemallTopicExample (line 8) | public class LitemallTopicExample { method LitemallTopicExample (line 39) | public LitemallTopicExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallTopicExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallTopicExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallTopicExample when(boolean condition, IExampleWhen then) { method when (line 211) | public LitemallTopicExample when(boolean condition, IExampleWhen then,... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 233) | protected GeneratedCriteria() { method getGoodsCriteria (line 239) | public List getGoodsCriteria() { method addGoodsCriterion (line 243) | protected void addGoodsCriterion(String condition, Object value, Str... method addGoodsCriterion (line 251) | protected void addGoodsCriterion(String condition, Integer[] value1,... method isValid (line 259) | public boolean isValid() { method getAllCriteria (line 264) | public List getAllCriteria() { method getCriteria (line 273) | public List getCriteria() { method addCriterion (line 277) | protected void addCriterion(String condition) { method addCriterion (line 285) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 293) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 301) | public Criteria andIdIsNull() { method andIdIsNotNull (line 306) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 311) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 322) | public Criteria andIdEqualToColumn(LitemallTopic.Column column) { method andIdNotEqualTo (line 327) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 338) | public Criteria andIdNotEqualToColumn(LitemallTopic.Column column) { method andIdGreaterThan (line 343) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 354) | public Criteria andIdGreaterThanColumn(LitemallTopic.Column column) { method andIdGreaterThanOrEqualTo (line 359) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 370) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallTopic.Column... method andIdLessThan (line 375) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 386) | public Criteria andIdLessThanColumn(LitemallTopic.Column column) { method andIdLessThanOrEqualTo (line 391) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 402) | public Criteria andIdLessThanOrEqualToColumn(LitemallTopic.Column co... method andIdIn (line 407) | public Criteria andIdIn(List values) { method andIdNotIn (line 412) | public Criteria andIdNotIn(List values) { method andIdBetween (line 417) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 422) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andTitleIsNull (line 427) | public Criteria andTitleIsNull() { method andTitleIsNotNull (line 432) | public Criteria andTitleIsNotNull() { method andTitleEqualTo (line 437) | public Criteria andTitleEqualTo(String value) { method andTitleEqualToColumn (line 448) | public Criteria andTitleEqualToColumn(LitemallTopic.Column column) { method andTitleNotEqualTo (line 453) | public Criteria andTitleNotEqualTo(String value) { method andTitleNotEqualToColumn (line 464) | public Criteria andTitleNotEqualToColumn(LitemallTopic.Column column) { method andTitleGreaterThan (line 469) | public Criteria andTitleGreaterThan(String value) { method andTitleGreaterThanColumn (line 480) | public Criteria andTitleGreaterThanColumn(LitemallTopic.Column colum... method andTitleGreaterThanOrEqualTo (line 485) | public Criteria andTitleGreaterThanOrEqualTo(String value) { method andTitleGreaterThanOrEqualToColumn (line 496) | public Criteria andTitleGreaterThanOrEqualToColumn(LitemallTopic.Col... method andTitleLessThan (line 501) | public Criteria andTitleLessThan(String value) { method andTitleLessThanColumn (line 512) | public Criteria andTitleLessThanColumn(LitemallTopic.Column column) { method andTitleLessThanOrEqualTo (line 517) | public Criteria andTitleLessThanOrEqualTo(String value) { method andTitleLessThanOrEqualToColumn (line 528) | public Criteria andTitleLessThanOrEqualToColumn(LitemallTopic.Column... method andTitleLike (line 533) | public Criteria andTitleLike(String value) { method andTitleNotLike (line 538) | public Criteria andTitleNotLike(String value) { method andTitleIn (line 543) | public Criteria andTitleIn(List values) { method andTitleNotIn (line 548) | public Criteria andTitleNotIn(List values) { method andTitleBetween (line 553) | public Criteria andTitleBetween(String value1, String value2) { method andTitleNotBetween (line 558) | public Criteria andTitleNotBetween(String value1, String value2) { method andSubtitleIsNull (line 563) | public Criteria andSubtitleIsNull() { method andSubtitleIsNotNull (line 568) | public Criteria andSubtitleIsNotNull() { method andSubtitleEqualTo (line 573) | public Criteria andSubtitleEqualTo(String value) { method andSubtitleEqualToColumn (line 584) | public Criteria andSubtitleEqualToColumn(LitemallTopic.Column column) { method andSubtitleNotEqualTo (line 589) | public Criteria andSubtitleNotEqualTo(String value) { method andSubtitleNotEqualToColumn (line 600) | public Criteria andSubtitleNotEqualToColumn(LitemallTopic.Column col... method andSubtitleGreaterThan (line 605) | public Criteria andSubtitleGreaterThan(String value) { method andSubtitleGreaterThanColumn (line 616) | public Criteria andSubtitleGreaterThanColumn(LitemallTopic.Column co... method andSubtitleGreaterThanOrEqualTo (line 621) | public Criteria andSubtitleGreaterThanOrEqualTo(String value) { method andSubtitleGreaterThanOrEqualToColumn (line 632) | public Criteria andSubtitleGreaterThanOrEqualToColumn(LitemallTopic.... method andSubtitleLessThan (line 637) | public Criteria andSubtitleLessThan(String value) { method andSubtitleLessThanColumn (line 648) | public Criteria andSubtitleLessThanColumn(LitemallTopic.Column colum... method andSubtitleLessThanOrEqualTo (line 653) | public Criteria andSubtitleLessThanOrEqualTo(String value) { method andSubtitleLessThanOrEqualToColumn (line 664) | public Criteria andSubtitleLessThanOrEqualToColumn(LitemallTopic.Col... method andSubtitleLike (line 669) | public Criteria andSubtitleLike(String value) { method andSubtitleNotLike (line 674) | public Criteria andSubtitleNotLike(String value) { method andSubtitleIn (line 679) | public Criteria andSubtitleIn(List values) { method andSubtitleNotIn (line 684) | public Criteria andSubtitleNotIn(List values) { method andSubtitleBetween (line 689) | public Criteria andSubtitleBetween(String value1, String value2) { method andSubtitleNotBetween (line 694) | public Criteria andSubtitleNotBetween(String value1, String value2) { method andPriceIsNull (line 699) | public Criteria andPriceIsNull() { method andPriceIsNotNull (line 704) | public Criteria andPriceIsNotNull() { method andPriceEqualTo (line 709) | public Criteria andPriceEqualTo(BigDecimal value) { method andPriceEqualToColumn (line 720) | public Criteria andPriceEqualToColumn(LitemallTopic.Column column) { method andPriceNotEqualTo (line 725) | public Criteria andPriceNotEqualTo(BigDecimal value) { method andPriceNotEqualToColumn (line 736) | public Criteria andPriceNotEqualToColumn(LitemallTopic.Column column) { method andPriceGreaterThan (line 741) | public Criteria andPriceGreaterThan(BigDecimal value) { method andPriceGreaterThanColumn (line 752) | public Criteria andPriceGreaterThanColumn(LitemallTopic.Column colum... method andPriceGreaterThanOrEqualTo (line 757) | public Criteria andPriceGreaterThanOrEqualTo(BigDecimal value) { method andPriceGreaterThanOrEqualToColumn (line 768) | public Criteria andPriceGreaterThanOrEqualToColumn(LitemallTopic.Col... method andPriceLessThan (line 773) | public Criteria andPriceLessThan(BigDecimal value) { method andPriceLessThanColumn (line 784) | public Criteria andPriceLessThanColumn(LitemallTopic.Column column) { method andPriceLessThanOrEqualTo (line 789) | public Criteria andPriceLessThanOrEqualTo(BigDecimal value) { method andPriceLessThanOrEqualToColumn (line 800) | public Criteria andPriceLessThanOrEqualToColumn(LitemallTopic.Column... method andPriceIn (line 805) | public Criteria andPriceIn(List values) { method andPriceNotIn (line 810) | public Criteria andPriceNotIn(List values) { method andPriceBetween (line 815) | public Criteria andPriceBetween(BigDecimal value1, BigDecimal value2) { method andPriceNotBetween (line 820) | public Criteria andPriceNotBetween(BigDecimal value1, BigDecimal val... method andReadCountIsNull (line 825) | public Criteria andReadCountIsNull() { method andReadCountIsNotNull (line 830) | public Criteria andReadCountIsNotNull() { method andReadCountEqualTo (line 835) | public Criteria andReadCountEqualTo(String value) { method andReadCountEqualToColumn (line 846) | public Criteria andReadCountEqualToColumn(LitemallTopic.Column colum... method andReadCountNotEqualTo (line 851) | public Criteria andReadCountNotEqualTo(String value) { method andReadCountNotEqualToColumn (line 862) | public Criteria andReadCountNotEqualToColumn(LitemallTopic.Column co... method andReadCountGreaterThan (line 867) | public Criteria andReadCountGreaterThan(String value) { method andReadCountGreaterThanColumn (line 878) | public Criteria andReadCountGreaterThanColumn(LitemallTopic.Column c... method andReadCountGreaterThanOrEqualTo (line 883) | public Criteria andReadCountGreaterThanOrEqualTo(String value) { method andReadCountGreaterThanOrEqualToColumn (line 894) | public Criteria andReadCountGreaterThanOrEqualToColumn(LitemallTopic... method andReadCountLessThan (line 899) | public Criteria andReadCountLessThan(String value) { method andReadCountLessThanColumn (line 910) | public Criteria andReadCountLessThanColumn(LitemallTopic.Column colu... method andReadCountLessThanOrEqualTo (line 915) | public Criteria andReadCountLessThanOrEqualTo(String value) { method andReadCountLessThanOrEqualToColumn (line 926) | public Criteria andReadCountLessThanOrEqualToColumn(LitemallTopic.Co... method andReadCountLike (line 931) | public Criteria andReadCountLike(String value) { method andReadCountNotLike (line 936) | public Criteria andReadCountNotLike(String value) { method andReadCountIn (line 941) | public Criteria andReadCountIn(List values) { method andReadCountNotIn (line 946) | public Criteria andReadCountNotIn(List values) { method andReadCountBetween (line 951) | public Criteria andReadCountBetween(String value1, String value2) { method andReadCountNotBetween (line 956) | public Criteria andReadCountNotBetween(String value1, String value2) { method andPicUrlIsNull (line 961) | public Criteria andPicUrlIsNull() { method andPicUrlIsNotNull (line 966) | public Criteria andPicUrlIsNotNull() { method andPicUrlEqualTo (line 971) | public Criteria andPicUrlEqualTo(String value) { method andPicUrlEqualToColumn (line 982) | public Criteria andPicUrlEqualToColumn(LitemallTopic.Column column) { method andPicUrlNotEqualTo (line 987) | public Criteria andPicUrlNotEqualTo(String value) { method andPicUrlNotEqualToColumn (line 998) | public Criteria andPicUrlNotEqualToColumn(LitemallTopic.Column colum... method andPicUrlGreaterThan (line 1003) | public Criteria andPicUrlGreaterThan(String value) { method andPicUrlGreaterThanColumn (line 1014) | public Criteria andPicUrlGreaterThanColumn(LitemallTopic.Column colu... method andPicUrlGreaterThanOrEqualTo (line 1019) | public Criteria andPicUrlGreaterThanOrEqualTo(String value) { method andPicUrlGreaterThanOrEqualToColumn (line 1030) | public Criteria andPicUrlGreaterThanOrEqualToColumn(LitemallTopic.Co... method andPicUrlLessThan (line 1035) | public Criteria andPicUrlLessThan(String value) { method andPicUrlLessThanColumn (line 1046) | public Criteria andPicUrlLessThanColumn(LitemallTopic.Column column) { method andPicUrlLessThanOrEqualTo (line 1051) | public Criteria andPicUrlLessThanOrEqualTo(String value) { method andPicUrlLessThanOrEqualToColumn (line 1062) | public Criteria andPicUrlLessThanOrEqualToColumn(LitemallTopic.Colum... method andPicUrlLike (line 1067) | public Criteria andPicUrlLike(String value) { method andPicUrlNotLike (line 1072) | public Criteria andPicUrlNotLike(String value) { method andPicUrlIn (line 1077) | public Criteria andPicUrlIn(List values) { method andPicUrlNotIn (line 1082) | public Criteria andPicUrlNotIn(List values) { method andPicUrlBetween (line 1087) | public Criteria andPicUrlBetween(String value1, String value2) { method andPicUrlNotBetween (line 1092) | public Criteria andPicUrlNotBetween(String value1, String value2) { method andSortOrderIsNull (line 1097) | public Criteria andSortOrderIsNull() { method andSortOrderIsNotNull (line 1102) | public Criteria andSortOrderIsNotNull() { method andSortOrderEqualTo (line 1107) | public Criteria andSortOrderEqualTo(Integer value) { method andSortOrderEqualToColumn (line 1118) | public Criteria andSortOrderEqualToColumn(LitemallTopic.Column colum... method andSortOrderNotEqualTo (line 1123) | public Criteria andSortOrderNotEqualTo(Integer value) { method andSortOrderNotEqualToColumn (line 1134) | public Criteria andSortOrderNotEqualToColumn(LitemallTopic.Column co... method andSortOrderGreaterThan (line 1139) | public Criteria andSortOrderGreaterThan(Integer value) { method andSortOrderGreaterThanColumn (line 1150) | public Criteria andSortOrderGreaterThanColumn(LitemallTopic.Column c... method andSortOrderGreaterThanOrEqualTo (line 1155) | public Criteria andSortOrderGreaterThanOrEqualTo(Integer value) { method andSortOrderGreaterThanOrEqualToColumn (line 1166) | public Criteria andSortOrderGreaterThanOrEqualToColumn(LitemallTopic... method andSortOrderLessThan (line 1171) | public Criteria andSortOrderLessThan(Integer value) { method andSortOrderLessThanColumn (line 1182) | public Criteria andSortOrderLessThanColumn(LitemallTopic.Column colu... method andSortOrderLessThanOrEqualTo (line 1187) | public Criteria andSortOrderLessThanOrEqualTo(Integer value) { method andSortOrderLessThanOrEqualToColumn (line 1198) | public Criteria andSortOrderLessThanOrEqualToColumn(LitemallTopic.Co... method andSortOrderIn (line 1203) | public Criteria andSortOrderIn(List values) { method andSortOrderNotIn (line 1208) | public Criteria andSortOrderNotIn(List values) { method andSortOrderBetween (line 1213) | public Criteria andSortOrderBetween(Integer value1, Integer value2) { method andSortOrderNotBetween (line 1218) | public Criteria andSortOrderNotBetween(Integer value1, Integer value... method andGoodsIsNull (line 1223) | public Criteria andGoodsIsNull() { method andGoodsIsNotNull (line 1228) | public Criteria andGoodsIsNotNull() { method andGoodsEqualTo (line 1233) | public Criteria andGoodsEqualTo(Integer[] value) { method andGoodsEqualToColumn (line 1244) | public Criteria andGoodsEqualToColumn(LitemallTopic.Column column) { method andGoodsNotEqualTo (line 1249) | public Criteria andGoodsNotEqualTo(Integer[] value) { method andGoodsNotEqualToColumn (line 1260) | public Criteria andGoodsNotEqualToColumn(LitemallTopic.Column column) { method andGoodsGreaterThan (line 1265) | public Criteria andGoodsGreaterThan(Integer[] value) { method andGoodsGreaterThanColumn (line 1276) | public Criteria andGoodsGreaterThanColumn(LitemallTopic.Column colum... method andGoodsGreaterThanOrEqualTo (line 1281) | public Criteria andGoodsGreaterThanOrEqualTo(Integer[] value) { method andGoodsGreaterThanOrEqualToColumn (line 1292) | public Criteria andGoodsGreaterThanOrEqualToColumn(LitemallTopic.Col... method andGoodsLessThan (line 1297) | public Criteria andGoodsLessThan(Integer[] value) { method andGoodsLessThanColumn (line 1308) | public Criteria andGoodsLessThanColumn(LitemallTopic.Column column) { method andGoodsLessThanOrEqualTo (line 1313) | public Criteria andGoodsLessThanOrEqualTo(Integer[] value) { method andGoodsLessThanOrEqualToColumn (line 1324) | public Criteria andGoodsLessThanOrEqualToColumn(LitemallTopic.Column... method andGoodsLike (line 1329) | public Criteria andGoodsLike(Integer[] value) { method andGoodsNotLike (line 1334) | public Criteria andGoodsNotLike(Integer[] value) { method andGoodsIn (line 1339) | public Criteria andGoodsIn(List values) { method andGoodsNotIn (line 1344) | public Criteria andGoodsNotIn(List values) { method andGoodsBetween (line 1349) | public Criteria andGoodsBetween(Integer[] value1, Integer[] value2) { method andGoodsNotBetween (line 1354) | public Criteria andGoodsNotBetween(Integer[] value1, Integer[] value... method andAddTimeIsNull (line 1359) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 1364) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 1369) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 1380) | public Criteria andAddTimeEqualToColumn(LitemallTopic.Column column) { method andAddTimeNotEqualTo (line 1385) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 1396) | public Criteria andAddTimeNotEqualToColumn(LitemallTopic.Column colu... method andAddTimeGreaterThan (line 1401) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 1412) | public Criteria andAddTimeGreaterThanColumn(LitemallTopic.Column col... method andAddTimeGreaterThanOrEqualTo (line 1417) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 1428) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallTopic.C... method andAddTimeLessThan (line 1433) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 1444) | public Criteria andAddTimeLessThanColumn(LitemallTopic.Column column) { method andAddTimeLessThanOrEqualTo (line 1449) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 1460) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallTopic.Colu... method andAddTimeIn (line 1465) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 1470) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 1475) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 1480) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 1485) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 1490) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 1495) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 1506) | public Criteria andUpdateTimeEqualToColumn(LitemallTopic.Column colu... method andUpdateTimeNotEqualTo (line 1511) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 1522) | public Criteria andUpdateTimeNotEqualToColumn(LitemallTopic.Column c... method andUpdateTimeGreaterThan (line 1527) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 1538) | public Criteria andUpdateTimeGreaterThanColumn(LitemallTopic.Column ... method andUpdateTimeGreaterThanOrEqualTo (line 1543) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 1554) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallTopi... method andUpdateTimeLessThan (line 1559) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 1570) | public Criteria andUpdateTimeLessThanColumn(LitemallTopic.Column col... method andUpdateTimeLessThanOrEqualTo (line 1575) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 1586) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallTopic.C... method andUpdateTimeIn (line 1591) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 1596) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 1601) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 1606) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 1611) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 1616) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 1621) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 1632) | public Criteria andDeletedEqualToColumn(LitemallTopic.Column column) { method andDeletedNotEqualTo (line 1637) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 1648) | public Criteria andDeletedNotEqualToColumn(LitemallTopic.Column colu... method andDeletedGreaterThan (line 1653) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 1664) | public Criteria andDeletedGreaterThanColumn(LitemallTopic.Column col... method andDeletedGreaterThanOrEqualTo (line 1669) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 1680) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallTopic.C... method andDeletedLessThan (line 1685) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 1696) | public Criteria andDeletedLessThanColumn(LitemallTopic.Column column) { method andDeletedLessThanOrEqualTo (line 1701) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 1712) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallTopic.Colu... method andDeletedIn (line 1717) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 1722) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 1727) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 1732) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 1744) | public static class Criteria extends GeneratedCriteria { method Criteria (line 1759) | protected Criteria(LitemallTopicExample example) { method example (line 1770) | public LitemallTopicExample example() { method andIf (line 1780) | @Deprecated method when (line 1794) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 1807) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 1822) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 1826) | @Deprecated method add (line 1834) | Criteria add(Criteria add); class Criterion (line 1844) | public static class Criterion { method getCondition (line 1861) | public String getCondition() { method getValue (line 1865) | public Object getValue() { method getSecondValue (line 1869) | public Object getSecondValue() { method isNoValue (line 1873) | public boolean isNoValue() { method isSingleValue (line 1877) | public boolean isSingleValue() { method isBetweenValue (line 1881) | public boolean isBetweenValue() { method isListValue (line 1885) | public boolean isListValue() { method getTypeHandler (line 1889) | public String getTypeHandler() { method Criterion (line 1893) | protected Criterion(String condition) { method Criterion (line 1900) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 1912) | protected Criterion(String condition, Object value) { method Criterion (line 1916) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 1925) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 1930) | public interface ICriteriaWhen { method criteria (line 1937) | void criteria(Criteria criteria); type IExampleWhen (line 1940) | public interface IExampleWhen { method example (line 1947) | void example(org.linlinjava.litemall.db.domain.LitemallTopicExample ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallUser.java class LitemallUser (line 8) | public class LitemallUser { method getId (line 186) | public Integer getId() { method setId (line 198) | public void setId(Integer id) { method getUsername (line 210) | public String getUsername() { method setUsername (line 222) | public void setUsername(String username) { method getPassword (line 234) | public String getPassword() { method setPassword (line 246) | public void setPassword(String password) { method getGender (line 258) | public Byte getGender() { method setGender (line 270) | public void setGender(Byte gender) { method getBirthday (line 282) | public LocalDate getBirthday() { method setBirthday (line 294) | public void setBirthday(LocalDate birthday) { method getLastLoginTime (line 306) | public LocalDateTime getLastLoginTime() { method setLastLoginTime (line 318) | public void setLastLoginTime(LocalDateTime lastLoginTime) { method getLastLoginIp (line 330) | public String getLastLoginIp() { method setLastLoginIp (line 342) | public void setLastLoginIp(String lastLoginIp) { method getUserLevel (line 354) | public Byte getUserLevel() { method setUserLevel (line 366) | public void setUserLevel(Byte userLevel) { method getNickname (line 378) | public String getNickname() { method setNickname (line 390) | public void setNickname(String nickname) { method getMobile (line 402) | public String getMobile() { method setMobile (line 414) | public void setMobile(String mobile) { method getAvatar (line 426) | public String getAvatar() { method setAvatar (line 438) | public void setAvatar(String avatar) { method getWeixinOpenid (line 450) | public String getWeixinOpenid() { method setWeixinOpenid (line 462) | public void setWeixinOpenid(String weixinOpenid) { method getSessionKey (line 474) | public String getSessionKey() { method setSessionKey (line 486) | public void setSessionKey(String sessionKey) { method getStatus (line 498) | public Byte getStatus() { method setStatus (line 510) | public void setStatus(Byte status) { method getAddTime (line 522) | public LocalDateTime getAddTime() { method setAddTime (line 534) | public void setAddTime(LocalDateTime addTime) { method getUpdateTime (line 546) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 558) | public void setUpdateTime(LocalDateTime updateTime) { method andLogicalDeleted (line 568) | public void andLogicalDeleted(boolean deleted) { method getDeleted (line 580) | public Boolean getDeleted() { method setDeleted (line 592) | public void setDeleted(Boolean deleted) { method toString (line 602) | @Override method equals (line 637) | @Override method hashCode (line 674) | @Override type Deleted (line 704) | public enum Deleted { method Deleted (line 730) | Deleted(Boolean value, String name) { method getValue (line 741) | public Boolean getValue() { method value (line 751) | public Boolean value() { method getName (line 761) | public String getName() { type Column (line 772) | public enum Column { method value (line 845) | public String value() { method getValue (line 855) | public String getValue() { method getJavaProperty (line 865) | public String getJavaProperty() { method getJdbcType (line 875) | public String getJdbcType() { method Column (line 885) | Column(String column, String javaProperty, String jdbcType, boolean ... method desc (line 898) | public String desc() { method asc (line 908) | public String asc() { method excludes (line 918) | public static Column[] excludes(Column ... excludes) { method getEscapedColumnName (line 932) | public String getEscapedColumnName() { method getAliasedEscapedColumnName (line 946) | public String getAliasedEscapedColumnName() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/LitemallUserExample.java class LitemallUserExample (line 8) | public class LitemallUserExample { method LitemallUserExample (line 39) | public LitemallUserExample() { method setOrderByClause (line 49) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 59) | public String getOrderByClause() { method setDistinct (line 69) | public void setDistinct(boolean distinct) { method isDistinct (line 79) | public boolean isDistinct() { method getOredCriteria (line 89) | public List getOredCriteria() { method or (line 99) | public void or(Criteria criteria) { method or (line 109) | public Criteria or() { method orderBy (line 121) | public LitemallUserExample orderBy(String orderByClause) { method orderBy (line 132) | public LitemallUserExample orderBy(String ... orderByClauses) { method createCriteria (line 150) | public Criteria createCriteria() { method createCriteriaInternal (line 164) | protected Criteria createCriteriaInternal() { method clear (line 175) | public void clear() { method newAndCreateCriteria (line 187) | public static Criteria newAndCreateCriteria() { method when (line 198) | public LitemallUserExample when(boolean condition, IExampleWhen then) { method when (line 211) | public LitemallUserExample when(boolean condition, IExampleWhen then, ... class GeneratedCriteria (line 226) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 229) | protected GeneratedCriteria() { method isValid (line 234) | public boolean isValid() { method getAllCriteria (line 238) | public List getAllCriteria() { method getCriteria (line 242) | public List getCriteria() { method addCriterion (line 246) | protected void addCriterion(String condition) { method addCriterion (line 253) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 260) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 267) | public Criteria andIdIsNull() { method andIdIsNotNull (line 272) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 277) | public Criteria andIdEqualTo(Integer value) { method andIdEqualToColumn (line 288) | public Criteria andIdEqualToColumn(LitemallUser.Column column) { method andIdNotEqualTo (line 293) | public Criteria andIdNotEqualTo(Integer value) { method andIdNotEqualToColumn (line 304) | public Criteria andIdNotEqualToColumn(LitemallUser.Column column) { method andIdGreaterThan (line 309) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanColumn (line 320) | public Criteria andIdGreaterThanColumn(LitemallUser.Column column) { method andIdGreaterThanOrEqualTo (line 325) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdGreaterThanOrEqualToColumn (line 336) | public Criteria andIdGreaterThanOrEqualToColumn(LitemallUser.Column ... method andIdLessThan (line 341) | public Criteria andIdLessThan(Integer value) { method andIdLessThanColumn (line 352) | public Criteria andIdLessThanColumn(LitemallUser.Column column) { method andIdLessThanOrEqualTo (line 357) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdLessThanOrEqualToColumn (line 368) | public Criteria andIdLessThanOrEqualToColumn(LitemallUser.Column col... method andIdIn (line 373) | public Criteria andIdIn(List values) { method andIdNotIn (line 378) | public Criteria andIdNotIn(List values) { method andIdBetween (line 383) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 388) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUsernameIsNull (line 393) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 398) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 403) | public Criteria andUsernameEqualTo(String value) { method andUsernameEqualToColumn (line 414) | public Criteria andUsernameEqualToColumn(LitemallUser.Column column) { method andUsernameNotEqualTo (line 419) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameNotEqualToColumn (line 430) | public Criteria andUsernameNotEqualToColumn(LitemallUser.Column colu... method andUsernameGreaterThan (line 435) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanColumn (line 446) | public Criteria andUsernameGreaterThanColumn(LitemallUser.Column col... method andUsernameGreaterThanOrEqualTo (line 451) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameGreaterThanOrEqualToColumn (line 462) | public Criteria andUsernameGreaterThanOrEqualToColumn(LitemallUser.C... method andUsernameLessThan (line 467) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanColumn (line 478) | public Criteria andUsernameLessThanColumn(LitemallUser.Column column) { method andUsernameLessThanOrEqualTo (line 483) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLessThanOrEqualToColumn (line 494) | public Criteria andUsernameLessThanOrEqualToColumn(LitemallUser.Colu... method andUsernameLike (line 499) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 504) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 509) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 514) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 519) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 524) | public Criteria andUsernameNotBetween(String value1, String value2) { method andPasswordIsNull (line 529) | public Criteria andPasswordIsNull() { method andPasswordIsNotNull (line 534) | public Criteria andPasswordIsNotNull() { method andPasswordEqualTo (line 539) | public Criteria andPasswordEqualTo(String value) { method andPasswordEqualToColumn (line 550) | public Criteria andPasswordEqualToColumn(LitemallUser.Column column) { method andPasswordNotEqualTo (line 555) | public Criteria andPasswordNotEqualTo(String value) { method andPasswordNotEqualToColumn (line 566) | public Criteria andPasswordNotEqualToColumn(LitemallUser.Column colu... method andPasswordGreaterThan (line 571) | public Criteria andPasswordGreaterThan(String value) { method andPasswordGreaterThanColumn (line 582) | public Criteria andPasswordGreaterThanColumn(LitemallUser.Column col... method andPasswordGreaterThanOrEqualTo (line 587) | public Criteria andPasswordGreaterThanOrEqualTo(String value) { method andPasswordGreaterThanOrEqualToColumn (line 598) | public Criteria andPasswordGreaterThanOrEqualToColumn(LitemallUser.C... method andPasswordLessThan (line 603) | public Criteria andPasswordLessThan(String value) { method andPasswordLessThanColumn (line 614) | public Criteria andPasswordLessThanColumn(LitemallUser.Column column) { method andPasswordLessThanOrEqualTo (line 619) | public Criteria andPasswordLessThanOrEqualTo(String value) { method andPasswordLessThanOrEqualToColumn (line 630) | public Criteria andPasswordLessThanOrEqualToColumn(LitemallUser.Colu... method andPasswordLike (line 635) | public Criteria andPasswordLike(String value) { method andPasswordNotLike (line 640) | public Criteria andPasswordNotLike(String value) { method andPasswordIn (line 645) | public Criteria andPasswordIn(List values) { method andPasswordNotIn (line 650) | public Criteria andPasswordNotIn(List values) { method andPasswordBetween (line 655) | public Criteria andPasswordBetween(String value1, String value2) { method andPasswordNotBetween (line 660) | public Criteria andPasswordNotBetween(String value1, String value2) { method andGenderIsNull (line 665) | public Criteria andGenderIsNull() { method andGenderIsNotNull (line 670) | public Criteria andGenderIsNotNull() { method andGenderEqualTo (line 675) | public Criteria andGenderEqualTo(Byte value) { method andGenderEqualToColumn (line 686) | public Criteria andGenderEqualToColumn(LitemallUser.Column column) { method andGenderNotEqualTo (line 691) | public Criteria andGenderNotEqualTo(Byte value) { method andGenderNotEqualToColumn (line 702) | public Criteria andGenderNotEqualToColumn(LitemallUser.Column column) { method andGenderGreaterThan (line 707) | public Criteria andGenderGreaterThan(Byte value) { method andGenderGreaterThanColumn (line 718) | public Criteria andGenderGreaterThanColumn(LitemallUser.Column colum... method andGenderGreaterThanOrEqualTo (line 723) | public Criteria andGenderGreaterThanOrEqualTo(Byte value) { method andGenderGreaterThanOrEqualToColumn (line 734) | public Criteria andGenderGreaterThanOrEqualToColumn(LitemallUser.Col... method andGenderLessThan (line 739) | public Criteria andGenderLessThan(Byte value) { method andGenderLessThanColumn (line 750) | public Criteria andGenderLessThanColumn(LitemallUser.Column column) { method andGenderLessThanOrEqualTo (line 755) | public Criteria andGenderLessThanOrEqualTo(Byte value) { method andGenderLessThanOrEqualToColumn (line 766) | public Criteria andGenderLessThanOrEqualToColumn(LitemallUser.Column... method andGenderIn (line 771) | public Criteria andGenderIn(List values) { method andGenderNotIn (line 776) | public Criteria andGenderNotIn(List values) { method andGenderBetween (line 781) | public Criteria andGenderBetween(Byte value1, Byte value2) { method andGenderNotBetween (line 786) | public Criteria andGenderNotBetween(Byte value1, Byte value2) { method andBirthdayIsNull (line 791) | public Criteria andBirthdayIsNull() { method andBirthdayIsNotNull (line 796) | public Criteria andBirthdayIsNotNull() { method andBirthdayEqualTo (line 801) | public Criteria andBirthdayEqualTo(LocalDate value) { method andBirthdayEqualToColumn (line 812) | public Criteria andBirthdayEqualToColumn(LitemallUser.Column column) { method andBirthdayNotEqualTo (line 817) | public Criteria andBirthdayNotEqualTo(LocalDate value) { method andBirthdayNotEqualToColumn (line 828) | public Criteria andBirthdayNotEqualToColumn(LitemallUser.Column colu... method andBirthdayGreaterThan (line 833) | public Criteria andBirthdayGreaterThan(LocalDate value) { method andBirthdayGreaterThanColumn (line 844) | public Criteria andBirthdayGreaterThanColumn(LitemallUser.Column col... method andBirthdayGreaterThanOrEqualTo (line 849) | public Criteria andBirthdayGreaterThanOrEqualTo(LocalDate value) { method andBirthdayGreaterThanOrEqualToColumn (line 860) | public Criteria andBirthdayGreaterThanOrEqualToColumn(LitemallUser.C... method andBirthdayLessThan (line 865) | public Criteria andBirthdayLessThan(LocalDate value) { method andBirthdayLessThanColumn (line 876) | public Criteria andBirthdayLessThanColumn(LitemallUser.Column column) { method andBirthdayLessThanOrEqualTo (line 881) | public Criteria andBirthdayLessThanOrEqualTo(LocalDate value) { method andBirthdayLessThanOrEqualToColumn (line 892) | public Criteria andBirthdayLessThanOrEqualToColumn(LitemallUser.Colu... method andBirthdayIn (line 897) | public Criteria andBirthdayIn(List values) { method andBirthdayNotIn (line 902) | public Criteria andBirthdayNotIn(List values) { method andBirthdayBetween (line 907) | public Criteria andBirthdayBetween(LocalDate value1, LocalDate value... method andBirthdayNotBetween (line 912) | public Criteria andBirthdayNotBetween(LocalDate value1, LocalDate va... method andLastLoginTimeIsNull (line 917) | public Criteria andLastLoginTimeIsNull() { method andLastLoginTimeIsNotNull (line 922) | public Criteria andLastLoginTimeIsNotNull() { method andLastLoginTimeEqualTo (line 927) | public Criteria andLastLoginTimeEqualTo(LocalDateTime value) { method andLastLoginTimeEqualToColumn (line 938) | public Criteria andLastLoginTimeEqualToColumn(LitemallUser.Column co... method andLastLoginTimeNotEqualTo (line 943) | public Criteria andLastLoginTimeNotEqualTo(LocalDateTime value) { method andLastLoginTimeNotEqualToColumn (line 954) | public Criteria andLastLoginTimeNotEqualToColumn(LitemallUser.Column... method andLastLoginTimeGreaterThan (line 959) | public Criteria andLastLoginTimeGreaterThan(LocalDateTime value) { method andLastLoginTimeGreaterThanColumn (line 970) | public Criteria andLastLoginTimeGreaterThanColumn(LitemallUser.Colum... method andLastLoginTimeGreaterThanOrEqualTo (line 975) | public Criteria andLastLoginTimeGreaterThanOrEqualTo(LocalDateTime v... method andLastLoginTimeGreaterThanOrEqualToColumn (line 986) | public Criteria andLastLoginTimeGreaterThanOrEqualToColumn(LitemallU... method andLastLoginTimeLessThan (line 991) | public Criteria andLastLoginTimeLessThan(LocalDateTime value) { method andLastLoginTimeLessThanColumn (line 1002) | public Criteria andLastLoginTimeLessThanColumn(LitemallUser.Column c... method andLastLoginTimeLessThanOrEqualTo (line 1007) | public Criteria andLastLoginTimeLessThanOrEqualTo(LocalDateTime valu... method andLastLoginTimeLessThanOrEqualToColumn (line 1018) | public Criteria andLastLoginTimeLessThanOrEqualToColumn(LitemallUser... method andLastLoginTimeIn (line 1023) | public Criteria andLastLoginTimeIn(List values) { method andLastLoginTimeNotIn (line 1028) | public Criteria andLastLoginTimeNotIn(List values) { method andLastLoginTimeBetween (line 1033) | public Criteria andLastLoginTimeBetween(LocalDateTime value1, LocalD... method andLastLoginTimeNotBetween (line 1038) | public Criteria andLastLoginTimeNotBetween(LocalDateTime value1, Loc... method andLastLoginIpIsNull (line 1043) | public Criteria andLastLoginIpIsNull() { method andLastLoginIpIsNotNull (line 1048) | public Criteria andLastLoginIpIsNotNull() { method andLastLoginIpEqualTo (line 1053) | public Criteria andLastLoginIpEqualTo(String value) { method andLastLoginIpEqualToColumn (line 1064) | public Criteria andLastLoginIpEqualToColumn(LitemallUser.Column colu... method andLastLoginIpNotEqualTo (line 1069) | public Criteria andLastLoginIpNotEqualTo(String value) { method andLastLoginIpNotEqualToColumn (line 1080) | public Criteria andLastLoginIpNotEqualToColumn(LitemallUser.Column c... method andLastLoginIpGreaterThan (line 1085) | public Criteria andLastLoginIpGreaterThan(String value) { method andLastLoginIpGreaterThanColumn (line 1096) | public Criteria andLastLoginIpGreaterThanColumn(LitemallUser.Column ... method andLastLoginIpGreaterThanOrEqualTo (line 1101) | public Criteria andLastLoginIpGreaterThanOrEqualTo(String value) { method andLastLoginIpGreaterThanOrEqualToColumn (line 1112) | public Criteria andLastLoginIpGreaterThanOrEqualToColumn(LitemallUse... method andLastLoginIpLessThan (line 1117) | public Criteria andLastLoginIpLessThan(String value) { method andLastLoginIpLessThanColumn (line 1128) | public Criteria andLastLoginIpLessThanColumn(LitemallUser.Column col... method andLastLoginIpLessThanOrEqualTo (line 1133) | public Criteria andLastLoginIpLessThanOrEqualTo(String value) { method andLastLoginIpLessThanOrEqualToColumn (line 1144) | public Criteria andLastLoginIpLessThanOrEqualToColumn(LitemallUser.C... method andLastLoginIpLike (line 1149) | public Criteria andLastLoginIpLike(String value) { method andLastLoginIpNotLike (line 1154) | public Criteria andLastLoginIpNotLike(String value) { method andLastLoginIpIn (line 1159) | public Criteria andLastLoginIpIn(List values) { method andLastLoginIpNotIn (line 1164) | public Criteria andLastLoginIpNotIn(List values) { method andLastLoginIpBetween (line 1169) | public Criteria andLastLoginIpBetween(String value1, String value2) { method andLastLoginIpNotBetween (line 1174) | public Criteria andLastLoginIpNotBetween(String value1, String value... method andUserLevelIsNull (line 1179) | public Criteria andUserLevelIsNull() { method andUserLevelIsNotNull (line 1184) | public Criteria andUserLevelIsNotNull() { method andUserLevelEqualTo (line 1189) | public Criteria andUserLevelEqualTo(Byte value) { method andUserLevelEqualToColumn (line 1200) | public Criteria andUserLevelEqualToColumn(LitemallUser.Column column) { method andUserLevelNotEqualTo (line 1205) | public Criteria andUserLevelNotEqualTo(Byte value) { method andUserLevelNotEqualToColumn (line 1216) | public Criteria andUserLevelNotEqualToColumn(LitemallUser.Column col... method andUserLevelGreaterThan (line 1221) | public Criteria andUserLevelGreaterThan(Byte value) { method andUserLevelGreaterThanColumn (line 1232) | public Criteria andUserLevelGreaterThanColumn(LitemallUser.Column co... method andUserLevelGreaterThanOrEqualTo (line 1237) | public Criteria andUserLevelGreaterThanOrEqualTo(Byte value) { method andUserLevelGreaterThanOrEqualToColumn (line 1248) | public Criteria andUserLevelGreaterThanOrEqualToColumn(LitemallUser.... method andUserLevelLessThan (line 1253) | public Criteria andUserLevelLessThan(Byte value) { method andUserLevelLessThanColumn (line 1264) | public Criteria andUserLevelLessThanColumn(LitemallUser.Column colum... method andUserLevelLessThanOrEqualTo (line 1269) | public Criteria andUserLevelLessThanOrEqualTo(Byte value) { method andUserLevelLessThanOrEqualToColumn (line 1280) | public Criteria andUserLevelLessThanOrEqualToColumn(LitemallUser.Col... method andUserLevelIn (line 1285) | public Criteria andUserLevelIn(List values) { method andUserLevelNotIn (line 1290) | public Criteria andUserLevelNotIn(List values) { method andUserLevelBetween (line 1295) | public Criteria andUserLevelBetween(Byte value1, Byte value2) { method andUserLevelNotBetween (line 1300) | public Criteria andUserLevelNotBetween(Byte value1, Byte value2) { method andNicknameIsNull (line 1305) | public Criteria andNicknameIsNull() { method andNicknameIsNotNull (line 1310) | public Criteria andNicknameIsNotNull() { method andNicknameEqualTo (line 1315) | public Criteria andNicknameEqualTo(String value) { method andNicknameEqualToColumn (line 1326) | public Criteria andNicknameEqualToColumn(LitemallUser.Column column) { method andNicknameNotEqualTo (line 1331) | public Criteria andNicknameNotEqualTo(String value) { method andNicknameNotEqualToColumn (line 1342) | public Criteria andNicknameNotEqualToColumn(LitemallUser.Column colu... method andNicknameGreaterThan (line 1347) | public Criteria andNicknameGreaterThan(String value) { method andNicknameGreaterThanColumn (line 1358) | public Criteria andNicknameGreaterThanColumn(LitemallUser.Column col... method andNicknameGreaterThanOrEqualTo (line 1363) | public Criteria andNicknameGreaterThanOrEqualTo(String value) { method andNicknameGreaterThanOrEqualToColumn (line 1374) | public Criteria andNicknameGreaterThanOrEqualToColumn(LitemallUser.C... method andNicknameLessThan (line 1379) | public Criteria andNicknameLessThan(String value) { method andNicknameLessThanColumn (line 1390) | public Criteria andNicknameLessThanColumn(LitemallUser.Column column) { method andNicknameLessThanOrEqualTo (line 1395) | public Criteria andNicknameLessThanOrEqualTo(String value) { method andNicknameLessThanOrEqualToColumn (line 1406) | public Criteria andNicknameLessThanOrEqualToColumn(LitemallUser.Colu... method andNicknameLike (line 1411) | public Criteria andNicknameLike(String value) { method andNicknameNotLike (line 1416) | public Criteria andNicknameNotLike(String value) { method andNicknameIn (line 1421) | public Criteria andNicknameIn(List values) { method andNicknameNotIn (line 1426) | public Criteria andNicknameNotIn(List values) { method andNicknameBetween (line 1431) | public Criteria andNicknameBetween(String value1, String value2) { method andNicknameNotBetween (line 1436) | public Criteria andNicknameNotBetween(String value1, String value2) { method andMobileIsNull (line 1441) | public Criteria andMobileIsNull() { method andMobileIsNotNull (line 1446) | public Criteria andMobileIsNotNull() { method andMobileEqualTo (line 1451) | public Criteria andMobileEqualTo(String value) { method andMobileEqualToColumn (line 1462) | public Criteria andMobileEqualToColumn(LitemallUser.Column column) { method andMobileNotEqualTo (line 1467) | public Criteria andMobileNotEqualTo(String value) { method andMobileNotEqualToColumn (line 1478) | public Criteria andMobileNotEqualToColumn(LitemallUser.Column column) { method andMobileGreaterThan (line 1483) | public Criteria andMobileGreaterThan(String value) { method andMobileGreaterThanColumn (line 1494) | public Criteria andMobileGreaterThanColumn(LitemallUser.Column colum... method andMobileGreaterThanOrEqualTo (line 1499) | public Criteria andMobileGreaterThanOrEqualTo(String value) { method andMobileGreaterThanOrEqualToColumn (line 1510) | public Criteria andMobileGreaterThanOrEqualToColumn(LitemallUser.Col... method andMobileLessThan (line 1515) | public Criteria andMobileLessThan(String value) { method andMobileLessThanColumn (line 1526) | public Criteria andMobileLessThanColumn(LitemallUser.Column column) { method andMobileLessThanOrEqualTo (line 1531) | public Criteria andMobileLessThanOrEqualTo(String value) { method andMobileLessThanOrEqualToColumn (line 1542) | public Criteria andMobileLessThanOrEqualToColumn(LitemallUser.Column... method andMobileLike (line 1547) | public Criteria andMobileLike(String value) { method andMobileNotLike (line 1552) | public Criteria andMobileNotLike(String value) { method andMobileIn (line 1557) | public Criteria andMobileIn(List values) { method andMobileNotIn (line 1562) | public Criteria andMobileNotIn(List values) { method andMobileBetween (line 1567) | public Criteria andMobileBetween(String value1, String value2) { method andMobileNotBetween (line 1572) | public Criteria andMobileNotBetween(String value1, String value2) { method andAvatarIsNull (line 1577) | public Criteria andAvatarIsNull() { method andAvatarIsNotNull (line 1582) | public Criteria andAvatarIsNotNull() { method andAvatarEqualTo (line 1587) | public Criteria andAvatarEqualTo(String value) { method andAvatarEqualToColumn (line 1598) | public Criteria andAvatarEqualToColumn(LitemallUser.Column column) { method andAvatarNotEqualTo (line 1603) | public Criteria andAvatarNotEqualTo(String value) { method andAvatarNotEqualToColumn (line 1614) | public Criteria andAvatarNotEqualToColumn(LitemallUser.Column column) { method andAvatarGreaterThan (line 1619) | public Criteria andAvatarGreaterThan(String value) { method andAvatarGreaterThanColumn (line 1630) | public Criteria andAvatarGreaterThanColumn(LitemallUser.Column colum... method andAvatarGreaterThanOrEqualTo (line 1635) | public Criteria andAvatarGreaterThanOrEqualTo(String value) { method andAvatarGreaterThanOrEqualToColumn (line 1646) | public Criteria andAvatarGreaterThanOrEqualToColumn(LitemallUser.Col... method andAvatarLessThan (line 1651) | public Criteria andAvatarLessThan(String value) { method andAvatarLessThanColumn (line 1662) | public Criteria andAvatarLessThanColumn(LitemallUser.Column column) { method andAvatarLessThanOrEqualTo (line 1667) | public Criteria andAvatarLessThanOrEqualTo(String value) { method andAvatarLessThanOrEqualToColumn (line 1678) | public Criteria andAvatarLessThanOrEqualToColumn(LitemallUser.Column... method andAvatarLike (line 1683) | public Criteria andAvatarLike(String value) { method andAvatarNotLike (line 1688) | public Criteria andAvatarNotLike(String value) { method andAvatarIn (line 1693) | public Criteria andAvatarIn(List values) { method andAvatarNotIn (line 1698) | public Criteria andAvatarNotIn(List values) { method andAvatarBetween (line 1703) | public Criteria andAvatarBetween(String value1, String value2) { method andAvatarNotBetween (line 1708) | public Criteria andAvatarNotBetween(String value1, String value2) { method andWeixinOpenidIsNull (line 1713) | public Criteria andWeixinOpenidIsNull() { method andWeixinOpenidIsNotNull (line 1718) | public Criteria andWeixinOpenidIsNotNull() { method andWeixinOpenidEqualTo (line 1723) | public Criteria andWeixinOpenidEqualTo(String value) { method andWeixinOpenidEqualToColumn (line 1734) | public Criteria andWeixinOpenidEqualToColumn(LitemallUser.Column col... method andWeixinOpenidNotEqualTo (line 1739) | public Criteria andWeixinOpenidNotEqualTo(String value) { method andWeixinOpenidNotEqualToColumn (line 1750) | public Criteria andWeixinOpenidNotEqualToColumn(LitemallUser.Column ... method andWeixinOpenidGreaterThan (line 1755) | public Criteria andWeixinOpenidGreaterThan(String value) { method andWeixinOpenidGreaterThanColumn (line 1766) | public Criteria andWeixinOpenidGreaterThanColumn(LitemallUser.Column... method andWeixinOpenidGreaterThanOrEqualTo (line 1771) | public Criteria andWeixinOpenidGreaterThanOrEqualTo(String value) { method andWeixinOpenidGreaterThanOrEqualToColumn (line 1782) | public Criteria andWeixinOpenidGreaterThanOrEqualToColumn(LitemallUs... method andWeixinOpenidLessThan (line 1787) | public Criteria andWeixinOpenidLessThan(String value) { method andWeixinOpenidLessThanColumn (line 1798) | public Criteria andWeixinOpenidLessThanColumn(LitemallUser.Column co... method andWeixinOpenidLessThanOrEqualTo (line 1803) | public Criteria andWeixinOpenidLessThanOrEqualTo(String value) { method andWeixinOpenidLessThanOrEqualToColumn (line 1814) | public Criteria andWeixinOpenidLessThanOrEqualToColumn(LitemallUser.... method andWeixinOpenidLike (line 1819) | public Criteria andWeixinOpenidLike(String value) { method andWeixinOpenidNotLike (line 1824) | public Criteria andWeixinOpenidNotLike(String value) { method andWeixinOpenidIn (line 1829) | public Criteria andWeixinOpenidIn(List values) { method andWeixinOpenidNotIn (line 1834) | public Criteria andWeixinOpenidNotIn(List values) { method andWeixinOpenidBetween (line 1839) | public Criteria andWeixinOpenidBetween(String value1, String value2) { method andWeixinOpenidNotBetween (line 1844) | public Criteria andWeixinOpenidNotBetween(String value1, String valu... method andSessionKeyIsNull (line 1849) | public Criteria andSessionKeyIsNull() { method andSessionKeyIsNotNull (line 1854) | public Criteria andSessionKeyIsNotNull() { method andSessionKeyEqualTo (line 1859) | public Criteria andSessionKeyEqualTo(String value) { method andSessionKeyEqualToColumn (line 1870) | public Criteria andSessionKeyEqualToColumn(LitemallUser.Column colum... method andSessionKeyNotEqualTo (line 1875) | public Criteria andSessionKeyNotEqualTo(String value) { method andSessionKeyNotEqualToColumn (line 1886) | public Criteria andSessionKeyNotEqualToColumn(LitemallUser.Column co... method andSessionKeyGreaterThan (line 1891) | public Criteria andSessionKeyGreaterThan(String value) { method andSessionKeyGreaterThanColumn (line 1902) | public Criteria andSessionKeyGreaterThanColumn(LitemallUser.Column c... method andSessionKeyGreaterThanOrEqualTo (line 1907) | public Criteria andSessionKeyGreaterThanOrEqualTo(String value) { method andSessionKeyGreaterThanOrEqualToColumn (line 1918) | public Criteria andSessionKeyGreaterThanOrEqualToColumn(LitemallUser... method andSessionKeyLessThan (line 1923) | public Criteria andSessionKeyLessThan(String value) { method andSessionKeyLessThanColumn (line 1934) | public Criteria andSessionKeyLessThanColumn(LitemallUser.Column colu... method andSessionKeyLessThanOrEqualTo (line 1939) | public Criteria andSessionKeyLessThanOrEqualTo(String value) { method andSessionKeyLessThanOrEqualToColumn (line 1950) | public Criteria andSessionKeyLessThanOrEqualToColumn(LitemallUser.Co... method andSessionKeyLike (line 1955) | public Criteria andSessionKeyLike(String value) { method andSessionKeyNotLike (line 1960) | public Criteria andSessionKeyNotLike(String value) { method andSessionKeyIn (line 1965) | public Criteria andSessionKeyIn(List values) { method andSessionKeyNotIn (line 1970) | public Criteria andSessionKeyNotIn(List values) { method andSessionKeyBetween (line 1975) | public Criteria andSessionKeyBetween(String value1, String value2) { method andSessionKeyNotBetween (line 1980) | public Criteria andSessionKeyNotBetween(String value1, String value2) { method andStatusIsNull (line 1985) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 1990) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 1995) | public Criteria andStatusEqualTo(Byte value) { method andStatusEqualToColumn (line 2006) | public Criteria andStatusEqualToColumn(LitemallUser.Column column) { method andStatusNotEqualTo (line 2011) | public Criteria andStatusNotEqualTo(Byte value) { method andStatusNotEqualToColumn (line 2022) | public Criteria andStatusNotEqualToColumn(LitemallUser.Column column) { method andStatusGreaterThan (line 2027) | public Criteria andStatusGreaterThan(Byte value) { method andStatusGreaterThanColumn (line 2038) | public Criteria andStatusGreaterThanColumn(LitemallUser.Column colum... method andStatusGreaterThanOrEqualTo (line 2043) | public Criteria andStatusGreaterThanOrEqualTo(Byte value) { method andStatusGreaterThanOrEqualToColumn (line 2054) | public Criteria andStatusGreaterThanOrEqualToColumn(LitemallUser.Col... method andStatusLessThan (line 2059) | public Criteria andStatusLessThan(Byte value) { method andStatusLessThanColumn (line 2070) | public Criteria andStatusLessThanColumn(LitemallUser.Column column) { method andStatusLessThanOrEqualTo (line 2075) | public Criteria andStatusLessThanOrEqualTo(Byte value) { method andStatusLessThanOrEqualToColumn (line 2086) | public Criteria andStatusLessThanOrEqualToColumn(LitemallUser.Column... method andStatusIn (line 2091) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 2096) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 2101) | public Criteria andStatusBetween(Byte value1, Byte value2) { method andStatusNotBetween (line 2106) | public Criteria andStatusNotBetween(Byte value1, Byte value2) { method andAddTimeIsNull (line 2111) | public Criteria andAddTimeIsNull() { method andAddTimeIsNotNull (line 2116) | public Criteria andAddTimeIsNotNull() { method andAddTimeEqualTo (line 2121) | public Criteria andAddTimeEqualTo(LocalDateTime value) { method andAddTimeEqualToColumn (line 2132) | public Criteria andAddTimeEqualToColumn(LitemallUser.Column column) { method andAddTimeNotEqualTo (line 2137) | public Criteria andAddTimeNotEqualTo(LocalDateTime value) { method andAddTimeNotEqualToColumn (line 2148) | public Criteria andAddTimeNotEqualToColumn(LitemallUser.Column colum... method andAddTimeGreaterThan (line 2153) | public Criteria andAddTimeGreaterThan(LocalDateTime value) { method andAddTimeGreaterThanColumn (line 2164) | public Criteria andAddTimeGreaterThanColumn(LitemallUser.Column colu... method andAddTimeGreaterThanOrEqualTo (line 2169) | public Criteria andAddTimeGreaterThanOrEqualTo(LocalDateTime value) { method andAddTimeGreaterThanOrEqualToColumn (line 2180) | public Criteria andAddTimeGreaterThanOrEqualToColumn(LitemallUser.Co... method andAddTimeLessThan (line 2185) | public Criteria andAddTimeLessThan(LocalDateTime value) { method andAddTimeLessThanColumn (line 2196) | public Criteria andAddTimeLessThanColumn(LitemallUser.Column column) { method andAddTimeLessThanOrEqualTo (line 2201) | public Criteria andAddTimeLessThanOrEqualTo(LocalDateTime value) { method andAddTimeLessThanOrEqualToColumn (line 2212) | public Criteria andAddTimeLessThanOrEqualToColumn(LitemallUser.Colum... method andAddTimeIn (line 2217) | public Criteria andAddTimeIn(List values) { method andAddTimeNotIn (line 2222) | public Criteria andAddTimeNotIn(List values) { method andAddTimeBetween (line 2227) | public Criteria andAddTimeBetween(LocalDateTime value1, LocalDateTim... method andAddTimeNotBetween (line 2232) | public Criteria andAddTimeNotBetween(LocalDateTime value1, LocalDate... method andUpdateTimeIsNull (line 2237) | public Criteria andUpdateTimeIsNull() { method andUpdateTimeIsNotNull (line 2242) | public Criteria andUpdateTimeIsNotNull() { method andUpdateTimeEqualTo (line 2247) | public Criteria andUpdateTimeEqualTo(LocalDateTime value) { method andUpdateTimeEqualToColumn (line 2258) | public Criteria andUpdateTimeEqualToColumn(LitemallUser.Column colum... method andUpdateTimeNotEqualTo (line 2263) | public Criteria andUpdateTimeNotEqualTo(LocalDateTime value) { method andUpdateTimeNotEqualToColumn (line 2274) | public Criteria andUpdateTimeNotEqualToColumn(LitemallUser.Column co... method andUpdateTimeGreaterThan (line 2279) | public Criteria andUpdateTimeGreaterThan(LocalDateTime value) { method andUpdateTimeGreaterThanColumn (line 2290) | public Criteria andUpdateTimeGreaterThanColumn(LitemallUser.Column c... method andUpdateTimeGreaterThanOrEqualTo (line 2295) | public Criteria andUpdateTimeGreaterThanOrEqualTo(LocalDateTime valu... method andUpdateTimeGreaterThanOrEqualToColumn (line 2306) | public Criteria andUpdateTimeGreaterThanOrEqualToColumn(LitemallUser... method andUpdateTimeLessThan (line 2311) | public Criteria andUpdateTimeLessThan(LocalDateTime value) { method andUpdateTimeLessThanColumn (line 2322) | public Criteria andUpdateTimeLessThanColumn(LitemallUser.Column colu... method andUpdateTimeLessThanOrEqualTo (line 2327) | public Criteria andUpdateTimeLessThanOrEqualTo(LocalDateTime value) { method andUpdateTimeLessThanOrEqualToColumn (line 2338) | public Criteria andUpdateTimeLessThanOrEqualToColumn(LitemallUser.Co... method andUpdateTimeIn (line 2343) | public Criteria andUpdateTimeIn(List values) { method andUpdateTimeNotIn (line 2348) | public Criteria andUpdateTimeNotIn(List values) { method andUpdateTimeBetween (line 2353) | public Criteria andUpdateTimeBetween(LocalDateTime value1, LocalDate... method andUpdateTimeNotBetween (line 2358) | public Criteria andUpdateTimeNotBetween(LocalDateTime value1, LocalD... method andDeletedIsNull (line 2363) | public Criteria andDeletedIsNull() { method andDeletedIsNotNull (line 2368) | public Criteria andDeletedIsNotNull() { method andDeletedEqualTo (line 2373) | public Criteria andDeletedEqualTo(Boolean value) { method andDeletedEqualToColumn (line 2384) | public Criteria andDeletedEqualToColumn(LitemallUser.Column column) { method andDeletedNotEqualTo (line 2389) | public Criteria andDeletedNotEqualTo(Boolean value) { method andDeletedNotEqualToColumn (line 2400) | public Criteria andDeletedNotEqualToColumn(LitemallUser.Column colum... method andDeletedGreaterThan (line 2405) | public Criteria andDeletedGreaterThan(Boolean value) { method andDeletedGreaterThanColumn (line 2416) | public Criteria andDeletedGreaterThanColumn(LitemallUser.Column colu... method andDeletedGreaterThanOrEqualTo (line 2421) | public Criteria andDeletedGreaterThanOrEqualTo(Boolean value) { method andDeletedGreaterThanOrEqualToColumn (line 2432) | public Criteria andDeletedGreaterThanOrEqualToColumn(LitemallUser.Co... method andDeletedLessThan (line 2437) | public Criteria andDeletedLessThan(Boolean value) { method andDeletedLessThanColumn (line 2448) | public Criteria andDeletedLessThanColumn(LitemallUser.Column column) { method andDeletedLessThanOrEqualTo (line 2453) | public Criteria andDeletedLessThanOrEqualTo(Boolean value) { method andDeletedLessThanOrEqualToColumn (line 2464) | public Criteria andDeletedLessThanOrEqualToColumn(LitemallUser.Colum... method andDeletedIn (line 2469) | public Criteria andDeletedIn(List values) { method andDeletedNotIn (line 2474) | public Criteria andDeletedNotIn(List values) { method andDeletedBetween (line 2479) | public Criteria andDeletedBetween(Boolean value1, Boolean value2) { method andDeletedNotBetween (line 2484) | public Criteria andDeletedNotBetween(Boolean value1, Boolean value2) { class Criteria (line 2496) | public static class Criteria extends GeneratedCriteria { method Criteria (line 2511) | protected Criteria(LitemallUserExample example) { method example (line 2522) | public LitemallUserExample example() { method andIf (line 2532) | @Deprecated method when (line 2546) | public Criteria when(boolean condition, ICriteriaWhen then) { method when (line 2559) | public Criteria when(boolean condition, ICriteriaWhen then, ICriteri... method andLogicalDeleted (line 2574) | public Criteria andLogicalDeleted(boolean deleted) { type ICriteriaAdd (line 2578) | @Deprecated method add (line 2586) | Criteria add(Criteria add); class Criterion (line 2596) | public static class Criterion { method getCondition (line 2613) | public String getCondition() { method getValue (line 2617) | public Object getValue() { method getSecondValue (line 2621) | public Object getSecondValue() { method isNoValue (line 2625) | public boolean isNoValue() { method isSingleValue (line 2629) | public boolean isSingleValue() { method isBetweenValue (line 2633) | public boolean isBetweenValue() { method isListValue (line 2637) | public boolean isListValue() { method getTypeHandler (line 2641) | public String getTypeHandler() { method Criterion (line 2645) | protected Criterion(String condition) { method Criterion (line 2652) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 2664) | protected Criterion(String condition, Object value) { method Criterion (line 2668) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 2677) | protected Criterion(String condition, Object value, Object secondVal... type ICriteriaWhen (line 2682) | public interface ICriteriaWhen { method criteria (line 2689) | void criteria(Criteria criteria); type IExampleWhen (line 2692) | public interface IExampleWhen { method example (line 2699) | void example(org.linlinjava.litemall.db.domain.LitemallUserExample e... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/OrderGoodsVo.java class OrderGoodsVo (line 6) | public class OrderGoodsVo { method getProductId (line 17) | public Integer getProductId() { method setProductId (line 21) | public void setProductId(Integer productId) { method getGoodsId (line 25) | public Integer getGoodsId() { method setGoodsId (line 29) | public void setGoodsId(Integer goodsId) { method getLocation (line 33) | public String getLocation() { method setLocation (line 37) | public void setLocation(String location) { method getId (line 41) | public Integer getId() { method setId (line 45) | public void setId(Integer id) { method getPicUrl (line 48) | public String getPicUrl() { method setPicUrl (line 52) | public void setPicUrl(String picUrl) { method getGoodsName (line 56) | public String getGoodsName() { method setGoodsName (line 60) | public void setGoodsName(String goodsName) { method getSpecifications (line 64) | public String[] getSpecifications() { method setSpecifications (line 68) | public void setSpecifications(String[] specifications) { method getNumber (line 72) | public Integer getNumber() { method setNumber (line 76) | public void setNumber(Integer number) { method getPrice (line 80) | public BigDecimal getPrice() { method setPrice (line 84) | public void setPrice(BigDecimal price) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/OrderVo.java class OrderVo (line 7) | public class OrderVo { method getPayTime (line 28) | public LocalDateTime getPayTime() { method setPayTime (line 32) | public void setPayTime(LocalDateTime payTime) { method getIntegralPrice (line 36) | public BigDecimal getIntegralPrice() { method setIntegralPrice (line 40) | public void setIntegralPrice(BigDecimal integralPrice) { method getMessage (line 44) | public String getMessage() { method setMessage (line 48) | public void setMessage(String message) { method getShipChannel (line 52) | public String getShipChannel() { method setShipChannel (line 56) | public void setShipChannel(String shipChannel) { method getShipSn (line 60) | public String getShipSn() { method setShipSn (line 64) | public void setShipSn(String shipSn) { method getOrderPrice (line 68) | public BigDecimal getOrderPrice() { method setOrderPrice (line 72) | public void setOrderPrice(BigDecimal orderPrice) { method getFreightPrice (line 76) | public BigDecimal getFreightPrice() { method setFreightPrice (line 80) | public void setFreightPrice(BigDecimal freightPrice) { method getId (line 84) | public Integer getId() { method setId (line 88) | public void setId(Integer id) { method getOrderSn (line 92) | public String getOrderSn() { method setOrderSn (line 96) | public void setOrderSn(String orderSn) { method getOrderStatus (line 100) | public Integer getOrderStatus() { method setOrderStatus (line 104) | public void setOrderStatus(Integer orderStatus) { method getActualPrice (line 108) | public BigDecimal getActualPrice() { method setActualPrice (line 112) | public void setActualPrice(BigDecimal actualPrice) { method getAddTime (line 116) | public LocalDateTime getAddTime() { method setAddTime (line 120) | public void setAddTime(LocalDateTime addTime) { method getUserId (line 124) | public Integer getUserId() { method setUserId (line 128) | public void setUserId(Integer userId) { method getUserName (line 132) | public String getUserName() { method setUserName (line 136) | public void setUserName(String userName) { method getUserAvatar (line 140) | public String getUserAvatar() { method setUserAvatar (line 144) | public void setUserAvatar(String userAvatar) { method getConsignee (line 148) | public String getConsignee() { method setConsignee (line 152) | public void setConsignee(String consignee) { method getAddress (line 156) | public String getAddress() { method setAddress (line 160) | public void setAddress(String address) { method getMobile (line 164) | public String getMobile() { method setMobile (line 168) | public void setMobile(String mobile) { method getGoodsVoList (line 172) | public List getGoodsVoList() { method setGoodsVoList (line 176) | public void setGoodsVoList(List goodsVoList) { method toString (line 180) | @Override FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/domain/UserVo.java class UserVo (line 3) | public class UserVo { method getNickname (line 7) | public String getNickname() { method setNickname (line 11) | public void setNickname(String nickname) { method getAvatar (line 15) | public String getAvatar() { method setAvatar (line 19) | public void setAvatar(String avatar) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/mybatis/JsonIntegerArrayTypeHandler.java class JsonIntegerArrayTypeHandler (line 15) | public class JsonIntegerArrayTypeHandler extends BaseTypeHandler { method setNonNullParameter (line 18) | @Override method getNullableResult (line 23) | @Override method getNullableResult (line 28) | @Override method getNullableResult (line 33) | @Override method toJson (line 38) | private String toJson(String[] params) { method toObject (line 47) | private String[] toObject(String content) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/CouponAssignService.java class CouponAssignService (line 13) | @Service method assignForRegister (line 27) | public void assignForRegister(Integer userId) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/CouponVerifyService.java class CouponVerifyService (line 14) | @Service method checkCoupon (line 32) | public LitemallCoupon checkCoupon(Integer userId, Integer couponId, In... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallAdService.java class LitemallAdService (line 14) | @Service method queryIndex (line 19) | public List queryIndex() { method querySelective (line 25) | public List querySelective(String name, String content, In... method updateById (line 45) | public int updateById(LitemallAd ad) { method deleteById (line 50) | public void deleteById(Integer id) { method add (line 54) | public void add(LitemallAd ad) { method findById (line 60) | public LitemallAd findById(Integer id) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallAddressService.java class LitemallAddressService (line 14) | @Service method queryByUid (line 19) | public List queryByUid(Integer uid) { method query (line 25) | public LitemallAddress query(Integer userId, Integer id) { method add (line 31) | public int add(LitemallAddress address) { method update (line 37) | public int update(LitemallAddress address) { method delete (line 42) | public void delete(Integer id) { method findDefault (line 46) | public LitemallAddress findDefault(Integer userId) { method resetDefault (line 52) | public void resetDefault(Integer userId) { method querySelective (line 61) | public List querySelective(Integer userId, String nam... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallAdminService.java class LitemallAdminService (line 15) | @Service method findAdmin (line 21) | public List findAdmin(String username) { method findAdmin (line 27) | public LitemallAdmin findAdmin(Integer id) { method querySelective (line 31) | public List querySelective(String username, Integer pag... method updateById (line 48) | public int updateById(LitemallAdmin admin) { method deleteById (line 53) | public void deleteById(Integer id) { method add (line 57) | public void add(LitemallAdmin admin) { method findById (line 63) | public LitemallAdmin findById(Integer id) { method all (line 67) | public List all() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallAftersaleService.java class LitemallAftersaleService (line 17) | @Service method findById (line 22) | public LitemallAftersale findById(Integer id) { method findById (line 26) | public LitemallAftersale findById(Integer userId, Integer id) { method queryList (line 32) | public List queryList(Integer userId, Short status,... method querySelective (line 51) | public List querySelective(Integer orderId, String ... method getRandomNum (line 75) | private String getRandomNum(Integer num) { method countByAftersaleSn (line 86) | public int countByAftersaleSn(Integer userId, String aftersaleSn) { method generateAftersaleSn (line 93) | public String generateAftersaleSn(Integer userId) { method add (line 103) | public void add(LitemallAftersale aftersale) { method deleteByIds (line 109) | public void deleteByIds(List ids) { method deleteById (line 118) | public void deleteById(Integer id) { method deleteByOrderId (line 122) | public void deleteByOrderId(Integer userId, Integer orderId) { method updateById (line 131) | public void updateById(LitemallAftersale aftersale) { method findByOrderId (line 136) | public LitemallAftersale findByOrderId(Integer userId, Integer orderId) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallBrandService.java class LitemallBrandService (line 15) | @Service method query (line 21) | public List query(Integer page, Integer limit, String s... method query (line 31) | public List query(Integer page, Integer limit) { method findById (line 35) | public LitemallBrand findById(Integer id) { method querySelective (line 39) | public List querySelective(String id, String name, Inte... method updateById (line 59) | public int updateById(LitemallBrand brand) { method deleteById (line 64) | public void deleteById(Integer id) { method add (line 68) | public void add(LitemallBrand brand) { method all (line 74) | public List all() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallCartService.java class LitemallCartService (line 15) | @Service method queryExist (line 20) | public LitemallCart queryExist(Integer goodsId, Integer productId, Int... method add (line 26) | public void add(LitemallCart cart) { method updateById (line 32) | public int updateById(LitemallCart cart) { method queryByUid (line 37) | public List queryByUid(int userId) { method queryByUidAndChecked (line 44) | public List queryByUidAndChecked(Integer userId) { method delete (line 50) | public int delete(List productIdList, int userId) { method findById (line 56) | public LitemallCart findById(Integer id) { method findById (line 60) | public LitemallCart findById(Integer userId, Integer id) { method updateCheck (line 66) | public int updateCheck(Integer userId, List idsList, Boolean ... method clearGoods (line 75) | public void clearGoods(Integer userId) { method querySelective (line 83) | public List querySelective(Integer userId, Integer goods... method deleteById (line 103) | public void deleteById(Integer id) { method checkExist (line 107) | public boolean checkExist(Integer goodsId) { method updateProduct (line 113) | public void updateProduct(Integer id, String goodsSn, String goodsName... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallCategoryService.java class LitemallCategoryService (line 14) | @Service method queryL1WithoutRecommend (line 20) | public List queryL1WithoutRecommend(int offset, int ... method queryL1 (line 27) | public List queryL1(int offset, int limit) { method queryL1 (line 34) | public List queryL1() { method queryByPid (line 40) | public List queryByPid(Integer pid) { method queryL2ByIds (line 46) | public List queryL2ByIds(List ids) { method findById (line 52) | public LitemallCategory findById(Integer id) { method querySelective (line 56) | public List querySelective(String id, String name, I... method updateById (line 76) | public int updateById(LitemallCategory category) { method deleteById (line 81) | public void deleteById(Integer id) { method add (line 85) | public void add(LitemallCategory category) { method queryChannel (line 91) | public List queryChannel() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallCollectService.java class LitemallCollectService (line 14) | @Service method count (line 19) | public int count(int uid, byte type, Integer gid) { method queryByType (line 25) | public List queryByType(Integer userId, Byte type, In... method countByType (line 43) | public int countByType(Integer userId, Byte type) { method queryByTypeAndValue (line 49) | public LitemallCollect queryByTypeAndValue(Integer userId, Byte type, ... method deleteById (line 55) | public void deleteById(Integer id) { method add (line 59) | public int add(LitemallCollect collect) { method querySelective (line 65) | public List querySelective(String userId, String valu... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallCommentService.java class LitemallCommentService (line 14) | @Service method queryGoodsByGid (line 19) | public List queryGoodsByGid(Integer id, int offset, i... method query (line 27) | public List query(Byte type, Integer valueId, Integer... method count (line 41) | public int count(Byte type, Integer valueId, Integer showType) { method save (line 53) | public int save(LitemallComment comment) { method querySelective (line 59) | public List querySelective(String userId, String valu... method deleteById (line 82) | public void deleteById(Integer id) { method findById (line 86) | public LitemallComment findById(Integer id) { method updateById (line 90) | public int updateById(LitemallComment comment) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallCouponService.java class LitemallCouponService (line 18) | @Service method queryList (line 38) | public List queryList(int offset, int limit, String so... method queryList (line 52) | public List queryList(LitemallCouponExample.Criteria c... method queryAvailableList (line 59) | public List queryAvailableList(Integer userId, int off... method queryList (line 72) | public List queryList(int offset, int limit) { method findById (line 76) | public LitemallCoupon findById(Integer id) { method findByCode (line 81) | public LitemallCoupon findByCode(String code) { method queryRegister (line 101) | public List queryRegister() { method querySelective (line 107) | public List querySelective(String name, Short type, Sh... method add (line 130) | public void add(LitemallCoupon coupon) { method updateById (line 136) | public int updateById(LitemallCoupon coupon) { method deleteById (line 141) | public void deleteById(Integer id) { method getRandomNum (line 145) | private String getRandomNum(Integer num) { method generateCode (line 163) | public String generateCode() { method queryExpired (line 177) | public List queryExpired() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallCouponUserService.java class LitemallCouponUserService (line 15) | @Service method countCoupon (line 20) | public Integer countCoupon(Integer couponId) { method countUserAndCoupon (line 26) | public Integer countUserAndCoupon(Integer userId, Integer couponId) { method add (line 32) | public void add(LitemallCouponUser couponUser) { method queryList (line 38) | public List queryList(Integer userId, Integer coup... method queryAll (line 63) | public List queryAll(Integer userId, Integer coupo... method queryAll (line 67) | public List queryAll(Integer userId) { method queryOne (line 71) | public LitemallCouponUser queryOne(Integer userId, Integer couponId) { method findById (line 79) | public LitemallCouponUser findById(Integer id) { method update (line 84) | public int update(LitemallCouponUser couponUser) { method queryExpired (line 89) | public List queryExpired() { method findByOid (line 95) | public List findByOid(Integer orderId) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallFeedbackService.java class LitemallFeedbackService (line 18) | @Service method add (line 23) | public Integer add(LitemallFeedback feedback) { method querySelective (line 29) | public List querySelective(Integer userId, String us... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallFootprintService.java class LitemallFootprintService (line 14) | @Service method queryByAddTime (line 19) | public List queryByAddTime(Integer userId, Integer ... method findById (line 27) | public LitemallFootprint findById(Integer id) { method findById (line 31) | public LitemallFootprint findById(Integer userId, Integer id) { method deleteById (line 37) | public void deleteById(Integer id) { method add (line 41) | public void add(LitemallFootprint footprint) { method querySelective (line 47) | public List querySelective(String userId, String go... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallGoodsAttributeService.java class LitemallGoodsAttributeService (line 12) | @Service method queryByGid (line 17) | public List queryByGid(Integer goodsId) { method add (line 23) | public void add(LitemallGoodsAttribute goodsAttribute) { method findById (line 29) | public LitemallGoodsAttribute findById(Integer id) { method deleteByGid (line 33) | public void deleteByGid(Integer gid) { method deleteById (line 39) | public void deleteById(Integer id) { method updateById (line 43) | public void updateById(LitemallGoodsAttribute attribute) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallGoodsProductService.java class LitemallGoodsProductService (line 14) | @Service method queryByGid (line 21) | public List queryByGid(Integer gid) { method findById (line 27) | public LitemallGoodsProduct findById(Integer id) { method deleteById (line 31) | public void deleteById(Integer id) { method add (line 35) | public void add(LitemallGoodsProduct goodsProduct) { method count (line 41) | public int count() { method deleteByGid (line 47) | public void deleteByGid(Integer gid) { method addStock (line 53) | public int addStock(Integer id, Short num){ method reduceStock (line 57) | public int reduceStock(Integer id, Short num){ method updateById (line 61) | public void updateById(LitemallGoodsProduct product) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallGoodsService.java class LitemallGoodsService (line 17) | @Service method queryByHot (line 30) | public List queryByHot(int offset, int limit) { method queryByNew (line 46) | public List queryByNew(int offset, int limit) { method queryByCategory (line 63) | public List queryByCategory(List catList, int ... method queryByCategory (line 81) | public List queryByCategory(Integer catId, int offset, ... method querySelective (line 91) | public List querySelective(Integer catId, Integer brand... method querySelective (line 130) | public List querySelective(Integer goodsId, String good... method findById (line 159) | public LitemallGoods findById(Integer id) { method findByIdVO (line 171) | public LitemallGoods findByIdVO(Integer id) { method queryOnSale (line 183) | public Integer queryOnSale() { method updateById (line 189) | public int updateById(LitemallGoods goods) { method deleteById (line 194) | public void deleteById(Integer id) { method add (line 198) | public void add(LitemallGoods goods) { method count (line 209) | public int count() { method getCatIds (line 215) | public List getCatIds(Integer brandId, String keywords, Boole... method checkExistByName (line 249) | public boolean checkExistByName(String name) { method queryByIds (line 255) | public List queryByIds(Integer[] ids) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallGoodsSpecificationService.java class LitemallGoodsSpecificationService (line 15) | @Service method queryByGid (line 20) | public List queryByGid(Integer id) { method findById (line 26) | public LitemallGoodsSpecification findById(Integer id) { method deleteByGid (line 30) | public void deleteByGid(Integer gid) { method add (line 36) | public void add(LitemallGoodsSpecification goodsSpecification) { method getSpecificationVoList (line 57) | public Object getSpecificationVoList(Integer id) { method updateById (line 83) | public void updateById(LitemallGoodsSpecification specification) { class VO (line 88) | private class VO { method getName (line 92) | public String getName() { method setName (line 96) | public void setName(String name) { method getValueList (line 100) | public List getValueList() { method setValueList (line 104) | public void setValueList(List valueList) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallGrouponRulesService.java class LitemallGrouponRulesService (line 20) | @Service method createRules (line 28) | public int createRules(LitemallGrouponRules rules) { method findById (line 40) | public LitemallGrouponRules findById(Integer id) { method queryByGoodsId (line 50) | public List queryByGoodsId(Integer goodsId) { method countByGoodsId (line 56) | public int countByGoodsId(Integer goodsId) { method queryByStatus (line 62) | public List queryByStatus(Short status) { method queryList (line 75) | public List queryList(Integer page, Integer limi... method queryList (line 79) | public List queryList(Integer page, Integer limi... method isExpired (line 92) | public boolean isExpired(LitemallGrouponRules rules) { method querySelective (line 106) | public List querySelective(String goodsId, Integ... method delete (line 121) | public void delete(Integer id) { method updateById (line 125) | public int updateById(LitemallGrouponRules grouponRules) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallGrouponService.java class LitemallGrouponService (line 15) | @Service method queryMyGroupon (line 26) | public List queryMyGroupon(Integer userId) { method queryMyJoinGroupon (line 39) | public List queryMyJoinGroupon(Integer userId) { method queryByOrderId (line 52) | public LitemallGroupon queryByOrderId(Integer orderId) { method queryJoinRecord (line 64) | public List queryJoinRecord(Integer id) { method queryById (line 77) | public LitemallGroupon queryById(Integer id) { method queryById (line 90) | public LitemallGroupon queryById(Integer userId, Integer id) { method countGroupon (line 102) | public int countGroupon(Integer grouponId) { method hasJoin (line 108) | public boolean hasJoin(Integer userId, Integer grouponId) { method updateById (line 114) | public int updateById(LitemallGroupon groupon) { method createGroupon (line 125) | public int createGroupon(LitemallGroupon groupon) { method querySelective (line 142) | public List querySelective(String rulesId, Integer pa... method queryByRuleId (line 157) | public List queryByRuleId(int grouponRuleId) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallIssueService.java class LitemallIssueService (line 14) | @Service method deleteById (line 19) | public void deleteById(Integer id) { method add (line 23) | public void add(LitemallIssue issue) { method querySelective (line 29) | public List querySelective(String question, Integer pag... method updateById (line 46) | public int updateById(LitemallIssue issue) { method findById (line 51) | public LitemallIssue findById(Integer id) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallKeywordService.java class LitemallKeywordService (line 14) | @Service method queryDefault (line 19) | public LitemallKeyword queryDefault() { method queryHots (line 25) | public List queryHots() { method queryByKeyword (line 31) | public List queryByKeyword(String keyword, Integer pa... method querySelective (line 39) | public List querySelective(String keyword, String url... method add (line 59) | public void add(LitemallKeyword keywords) { method findById (line 65) | public LitemallKeyword findById(Integer id) { method updateById (line 69) | public int updateById(LitemallKeyword keywords) { method deleteById (line 74) | public void deleteById(Integer id) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallLogService.java class LitemallLogService (line 15) | @Service method deleteById (line 20) | public void deleteById(Integer id) { method add (line 24) | public void add(LitemallLog log) { method querySelective (line 30) | public List querySelective(String name, Integer page, Int... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallNoticeAdminService.java class LitemallNoticeAdminService (line 13) | @Service method querySelective (line 18) | public List querySelective(String title, String t... method find (line 43) | public LitemallNoticeAdmin find(Integer noticeId, Integer adminId) { method add (line 49) | public void add(LitemallNoticeAdmin noticeAdmin) { method update (line 55) | public void update(LitemallNoticeAdmin noticeAdmin) { method markReadByIds (line 60) | public void markReadByIds(List ids, Integer adminId) { method deleteById (line 70) | public void deleteById(Integer id, Integer adminId) { method deleteByIds (line 79) | public void deleteByIds(List ids, Integer adminId) { method countUnread (line 88) | public int countUnread(Integer adminId) { method queryByNoticeId (line 94) | public List queryByNoticeId(Integer noticeId) { method deleteByNoticeId (line 100) | public void deleteByNoticeId(Integer id) { method deleteByNoticeIds (line 109) | public void deleteByNoticeIds(List ids) { method countReadByNoticeId (line 118) | public int countReadByNoticeId(Integer noticeId) { method updateByNoticeId (line 124) | public void updateByNoticeId(LitemallNoticeAdmin noticeAdmin, Integer ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallNoticeService.java class LitemallNoticeService (line 16) | @Service method querySelective (line 22) | public List querySelective(String title, String conten... method updateById (line 42) | public int updateById(LitemallNotice notice) { method deleteById (line 47) | public void deleteById(Integer id) { method add (line 51) | public void add(LitemallNotice notice) { method findById (line 57) | public LitemallNotice findById(Integer id) { method deleteByIds (line 61) | public void deleteByIds(List ids) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallOrderGoodsService.java class LitemallOrderGoodsService (line 12) | @Service method add (line 17) | public int add(LitemallOrderGoods orderGoods) { method queryByOid (line 23) | public List queryByOid(Integer orderId) { method findById (line 29) | public LitemallOrderGoods findById(Integer id) { method updateById (line 33) | public void updateById(LitemallOrderGoods orderGoods) { method getComments (line 38) | public Short getComments(Integer orderId) { method checkExist (line 45) | public boolean checkExist(Integer goodsId) { method deleteByOrderId (line 51) | public void deleteByOrderId(Integer orderId) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallOrderService.java class LitemallOrderService (line 20) | @Service method add (line 27) | public int add(LitemallOrder order) { method count (line 33) | public int count(Integer userId) { method findById (line 39) | public LitemallOrder findById(Integer orderId) { method findById (line 43) | public LitemallOrder findById(Integer userId, Integer orderId) { method getRandomNum (line 49) | private String getRandomNum(Integer num) { method countByOrderSn (line 60) | public int countByOrderSn(Integer userId, String orderSn) { method generateOrderSn (line 67) | public String generateOrderSn(Integer userId) { method queryByOrderStatus (line 77) | public List queryByOrderStatus(Integer userId, List querySelective(Integer userId, String order... method updateWithOptimisticLocker (line 123) | public int updateWithOptimisticLocker(LitemallOrder order) { method updateSelective (line 129) | public int updateSelective(LitemallOrder order) { method deleteById (line 134) | public void deleteById(Integer id) { method count (line 138) | public int count() { method queryUnpaid (line 144) | public List queryUnpaid(int minutes) { method queryUnconfirm (line 150) | public List queryUnconfirm(int days) { method findBySn (line 158) | public LitemallOrder findBySn(String orderSn) { method orderInfo (line 164) | public Map orderInfo(Integer userId) { method queryComment (line 196) | public List queryComment(int days) { method updateAftersaleStatus (line 204) | public void updateAftersaleStatus(Integer orderId, Short statusReject) { method queryVoSelective (line 213) | public Map queryVoSelective(String nickname, String co... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallPermissionService.java class LitemallPermissionService (line 18) | @Service method queryByRoleIds (line 23) | public Set queryByRoleIds(Integer[] roleIds) { method queryByRoleId (line 41) | public Set queryByRoleId(Integer roleId) { method queryByRoleId (line 58) | public Set queryByRoleId(List roleIds) { method checkSuperPermission (line 75) | public boolean checkSuperPermission(Integer roleId) { method checkSuperPermission (line 85) | public boolean checkSuperPermission(List roleIds) { method deleteByRoleId (line 95) | public void deleteByRoleId(Integer roleId) { method add (line 101) | public void add(LitemallPermission litemallPermission) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallRegionService.java class LitemallRegionService (line 13) | @Service method getAll (line 19) | public List getAll(){ method queryByPid (line 26) | public List queryByPid(Integer parentId) { method findById (line 32) | public LitemallRegion findById(Integer id) { method querySelective (line 36) | public List querySelective(String name, Integer code, ... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallRoleService.java class LitemallRoleService (line 16) | @Service method queryByIds (line 22) | public Set queryByIds(Integer[] roleIds) { method querySelective (line 40) | public List querySelective(String name, Integer page, In... method findById (line 57) | public LitemallRole findById(Integer id) { method add (line 61) | public void add(LitemallRole role) { method deleteById (line 67) | public void deleteById(Integer id) { method updateById (line 71) | public void updateById(LitemallRole role) { method checkExist (line 76) | public boolean checkExist(String name) { method queryAll (line 82) | public List queryAll() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallSearchHistoryService.java class LitemallSearchHistoryService (line 14) | @Service method save (line 19) | public void save(LitemallSearchHistory searchHistory) { method queryByUid (line 25) | public List queryByUid(int uid) { method deleteByUid (line 32) | public void deleteByUid(int uid) { method querySelective (line 38) | public List querySelective(String userId, Strin... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallStorageService.java class LitemallStorageService (line 14) | @Service method deleteByKey (line 19) | public void deleteByKey(String key) { method add (line 25) | public void add(LitemallStorage storageInfo) { method findByKey (line 31) | public LitemallStorage findByKey(String key) { method update (line 37) | public int update(LitemallStorage storageInfo) { method findById (line 42) | public LitemallStorage findById(Integer id) { method querySelective (line 46) | public List querySelective(String key, String name, I... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallSystemConfigService.java class LitemallSystemConfigService (line 14) | @Service method queryAll (line 19) | public Map queryAll() { method listMail (line 32) | public Map listMail() { method listWx (line 43) | public Map listWx() { method listOrder (line 54) | public Map listOrder() { method listExpress (line 65) | public Map listExpress() { method updateConfig (line 76) | public void updateConfig(Map data) { method addConfig (line 90) | public void addConfig(String key, String value) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallTopicService.java class LitemallTopicService (line 16) | @Service method queryList (line 22) | public List queryList(int offset, int limit) { method queryList (line 26) | public List queryList(int offset, int limit, String sor... method queryTotal (line 34) | public int queryTotal() { method findById (line 40) | public LitemallTopic findById(Integer id) { method queryRelatedList (line 46) | public List queryRelatedList(Integer id, int offset, in... method querySelective (line 66) | public List querySelective(String title, String subtitl... method updateById (line 86) | public int updateById(LitemallTopic topic) { method deleteById (line 93) | public void deleteById(Integer id) { method add (line 97) | public void add(LitemallTopic topic) { method deleteByIds (line 104) | public void deleteByIds(List ids) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/LitemallUserService.java class LitemallUserService (line 15) | @Service method findById (line 20) | public LitemallUser findById(Integer userId) { method findUserVoById (line 24) | public UserVo findUserVoById(Integer userId) { method queryByOid (line 32) | public LitemallUser queryByOid(String openId) { method add (line 38) | public void add(LitemallUser user) { method updateById (line 44) | public int updateById(LitemallUser user) { method querySelective (line 49) | public List querySelective(String username, String mobil... method count (line 69) | public int count() { method queryByUsername (line 76) | public List queryByUsername(String username) { method checkByUsername (line 82) | public boolean checkByUsername(String username) { method queryByMobile (line 88) | public List queryByMobile(String mobile) { method queryByOpenid (line 94) | public List queryByOpenid(String openid) { method deleteById (line 100) | public void deleteById(Integer id) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/service/StatService.java class StatService (line 10) | @Service method statUser (line 16) | public List statUser() { method statOrder (line 20) | public List statOrder() { method statGoods (line 24) | public List statGoods() { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/util/AftersaleConstant.java class AftersaleConstant (line 3) | public class AftersaleConstant { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/util/CouponConstant.java class CouponConstant (line 3) | public class CouponConstant { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/util/CouponUserConstant.java class CouponUserConstant (line 3) | public class CouponUserConstant { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/util/DbUtil.java class DbUtil (line 8) | public class DbUtil { method backup (line 10) | public static void backup(File file, String user, String password, Str... method load (line 31) | public static void load(File file, String user, String password, Strin... FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/util/GrouponConstant.java class GrouponConstant (line 5) | public class GrouponConstant { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/util/OrderHandleOption.java class OrderHandleOption (line 3) | public class OrderHandleOption { method isCancel (line 13) | public boolean isCancel() { method setCancel (line 17) | public void setCancel(boolean cancel) { method isDelete (line 21) | public boolean isDelete() { method setDelete (line 25) | public void setDelete(boolean delete) { method isPay (line 29) | public boolean isPay() { method setPay (line 33) | public void setPay(boolean pay) { method isComment (line 37) | public boolean isComment() { method setComment (line 41) | public void setComment(boolean comment) { method isConfirm (line 45) | public boolean isConfirm() { method setConfirm (line 49) | public void setConfirm(boolean confirm) { method isRefund (line 53) | public boolean isRefund() { method setRefund (line 57) | public void setRefund(boolean refund) { method isRebuy (line 61) | public boolean isRebuy() { method setRebuy (line 65) | public void setRebuy(boolean rebuy) { method isAftersale (line 69) | public boolean isAftersale() { method setAftersale (line 73) | public void setAftersale(boolean aftersale) { FILE: litemall-db/src/main/java/org/linlinjava/litemall/db/util/OrderUtil.java class OrderUtil (line 22) | public class OrderUtil { method orderStatusText (line 35) | public static String orderStatusText(LitemallOrder order) { method build (line 82) | public static OrderHandleOption build(LitemallOrder order) { method orderStatus (line 118) | public static List orderStatus(Integer showType) { method isCreateStatus (line 148) | public static boolean isCreateStatus(LitemallOrder litemallOrder) { method hasPayed (line 152) | public static boolean hasPayed(LitemallOrder order) { method isPayStatus (line 158) | public static boolean isPayStatus(LitemallOrder litemallOrder) { method isShipStatus (line 162) | public static boolean isShipStatus(LitemallOrder litemallOrder) { method isConfirmStatus (line 166) | public static boolean isConfirmStatus(LitemallOrder litemallOrder) { method isCancelStatus (line 170) | public static boolean isCancelStatus(LitemallOrder litemallOrder) { method isAutoCancelStatus (line 174) | public static boolean isAutoCancelStatus(LitemallOrder litemallOrder) { method isRefundStatus (line 178) | public static boolean isRefundStatus(LitemallOrder litemallOrder) { method isRefundConfirmStatus (line 182) | public static boolean isRefundConfirmStatus(LitemallOrder litemallOrde... method isAutoConfirmStatus (line 186) | public static boolean isAutoConfirmStatus(LitemallOrder litemallOrder) { FILE: litemall-db/src/test/java/org/linlinjava/litemall/db/Application.java class Application (line 7) | @SpringBootApplication(scanBasePackages = {"org.linlinjava.litemall.db"}) method main (line 11) | public static void main(String[] args) { FILE: litemall-db/src/test/java/org/linlinjava/litemall/db/DbConfigTest.java class DbConfigTest (line 12) | @WebAppConfiguration method test (line 19) | @Test FILE: litemall-db/src/test/java/org/linlinjava/litemall/db/DbTest.java class DbTest (line 10) | @WebAppConfiguration method test (line 14) | @Test FILE: litemall-db/src/test/java/org/linlinjava/litemall/db/DbUtilTest.java class DbUtilTest (line 8) | public class DbUtilTest { method testBackup (line 9) | @Test method testLoad (line 17) | public void testLoad() { FILE: litemall-db/src/test/java/org/linlinjava/litemall/db/MapperReturnTest.java class MapperReturnTest (line 14) | @WebAppConfiguration method test (line 22) | @Test FILE: litemall-db/src/test/java/org/linlinjava/litemall/db/StatMapperTest.java class StatMapperTest (line 15) | @WebAppConfiguration method testUser (line 23) | @Test method testOrder (line 31) | @Test method testGoods (line 39) | @Test FILE: litemall-db/src/test/java/org/linlinjava/litemall/db/StockTest.java class StockTest (line 12) | @WebAppConfiguration method testReduceStock (line 19) | @Test method testAddStock (line 26) | @Test FILE: litemall-vue/src/api/api.js function getHome (line 4) | function getHome() { function catalogList (line 12) | function catalogList() { function catalogCurrent (line 20) | function catalogCurrent(query) { function authLoginByAccount (line 32) | function authLoginByAccount(data) { function authLogout (line 40) | function authLogout() { function authInfo (line 47) | function authInfo() { function authProfile (line 54) | function authProfile(data) { function authRegister (line 62) | function authRegister(data) { function authReset (line 70) | function authReset(data) { function authRegisterCaptcha (line 78) | function authRegisterCaptcha(data) { function authCaptcha (line 86) | function authCaptcha(data) { function goodsCount (line 95) | function goodsCount() { function goodsList (line 102) | function goodsList(query) { function goodsCategory (line 110) | function goodsCategory(query) { function goodsDetail (line 118) | function goodsDetail(query) { function brandList (line 128) | function brandList(query) { function brandDetail (line 136) | function brandDetail(query) { function cartList (line 145) | function cartList(query) { function cartAdd (line 153) | function cartAdd(data) { function cartFastAdd (line 161) | function cartFastAdd(data) { function cartUpdate (line 169) | function cartUpdate(data) { function cartDelete (line 177) | function cartDelete(data) { function cartChecked (line 185) | function cartChecked(data) { function cartGoodsCount (line 193) | function cartGoodsCount() { function cartCheckout (line 200) | function cartCheckout(query) { function collectList (line 209) | function collectList(query) { function collectAddOrDelete (line 217) | function collectAddOrDelete(data) { function topicList (line 229) | function topicList(query) { function topicDetail (line 237) | function topicDetail(query) { function topicRelated (line 245) | function topicRelated(query) { function addressList (line 259) | function addressList(query) { function addressDetail (line 268) | function addressDetail(query) { function addressSave (line 276) | function addressSave(data) { function addressDelete (line 284) | function addressDelete(data) { function orderSubmit (line 295) | function orderSubmit(data) { function orderPrepay (line 303) | function orderPrepay(data) { function orderH5pay (line 311) | function orderH5pay(data) { function orderList (line 319) | function orderList(query) { function orderDetail (line 327) | function orderDetail(query) { function orderCancel (line 335) | function orderCancel(data) { function orderRefund (line 343) | function orderRefund(data) { function orderDelete (line 351) | function orderDelete(data) { function orderConfirm (line 359) | function orderConfirm(data) { function feedbackAdd (line 370) | function feedbackAdd(data) { function grouponList (line 382) | function grouponList(query) { function couponList (line 395) | function couponList(query) { function couponMyList (line 403) | function couponMyList(query) { function couponSelectList (line 411) | function couponSelectList(query) { function couponReceive (line 419) | function couponReceive(data) { function userIndex (line 431) | function userIndex() { function issueList (line 438) | function issueList() { function getList (line 445) | function getList(api, query) { constant REFUND_LIST (line 453) | const REFUND_LIST = ''; FILE: litemall-vue/src/filter/index.js method install (line 10) | install(Vue) { FILE: litemall-vue/src/mixin/scroll-fixed.js method data (line 4) | data() { method mounted (line 10) | mounted() { method activated (line 21) | activated() { FILE: litemall-vue/src/store/mutation-types.js constant CHANGE_HEADER (line 1) | const CHANGE_HEADER= 'CHANGE_HEADER' FILE: litemall-vue/src/store/mutations.js method [types.CHANGE_HEADER] (line 4) | [types.CHANGE_HEADER] (state,payload) { FILE: litemall-vue/src/utils/auth.js function getToken (line 5) | function getToken() { function setToken (line 9) | function setToken(token) { function removeToken (line 13) | function removeToken() { FILE: litemall-vue/src/utils/scroll.js method isAttached (line 2) | isAttached(element) { method getScrollLeft (line 16) | getScrollLeft(element) { method getVisibleHeight (line 20) | getVisibleHeight(element) { method getVisibleWidth (line 26) | getVisibleWidth(element) { FILE: litemall-vue/vue.config.js function resolve (line 3) | function resolve(dir = '') { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/Application.java class Application (line 9) | @SpringBootApplication(scanBasePackages = {"org.linlinjava.litemall.db",... method main (line 15) | public static void main(String[] args) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/annotation/support/LoginUserHandlerMethodArgumentResolver.java class LoginUserHandlerMethodArgumentResolver (line 12) | public class LoginUserHandlerMethodArgumentResolver implements HandlerMe... method supportsParameter (line 15) | @Override method resolveArgument (line 20) | @Override FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/config/WxSwagger2Configuration.java class WxSwagger2Configuration (line 22) | @Configuration method wxDocket (line 26) | @Bean method wxApiInfo (line 38) | private ApiInfo wxApiInfo() { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/config/WxWebMvcConfiguration.java class WxWebMvcConfiguration (line 10) | @Configuration method addArgumentResolvers (line 12) | @Override FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/dto/CaptchaItem.java class CaptchaItem (line 8) | public class CaptchaItem { method getPhoneNumber (line 13) | public String getPhoneNumber() { method setPhoneNumber (line 17) | public void setPhoneNumber(String phoneNumber) { method getCode (line 21) | public String getCode() { method setCode (line 25) | public void setCode(String code) { method getExpireTime (line 29) | public LocalDateTime getExpireTime() { method setExpireTime (line 33) | public void setExpireTime(LocalDateTime expireTime) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/dto/UserInfo.java class UserInfo (line 3) | public class UserInfo { method getCountry (line 12) | public String getCountry() { method setCountry (line 16) | public void setCountry(String country) { method getProvince (line 20) | public String getProvince() { method setProvince (line 24) | public void setProvince(String province) { method getCity (line 28) | public String getCity() { method setCity (line 32) | public void setCity(String city) { method getLanguage (line 36) | public String getLanguage() { method setLanguage (line 40) | public void setLanguage(String language) { method getGender (line 44) | public Byte getGender() { method setGender (line 48) | public void setGender(Byte gender) { method getNickName (line 52) | public String getNickName() { method setNickName (line 56) | public void setNickName(String nickName) { method getAvatarUrl (line 60) | public String getAvatarUrl() { method setAvatarUrl (line 64) | public void setAvatarUrl(String avatarUrl) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/dto/UserToken.java class UserToken (line 5) | public class UserToken { method getSessionKey (line 12) | public String getSessionKey() { method setSessionKey (line 16) | public void setSessionKey(String sessionKey) { method getUserId (line 20) | public Integer getUserId() { method setUserId (line 24) | public void setUserId(Integer userId) { method getToken (line 28) | public String getToken() { method setToken (line 32) | public void setToken(String token) { method getExpireTime (line 36) | public LocalDateTime getExpireTime() { method setExpireTime (line 40) | public void setExpireTime(LocalDateTime expireTime) { method getUpdateTime (line 44) | public LocalDateTime getUpdateTime() { method setUpdateTime (line 48) | public void setUpdateTime(LocalDateTime updateTime) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/dto/WxLoginInfo.java class WxLoginInfo (line 3) | public class WxLoginInfo { method getCode (line 7) | public String getCode() { method setCode (line 11) | public void setCode(String code) { method getUserInfo (line 15) | public UserInfo getUserInfo() { method setUserInfo (line 19) | public void setUserInfo(UserInfo userInfo) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/service/CaptchaCodeManager.java class CaptchaCodeManager (line 13) | public class CaptchaCodeManager { method addToCache (line 22) | public static boolean addToCache(String phoneNumber, String code) { method getCachedCaptcha (line 52) | public static String getCachedCaptcha(String phoneNumber) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/service/GetRegionService.java class GetRegionService (line 14) | @Component method getLitemallRegions (line 22) | protected List getLitemallRegions() { method createRegion (line 29) | private synchronized void createRegion(){ FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/service/HomeCacheManager.java class HomeCacheManager (line 11) | public class HomeCacheManager { method loadData (line 24) | public static void loadData(String cacheKey, Map data) { method getCacheData (line 40) | public static Map getCacheData(String cacheKey) { method hasData (line 49) | public static boolean hasData(String cacheKey) { method clearAll (line 69) | public static void clearAll() { method clear (line 76) | public static void clear(String cacheKey) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/service/UserInfoService.java class UserInfoService (line 10) | @Service method getInfo (line 16) | public UserInfo getInfo(Integer userId) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/service/UserTokenManager.java class UserTokenManager (line 8) | public class UserTokenManager { method generateToken (line 9) | public static String generateToken(Integer id) { method getUserId (line 13) | public static Integer getUserId(String token) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/service/WxGrouponRuleService.java class WxGrouponRuleService (line 17) | @Service method queryList (line 29) | public List queryList(Integer page, Integer size) { method queryList (line 34) | public List queryList(Integer page, Integer size, Strin... FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/service/WxOrderService.java class WxOrderService (line 68) | @Service method list (line 125) | public Object list(Integer userId, Integer showType, Integer page, Int... method detail (line 177) | public Object detail(Integer userId, Integer orderId) { method submit (line 247) | @Transactional method cancel (line 548) | @Transactional method prepay (line 608) | @Transactional method h5pay (line 670) | @Transactional method payNotify (line 727) | @Transactional method refund (line 835) | public Object refund(Integer userId, String body) { method confirm (line 880) | public Object confirm(Integer userId, String body) { method delete (line 923) | public Object delete(Integer userId, String body) { method goods (line 961) | public Object goods(Integer userId, Integer ogid) { method comment (line 986) | public Object comment(Integer userId, String body) { method releaseCoupon (line 1063) | public void releaseCoupon(Integer orderId) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/task/OrderUnpaidTask.java class OrderUnpaidTask (line 19) | public class OrderUnpaidTask extends Task { method OrderUnpaidTask (line 23) | public OrderUnpaidTask(Integer orderId, long delayInMilliseconds){ method OrderUnpaidTask (line 28) | public OrderUnpaidTask(Integer orderId){ method run (line 33) | @Override FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/task/TaskStartupRunner.java class TaskStartupRunner (line 18) | @Component method run (line 26) | @Override FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/util/JwtHelper.java class JwtHelper (line 17) | public class JwtHelper { method createToken (line 28) | public String createToken(Integer userId){ method verifyTokenAndGetUserId (line 58) | public Integer verifyTokenAndGetUserId(String token) { method getAfterDate (line 75) | public Date getAfterDate(Date date, int year, int month, int day, int... FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/util/WxResponseCode.java class WxResponseCode (line 3) | public class WxResponseCode { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/vo/CouponVo.java class CouponVo (line 6) | public class CouponVo { method getId (line 18) | public Integer getId() { method setId (line 22) | public void setId(Integer id) { method getCid (line 26) | public Integer getCid() { method setCid (line 30) | public void setCid(Integer cid) { method getName (line 34) | public String getName() { method setName (line 38) | public void setName(String name) { method getDesc (line 42) | public String getDesc() { method setDesc (line 46) | public void setDesc(String desc) { method getTag (line 50) | public String getTag() { method setTag (line 54) | public void setTag(String tag) { method getMin (line 58) | public BigDecimal getMin() { method setMin (line 62) | public void setMin(BigDecimal min) { method getDiscount (line 66) | public BigDecimal getDiscount() { method setDiscount (line 70) | public void setDiscount(BigDecimal discount) { method getStartTime (line 74) | public LocalDateTime getStartTime() { method setStartTime (line 78) | public void setStartTime(LocalDateTime startTime) { method getEndTime (line 82) | public LocalDateTime getEndTime() { method setEndTime (line 86) | public void setEndTime(LocalDateTime endTime) { method isAvailable (line 90) | public boolean isAvailable() { method setAvailable (line 94) | public void setAvailable(boolean available) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/vo/GrouponRuleVo.java class GrouponRuleVo (line 6) | public class GrouponRuleVo { method getExpireTime (line 18) | public LocalDateTime getExpireTime() { method setExpireTime (line 22) | public void setExpireTime(LocalDateTime expireTime) { method getGrouponDiscount (line 26) | public BigDecimal getGrouponDiscount() { method setGrouponDiscount (line 30) | public void setGrouponDiscount(BigDecimal grouponDiscount) { method getGrouponMember (line 34) | public Integer getGrouponMember() { method setGrouponMember (line 38) | public void setGrouponMember(Integer grouponMember) { method getId (line 42) | public Integer getId() { method setId (line 46) | public void setId(Integer id) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getBrief (line 58) | public String getBrief() { method setBrief (line 62) | public void setBrief(String brief) { method getPicUrl (line 66) | public String getPicUrl() { method setPicUrl (line 70) | public void setPicUrl(String picUrl) { method getCounterPrice (line 74) | public BigDecimal getCounterPrice() { method setCounterPrice (line 78) | public void setCounterPrice(BigDecimal counterPrice) { method getRetailPrice (line 82) | public BigDecimal getRetailPrice() { method setRetailPrice (line 86) | public void setRetailPrice(BigDecimal retailPrice) { method getGrouponPrice (line 90) | public BigDecimal getGrouponPrice() { method setGrouponPrice (line 94) | public void setGrouponPrice(BigDecimal grouponPrice) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxAddressController.java class WxAddressController (line 23) | @RestController method list (line 42) | @GetMapping("list") method detail (line 58) | @GetMapping("detail") method validate (line 71) | private Object validate(LitemallAddress address) { method save (line 126) | @PostMapping("save") method delete (line 169) | @PostMapping("delete") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxAftersaleController.java class WxAftersaleController (line 33) | @RestController method list (line 57) | @GetMapping("list") method detail (line 90) | @GetMapping("detail") method submit (line 117) | @PostMapping("submit") method cancel (line 171) | @PostMapping("cancel") method validate (line 209) | private Object validate(LitemallAftersale aftersale) { FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxAuthController.java class WxAuthController (line 41) | @RestController method login (line 66) | @PostMapping("login") method loginByWeixin (line 117) | @PostMapping("login_by_weixin") method registerCaptcha (line 186) | @PostMapping("regCaptcha") method register (line 235) | @PostMapping("register") method captcha (line 336) | @PostMapping("captcha") method reset (line 381) | @PostMapping("reset") method resetPhone (line 432) | @PostMapping("resetPhone") method profile (line 485) | @PostMapping("profile") method bindPhone (line 519) | @PostMapping("bindPhone") method logout (line 536) | @PostMapping("logout") method info (line 544) | @GetMapping("info") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxBrandController.java class WxBrandController (line 25) | @RestController method list (line 41) | @GetMapping("list") method detail (line 56) | @GetMapping("detail") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxCartController.java class WxCartController (line 26) | @RestController method index (line 55) | @GetMapping("index") method add (line 112) | @PostMapping("add") method fastadd (line 186) | @PostMapping("fastadd") method update (line 256) | @PostMapping("update") method checked (line 315) | @PostMapping("checked") method delete (line 353) | @PostMapping("delete") method goodscount (line 380) | @GetMapping("goodscount") method checkout (line 408) | @GetMapping("checkout") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxCatalogController.java class WxCatalogController (line 24) | @RestController method getFirstCategory (line 33) | @GetMapping("/getfirstcategory") method getSecondCategory (line 40) | @GetMapping("/getsecondcategory") method index (line 55) | @GetMapping("index") method queryAll (line 89) | @GetMapping("all") method current (line 134) | @GetMapping("current") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxCollectController.java class WxCollectController (line 36) | @RestController method list (line 58) | @GetMapping("list") method addordelete (line 107) | @PostMapping("addordelete") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxCommentController.java class WxCommentController (line 28) | @RestController method validate (line 45) | private Object validate(LitemallComment comment) { method post (line 89) | @PostMapping("post") method count (line 111) | @GetMapping("count") method list (line 131) | @GetMapping("list") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxCouponController.java class WxCouponController (line 30) | @RestController method list (line 56) | @GetMapping("list") method mylist (line 77) | @GetMapping("mylist") method change (line 93) | private List change(List couponList) { method selectlist (line 124) | @GetMapping("selectlist") method receive (line 176) | @PostMapping("receive") method exchange (line 254) | @PostMapping("exchange") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxFeedbackController.java class WxFeedbackController (line 26) | @RestController method validate (line 37) | private Object validate(LitemallFeedback feedback) { method submit (line 71) | @PostMapping("submit") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxFootprintController.java class WxFootprintController (line 26) | @RestController method delete (line 44) | @PostMapping("delete") method list (line 77) | @GetMapping("list") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxGoodsController.java class WxGoodsController (line 31) | @RestController method detail (line 92) | @GetMapping("detail") method category (line 209) | @GetMapping("category") method list (line 248) | @GetMapping("list") method related (line 302) | @GetMapping("related") method count (line 323) | @GetMapping("count") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxGrouponController.java class WxGrouponController (line 36) | @RestController method list (line 68) | @GetMapping("list") method detail (line 84) | @GetMapping("detail") method join (line 182) | @GetMapping("join") method my (line 213) | @GetMapping("my") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxHomeController.java class WxHomeController (line 29) | @RestController method cache (line 62) | @GetMapping("/cache") method index (line 78) | @GetMapping("/index") method getCategoryList (line 155) | private List getCategoryList() { method about (line 185) | @GetMapping("/about") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxIndexController.java class WxIndexController (line 13) | @RestController method index (line 23) | @GetMapping("/index") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxIssueController.java class WxIssueController (line 19) | @RestController method list (line 31) | @GetMapping("/list") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxMsgController.java class WxMsgController (line 22) | @RestController method config (line 40) | @GetMapping(value = "/config", produces = "text/plain;charset=utf-8") method config (line 55) | @PostMapping(value = "/config", produces = "application/xml;charset=ut... FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxOrderController.java class WxOrderController (line 17) | @RestController method list (line 37) | @GetMapping("list") method detail (line 54) | @GetMapping("detail") method submit (line 66) | @PostMapping("submit") method cancel (line 78) | @PostMapping("cancel") method prepay (line 90) | @PostMapping("prepay") method h5pay (line 102) | @PostMapping("h5pay") method payNotify (line 117) | @PostMapping("pay-notify") method refund (line 129) | @PostMapping("refund") method confirm (line 141) | @PostMapping("confirm") method delete (line 153) | @PostMapping("delete") method goods (line 165) | @GetMapping("goods") method comment (line 178) | @PostMapping("comment") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxSearchController.java class WxSearchController (line 26) | @RestController method index (line 46) | @GetMapping("index") method helper (line 76) | @GetMapping("helper") method clearhistory (line 95) | @PostMapping("clearhistory") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxStorageController.java class WxStorageController (line 26) | @RestController method generateKey (line 37) | private String generateKey(String originalFilename) { method upload (line 53) | @PostMapping("/upload") method fetch (line 66) | @GetMapping("/fetch/{key:.+}") method download (line 91) | @GetMapping("/download/{key:.+}") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxTopicController.java class WxTopicController (line 30) | @RestController method list (line 50) | @GetMapping("list") method detail (line 65) | @GetMapping("detail") method related (line 94) | @GetMapping("related") FILE: litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxUserController.java class WxUserController (line 20) | @RestController method list (line 37) | @GetMapping("index") FILE: litemall-wx-api/src/test/java/org/linlinjava/litemall/wx/BigDecimalTest.java class BigDecimalTest (line 9) | @RunWith(SpringJUnit4ClassRunner.class) method test (line 12) | @Test FILE: litemall-wx-api/src/test/java/org/linlinjava/litemall/wx/WxConfigTest.java class WxConfigTest (line 11) | @WebAppConfiguration method test (line 18) | @Test FILE: litemall-wx/lib/vant-weapp/action-sheet/index.js method onSelect (line 38) | onSelect(event) { method onCancel (line 48) | onCancel() { method onClose (line 51) | onClose() { method onClickOverlay (line 54) | onClickOverlay() { FILE: litemall-wx/lib/vant-weapp/area/index.js constant COLUMNSPLACEHOLDERCODE (line 3) | const COLUMNSPLACEHOLDERCODE = '000000'; method observer (line 14) | observer(val) { method value (line 30) | value(value) { method columnsNum (line 35) | columnsNum(value) { method mounted (line 41) | mounted() { method getPicker (line 47) | getPicker() { method onCancel (line 53) | onCancel(event) { method onConfirm (line 56) | onConfirm(event) { method emit (line 62) | emit(type, detail) { method parseOutputValues (line 68) | parseOutputValues(values) { method onChange (line 82) | onChange(event) { method getConfig (line 93) | getConfig(type) { method getList (line 97) | getList(type, code) { method getIndex (line 125) | getIndex(type, code) { method setValues (line 140) | setValues() { method getValues (line 176) | getValues() { method getDetail (line 180) | getDetail() { method reset (line 205) | reset(code) { FILE: litemall-wx/lib/vant-weapp/button/index.js method observer (line 39) | observer(color) { method onClick (line 62) | onClick() { FILE: litemall-wx/lib/vant-weapp/card/index.js method onClickThumb (line 34) | onClickThumb() { FILE: litemall-wx/lib/vant-weapp/cell/index.js method onClick (line 32) | onClick(event) { FILE: litemall-wx/lib/vant-weapp/checkbox-group/index.js method linked (line 7) | linked(target) { method unlinked (line 12) | unlinked(target) { method updateChildren (line 28) | updateChildren() { method updateChild (line 31) | updateChild(child) { FILE: litemall-wx/lib/vant-weapp/checkbox/index.js function emit (line 3) | function emit(target, value) { method linked (line 12) | linked(target) { method unlinked (line 15) | unlinked() { method emitChange (line 40) | emitChange(value) { method toggle (line 48) | toggle() { method onClickLabel (line 54) | onClickLabel() { method setParentValue (line 60) | setParentValue(parent, value) { method setSizeWithUnit (line 81) | setSizeWithUnit(size) { FILE: litemall-wx/lib/vant-weapp/circle/index.js function format (line 4) | function format(rate) { constant PERIMETER (line 7) | const PERIMETER = 2 * Math.PI; constant BEGIN_ANGLE (line 8) | const BEGIN_ANGLE = -Math.PI / 2; constant STEP (line 9) | const STEP = 1; method getContext (line 55) | getContext() { method setHoverColor (line 61) | setHoverColor() { method setStyle (line 74) | setStyle() { method presetCanvas (line 79) | presetCanvas(context, strokeStyle, beginAngle, endAngle, fill) { method renderLayerCircle (line 94) | renderLayerCircle(context) { method renderHoverCircle (line 98) | renderHoverCircle(context, formatValue) { method drawCircle (line 107) | drawCircle(currentValue) { method reRender (line 118) | reRender() { method clearInterval (line 142) | clearInterval() { method created (line 149) | created() { method destroyed (line 154) | destroyed() { FILE: litemall-wx/lib/vant-weapp/col/index.js method setGutter (line 15) | setGutter(gutter) { FILE: litemall-wx/lib/vant-weapp/collapse-item/index.js method linked (line 8) | linked(parent) { method mounted (line 34) | mounted() { method updateExpanded (line 46) | updateExpanded() { method updateStyle (line 65) | updateStyle(expanded) { method onClick (line 79) | onClick() { method onTransitionEnd (line 88) | onTransitionEnd() { FILE: litemall-wx/lib/vant-weapp/collapse/index.js method linked (line 6) | linked(child) { method unlinked (line 9) | unlinked(child) { method beforeCreate (line 27) | beforeCreate() { method updateExpanded (line 31) | updateExpanded() { method switch (line 36) | switch(name, expanded) { FILE: litemall-wx/lib/vant-weapp/common/color.js constant RED (line 1) | const RED = '#ee0a24'; constant BLUE (line 2) | const BLUE = '#1989fa'; constant WHITE (line 3) | const WHITE = '#fff'; constant GREEN (line 4) | const GREEN = '#07c160'; constant ORANGE (line 5) | const ORANGE = '#ff976a'; constant GRAY (line 6) | const GRAY = '#323233'; constant GRAY_DARK (line 7) | const GRAY_DARK = '#969799'; FILE: litemall-wx/lib/vant-weapp/common/component.js function mapKeys (line 3) | function mapKeys(source, target, map) { function VantComponent (line 10) | function VantComponent(vantOptions = {}) { FILE: litemall-wx/lib/vant-weapp/common/utils.js function isDef (line 1) | function isDef(value) { function isObj (line 4) | function isObj(x) { function isNumber (line 8) | function isNumber(value) { function range (line 11) | function range(num, min, max) { function nextTick (line 14) | function nextTick(fn) { function getSystemInfoSync (line 20) | function getSystemInfoSync() { function addUnit (line 26) | function addUnit(value) { FILE: litemall-wx/lib/vant-weapp/count-down/index.js function simpleTick (line 3) | function simpleTick(fn) { method destroyed (line 27) | destroyed() { method start (line 33) | start() { method pause (line 42) | pause() { method reset (line 47) | reset() { method tick (line 55) | tick() { method microTick (line 63) | microTick() { method macroTick (line 71) | macroTick() { method getRemain (line 82) | getRemain() { method setRemain (line 85) | setRemain(remain) { FILE: litemall-wx/lib/vant-weapp/count-down/utils.d.ts type TimeData (line 1) | type TimeData = { FILE: litemall-wx/lib/vant-weapp/count-down/utils.js function padZero (line 1) | function padZero(num, targetLength = 2) { constant SECOND (line 8) | const SECOND = 1000; constant MINUTE (line 9) | const MINUTE = 60 * SECOND; constant HOUR (line 10) | const HOUR = 60 * MINUTE; constant DAY (line 11) | const DAY = 24 * HOUR; function parseTimeData (line 12) | function parseTimeData(time) { function parseFormat (line 26) | function parseFormat(format, timeData) { function isSameSecond (line 55) | function isSameSecond(time1, time2) { FILE: litemall-wx/lib/vant-weapp/datetime-picker/index.js function isValidDate (line 5) | function isValidDate(date) { function range (line 8) | function range(num, min, max) { function padZero (line 11) | function padZero(val) { function times (line 14) | function times(n, iteratee) { function getTrueValue (line 22) | function getTrueValue(formattedValue) { function getMonthEndDay (line 30) | function getMonthEndDay(year, month) { method updateValue (line 79) | updateValue() { method getPicker (line 92) | getPicker() { method updateColumns (line 101) | updateColumns() { method getOriginColumns (line 108) | getOriginColumns() { method getRanges (line 123) | getRanges() { method correctValue (line 167) | correctValue(value) { method getBoundary (line 190) | getBoundary(type, innerValue) { method onCancel (line 224) | onCancel() { method onConfirm (line 227) | onConfirm() { method onChange (line 230) | onChange() { method updateColumnValue (line 262) | updateColumnValue(value) { method created (line 291) | created() { FILE: litemall-wx/lib/vant-weapp/definitions/index.d.ts type RecordToAny (line 3) | type RecordToAny = { type CombinedComponentInstance (line 6) | type CombinedComponentInstance = Methods & WechatM... type VantComponentOptions (line 9) | interface VantComponentOptions { FILE: litemall-wx/lib/vant-weapp/definitions/weapp.d.ts type FormField (line 3) | interface FormField { type Target (line 9) | interface Target { type Event (line 16) | interface Event { type Touch (line 38) | interface Touch { type TouchEvent (line 60) | interface TouchEvent extends Event { type RelationOption (line 67) | interface RelationOption { type Observer (line 82) | type Observer = (this: Instance, newVal: T, oldVal: T, chan... type WatchOption (line 86) | interface WatchOption { type MethodOption (line 92) | interface MethodOption { type ComputedOption (line 95) | interface ComputedOption { type PropertyType (line 98) | type PropertyType = StringConstructor | NumberConstructor | BooleanConst... type PropertyOption (line 99) | interface PropertyOption { FILE: litemall-wx/lib/vant-weapp/dialog/dialog.d.ts type DialogAction (line 2) | type DialogAction = 'confirm' | 'cancel'; type DialogOptions (line 3) | type DialogOptions = { type Dialog (line 34) | interface Dialog { FILE: litemall-wx/lib/vant-weapp/dialog/dialog.js function getContext (line 2) | function getContext() { FILE: litemall-wx/lib/vant-weapp/dialog/index.js method show (line 66) | show(show) { method onConfirm (line 71) | onConfirm() { method onCancel (line 74) | onCancel() { method onClickOverlay (line 77) | onClickOverlay() { method handleAction (line 80) | handleAction(action) { method close (line 88) | close() { method stopLoading (line 93) | stopLoading() { method onClose (line 101) | onClose(action) { method setWidthWithUnit (line 113) | setWidthWithUnit(val) { FILE: litemall-wx/lib/vant-weapp/dropdown-item/index.js method linked (line 7) | linked(target) { method unlinked (line 11) | unlinked() { method rerender (line 42) | rerender() { method updateDataFromParent (line 47) | updateDataFromParent() { method onClickOverlay (line 59) | onClickOverlay() { method onOptionTap (line 63) | onOptionTap(event) { method toggle (line 76) | toggle(show, options = {}) { FILE: litemall-wx/lib/vant-weapp/dropdown-menu/index.js constant ARRAY (line 3) | let ARRAY = []; method linked (line 9) | linked(target) { method unlinked (line 13) | unlinked(target) { method beforeCreate (line 55) | beforeCreate() { method destroyed (line 61) | destroyed() { method updateItemListData (line 65) | updateItemListData() { method updateChildrenData (line 70) | updateChildrenData() { method toggleItem (line 75) | toggleItem(active) { method close (line 86) | close() { method getChildWrapperStyle (line 91) | getChildWrapperStyle() { method onTitleTap (line 106) | onTitleTap(event) { FILE: litemall-wx/lib/vant-weapp/field/index.js method onInput (line 77) | onInput(event) { method onFocus (line 83) | onFocus(event) { method onBlur (line 87) | onBlur(event) { method onClickIcon (line 91) | onClickIcon() { method onClear (line 94) | onClear() { method onConfirm (line 100) | onConfirm() { method emitChange (line 103) | emitChange(value) { FILE: litemall-wx/lib/vant-weapp/goods-action-button/index.js method linked (line 10) | linked(parent) { method mounted (line 24) | mounted() { method onClick (line 28) | onClick(event) { method updateStyle (line 32) | updateStyle() { FILE: litemall-wx/lib/vant-weapp/goods-action-icon/index.js method onClick (line 17) | onClick(event) { FILE: litemall-wx/lib/vant-weapp/goods-action/index.js method linked (line 6) | linked(child) { method unlinked (line 9) | unlinked(child) { method beforeCreate (line 13) | beforeCreate() { FILE: litemall-wx/lib/vant-weapp/grid-item/index.js method linked (line 8) | linked(parent) { method mounted (line 20) | mounted() { method updateStyle (line 24) | updateStyle() { method onClick (line 63) | onClick() { FILE: litemall-wx/lib/vant-weapp/grid/index.js method linked (line 7) | linked(child) { method unlinked (line 10) | unlinked(child) { method beforeCreate (line 44) | beforeCreate() { method created (line 47) | created() { method updateChildren (line 56) | updateChildren() { FILE: litemall-wx/lib/vant-weapp/icon/index.js method observer (line 19) | observer(val) { method onClick (line 30) | onClick() { method setSizeWithUnit (line 33) | setSizeWithUnit(size) { FILE: litemall-wx/lib/vant-weapp/image/index.js constant FIT_MODE_MAP (line 5) | const FIT_MODE_MAP = { method src (line 49) | src() { method mounted (line 56) | mounted() { method setMode (line 61) | setMode() { method setStyle (line 66) | setStyle() { method onLoad (line 81) | onLoad(event) { method onError (line 87) | onError(event) { method onClick (line 94) | onClick(event) { FILE: litemall-wx/lib/vant-weapp/index-anchor/index.js method linked (line 6) | linked(target) { method unlinked (line 9) | unlinked() { FILE: litemall-wx/lib/vant-weapp/index-bar/index.js method linked (line 15) | linked() { method linkChanged (line 18) | linkChanged() { method unlinked (line 21) | unlinked() { method updateData (line 57) | updateData() { method setRect (line 69) | setRect() { method setAnchorsRect (line 76) | setAnchorsRect() { method setListRect (line 84) | setListRect() { method setSiderbarRect (line 92) | setSiderbarRect() { method setDiffData (line 100) | setDiffData({ target, data }) { method getAnchorRect (line 111) | getAnchorRect(anchor) { method getActiveAnchorIndex (line 117) | getActiveAnchorIndex() { method onScroll (line 129) | onScroll() { method onClick (line 208) | onClick(event) { method onTouchMove (line 211) | onTouchMove(event) { method onTouchStop (line 224) | onTouchStop() { method scrollToAnchor (line 227) | scrollToAnchor(index) { FILE: litemall-wx/lib/vant-weapp/loading/index.js method setSizeWithUnit (line 21) | setSizeWithUnit(size) { method setTextSizeWithUnit (line 26) | setTextSizeWithUnit(size) { FILE: litemall-wx/lib/vant-weapp/mixins/basic.js method $emit (line 3) | $emit(...args) { method getRect (line 6) | getRect(selector, all) { FILE: litemall-wx/lib/vant-weapp/mixins/link.js method jumpLink (line 10) | jumpLink(urlKey = 'url') { FILE: litemall-wx/lib/vant-weapp/mixins/observer/behavior.js method set (line 3) | set(data, callback) { FILE: litemall-wx/lib/vant-weapp/mixins/observer/index.js function observe (line 2) | function observe(vantOptions, options) { FILE: litemall-wx/lib/vant-weapp/mixins/open-type.js method bindGetUserInfo (line 6) | bindGetUserInfo(event) { method bindContact (line 9) | bindContact(event) { method bindGetPhoneNumber (line 12) | bindGetPhoneNumber(event) { method bindError (line 15) | bindError(event) { method bindLaunchApp (line 18) | bindLaunchApp(event) { method bindOpenSetting (line 21) | bindOpenSetting(event) { FILE: litemall-wx/lib/vant-weapp/mixins/touch.js constant MIN_DISTANCE (line 1) | const MIN_DISTANCE = 10; function getDirection (line 2) | function getDirection(x, y) { method resetTouchStatus (line 13) | resetTouchStatus() { method touchStart (line 20) | touchStart(event) { method touchMove (line 26) | touchMove(event) { FILE: litemall-wx/lib/vant-weapp/mixins/transition.js method attached (line 35) | attached() { method observeShow (line 41) | observeShow(value) { method enter (line 44) | enter() { method leave (line 72) | leave() { method checkStatus (line 102) | checkStatus(status) { method onTransitionEnd (line 107) | onTransitionEnd() { FILE: litemall-wx/lib/vant-weapp/nav-bar/index.js method created (line 26) | created() { method onClickLeft (line 31) | onClickLeft() { method onClickRight (line 34) | onClickRight() { FILE: litemall-wx/lib/vant-weapp/notice-bar/index.js constant FONT_COLOR (line 2) | const FONT_COLOR = '#ed6a0c'; constant BG_COLOR (line 3) | const BG_COLOR = '#fffbe8'; method text (line 52) | text() { method created (line 56) | created() { method destroyed (line 62) | destroyed() { method init (line 66) | init() { method scroll (line 93) | scroll() { method onClickIcon (line 114) | onClickIcon() { method onClick (line 119) | onClick(event) { FILE: litemall-wx/lib/vant-weapp/notify/index.js method created (line 28) | created() { method show (line 33) | show() { method hide (line 45) | hide() { method onTap (line 52) | onTap(event) { FILE: litemall-wx/lib/vant-weapp/notify/notify.d.ts type NotifyOptions (line 1) | interface NotifyOptions { FILE: litemall-wx/lib/vant-weapp/notify/notify.js function parseOptions (line 14) | function parseOptions(message) { function getContext (line 17) | function getContext() { function Notify (line 21) | function Notify(options) { FILE: litemall-wx/lib/vant-weapp/overlay/index.js method onClick (line 16) | onClick() { method noop (line 20) | noop() { } FILE: litemall-wx/lib/vant-weapp/picker-column/index.js constant DEFAULT_DURATION (line 3) | const DEFAULT_DURATION = 200; method created (line 28) | created() { method defaultIndex (line 38) | defaultIndex(value) { method getCount (line 43) | getCount() { method onTouchStart (line 46) | onTouchStart(event) { method onTouchMove (line 53) | onTouchMove(event) { method onTouchEnd (line 60) | onTouchEnd() { method onClickItem (line 68) | onClickItem(event) { method adjustIndex (line 72) | adjustIndex(index) { method isDisabled (line 85) | isDisabled(option) { method getOptionText (line 88) | getOptionText(option) { method setIndex (line 94) | setIndex(index, userAction) { method setValue (line 105) | setValue(value) { method getValue (line 114) | getValue() { FILE: litemall-wx/lib/vant-weapp/picker/index.js method observer (line 17) | observer(columns = []) { method beforeCreate (line 25) | beforeCreate() { method noop (line 29) | noop() { } method setColumns (line 30) | setColumns() { method emit (line 36) | emit(event) { method onChange (line 51) | onChange(event) { method getColumn (line 68) | getColumn(index) { method getColumnValue (line 72) | getColumnValue(index) { method setColumnValue (line 77) | setColumnValue(index, value) { method getColumnIndex (line 85) | getColumnIndex(columnIndex) { method setColumnIndex (line 89) | setColumnIndex(columnIndex, optionIndex) { method getColumnValues (line 97) | getColumnValues(index) { method setColumnValues (line 101) | setColumnValues(index, options, needReset = true) { method getValues (line 117) | getValues() { method setValues (line 121) | setValues(values) { method getIndexes (line 126) | getIndexes() { method setIndexes (line 130) | setIndexes(indexes) { FILE: litemall-wx/lib/vant-weapp/popup/index.js method created (line 56) | created() { method onClickCloseIcon (line 60) | onClickCloseIcon() { method onClickOverlay (line 63) | onClickOverlay() { method observeClass (line 69) | observeClass() { FILE: litemall-wx/lib/vant-weapp/progress/index.js method setStrokeWidthUnit (line 32) | setStrokeWidthUnit(val) { FILE: litemall-wx/lib/vant-weapp/radio-group/index.js method linked (line 7) | linked(target) { method unlinked (line 12) | unlinked(target) { method updateChildren (line 27) | updateChildren() { method updateChild (line 30) | updateChild(child) { FILE: litemall-wx/lib/vant-weapp/radio/index.js method linked (line 8) | linked(target) { method unlinked (line 11) | unlinked() { method setIconSizeUnit (line 39) | setIconSizeUnit(val) { method emitChange (line 44) | emitChange(value) { method onChange (line 49) | onChange(event) { method onClickLabel (line 53) | onClickLabel() { FILE: litemall-wx/lib/vant-weapp/rate/index.js method value (line 54) | value(value) { method setGutterWithUnit (line 61) | setGutterWithUnit(val) { method setSizeWithUnit (line 66) | setSizeWithUnit(size) { method onSelect (line 71) | onSelect(event) { method onTouchMove (line 80) | onTouchMove(event) { FILE: litemall-wx/lib/vant-weapp/row/index.js method linked (line 6) | linked(target) { method mounted (line 18) | mounted() { method setGutter (line 24) | setGutter() { FILE: litemall-wx/lib/vant-weapp/search/index.js method onChange (line 45) | onChange(event) { method onCancel (line 49) | onCancel() { method onSearch (line 60) | onSearch() { method onFocus (line 63) | onFocus() { method onBlur (line 66) | onBlur() { method onClear (line 69) | onClear() { FILE: litemall-wx/lib/vant-weapp/sidebar-item/index.js method linked (line 10) | linked(target) { method onClick (line 21) | onClick() { method setActive (line 32) | setActive(selected) { FILE: litemall-wx/lib/vant-weapp/sidebar/index.js method linked (line 6) | linked(target) { method unlinked (line 10) | unlinked(target) { method beforeCreate (line 22) | beforeCreate() { method setActive (line 27) | setActive(activeKey) { FILE: litemall-wx/lib/vant-weapp/skeleton/index.js method observer (line 33) | observer(val) { FILE: litemall-wx/lib/vant-weapp/slider/index.js method value (line 33) | value(value) { method created (line 37) | created() { method onTouchStart (line 41) | onTouchStart(event) { method onTouchMove (line 48) | onTouchMove(event) { method onTouchEnd (line 62) | onTouchEnd() { method onClick (line 70) | onClick(event) { method updateValue (line 79) | updateValue(value, end, drag) { method getRange (line 98) | getRange() { method format (line 102) | format(value) { FILE: litemall-wx/lib/vant-weapp/stepper/index.js constant LONG_PRESS_START_TIME (line 3) | const LONG_PRESS_START_TIME = 600; constant LONG_PRESS_INTERVAL (line 4) | const LONG_PRESS_INTERVAL = 200; function add (line 6) | function add(num1, num2) { method value (line 49) | value(value) { method inputWidth (line 58) | inputWidth() { method buttonSize (line 63) | buttonSize() { method created (line 75) | created() { method isDisabled (line 81) | isDisabled(type) { method onFocus (line 87) | onFocus(event) { method onBlur (line 90) | onBlur(event) { method range (line 96) | range(value) { method onInput (line 107) | onInput(event) { method onChange (line 111) | onChange() { method longPressStep (line 122) | longPressStep() { method onTap (line 128) | onTap(event) { method onTouchStart (line 133) | onTouchStart(event) { method onTouchEnd (line 144) | onTouchEnd() { method triggerInput (line 147) | triggerInput(value) { method computeInputStyle (line 153) | computeInputStyle() { method computeButtonStyle (line 163) | computeButtonStyle() { FILE: litemall-wx/lib/vant-weapp/sticky/index.js constant ROOT_ELEMENT (line 2) | const ROOT_ELEMENT = '.van-sticky'; method observer (line 16) | observer(value) { method observer (line 25) | observer(target) { method setStyle (line 38) | setStyle() { method getContainerRect (line 53) | getContainerRect() { method initObserver (line 57) | initObserver() { method disconnectObserver (line 67) | disconnectObserver(observerName) { method observeContent (line 77) | observeContent() { method observeContainer (line 92) | observeContainer() { method setFixed (line 115) | setFixed(top) { method mounted (line 131) | mounted() { method destroyed (line 137) | destroyed() { FILE: litemall-wx/lib/vant-weapp/submit-bar/index.js method updatePrice (line 43) | updatePrice() { method updateTip (line 50) | updateTip() { method onSubmit (line 53) | onSubmit(event) { FILE: litemall-wx/lib/vant-weapp/swipe-cell/index.js constant THRESHOLD (line 4) | const THRESHOLD = 0.3; constant ARRAY (line 5) | let ARRAY = []; method created (line 27) | created() { method destroyed (line 31) | destroyed() { method open (line 35) | open(position) { method close (line 44) | close() { method swipeMove (line 47) | swipeMove(offset = 0) { method swipeLeaveTransition (line 62) | swipeLeaveTransition() { method startDrag (line 76) | startDrag(event) { method noop (line 83) | noop() { } method onDrag (line 84) | onDrag(event) { method endDrag (line 97) | endDrag() { method onClick (line 104) | onClick(event) { FILE: litemall-wx/lib/vant-weapp/switch/index.js method checked (line 26) | checked(value) { method created (line 31) | created() { method getLoadingColor (line 37) | getLoadingColor(checked) { method onClick (line 41) | onClick() { FILE: litemall-wx/lib/vant-weapp/tab/index.js method linked (line 6) | linked(target) { method unlinked (line 9) | unlinked() { method getComputedName (line 35) | getComputedName() { method updateRender (line 41) | updateRender(active, parent) { method update (line 50) | update() { FILE: litemall-wx/lib/vant-weapp/tabbar-item/index.js method onClick (line 17) | onClick() { method updateFromParent (line 23) | updateFromParent() { FILE: litemall-wx/lib/vant-weapp/tabbar/index.js method linked (line 6) | linked(target) { method unlinked (line 11) | unlinked(target) { method beforeCreate (line 46) | beforeCreate() { method updateChildren (line 50) | updateChildren() { method onChange (line 57) | onChange(child) { FILE: litemall-wx/lib/vant-weapp/tabs/index.js method linked (line 10) | linked(target) { method unlinked (line 15) | unlinked(target) { method observer (line 33) | observer() { method observer (line 54) | observer(name) { method observer (line 83) | observer(value) { method beforeCreate (line 107) | beforeCreate() { method mounted (line 110) | mounted() { method updateTabs (line 119) | updateTabs() { method trigger (line 127) | trigger(eventName) { method onTap (line 139) | onTap(event) { method setCurrentIndexByName (line 153) | setCurrentIndexByName(name) { method setCurrentIndex (line 160) | setCurrentIndex(currentIndex) { method getCurrentName (line 188) | getCurrentName() { method setLine (line 194) | setLine(skipTransition) { method setTrack (line 227) | setTrack() { method scrollIntoView (line 241) | scrollIntoView() { method onTouchScroll (line 259) | onTouchScroll(event) { method onTouchStart (line 262) | onTouchStart(event) { method onTouchMove (line 267) | onTouchMove(event) { method onTouchEnd (line 273) | onTouchEnd() { FILE: litemall-wx/lib/vant-weapp/tag/index.js method onClose (line 17) | onClose() { FILE: litemall-wx/lib/vant-weapp/toast/index.js method noop (line 27) | noop() { } FILE: litemall-wx/lib/vant-weapp/toast/toast.d.ts type ToastMessage (line 2) | type ToastMessage = string | number; type ToastOptions (line 3) | interface ToastOptions { FILE: litemall-wx/lib/vant-weapp/toast/toast.js function parseOptions (line 16) | function parseOptions(message) { function getContext (line 19) | function getContext() { function Toast (line 23) | function Toast(toastOptions) { FILE: litemall-wx/lib/vant-weapp/tree-select/index.js method created (line 36) | created() { method onSelectItem (line 41) | onSelectItem(event) { method onClickNav (line 55) | onClickNav(event) { method updateSubItems (line 63) | updateSubItems() { method updateHeight (line 68) | updateHeight() { FILE: litemall-wx/lib/vant-weapp/uploader/index.js method formatFileList (line 60) | formatFileList() { method setComputedPreviewSize (line 65) | setComputedPreviewSize(val) { method startUpload (line 70) | startUpload() { method deleteItem (line 130) | deleteItem(event) { method doPreviewImage (line 134) | doPreviewImage(event) { FILE: litemall-wx/lib/vant-weapp/uploader/utils.d.ts type File (line 1) | interface File { FILE: litemall-wx/lib/vant-weapp/uploader/utils.js constant IMAGE_EXT (line 1) | const IMAGE_EXT = ['jpeg', 'jpg', 'gif', 'png', 'svg']; function isImageUrl (line 2) | function isImageUrl(url) { function isImageFile (line 5) | function isImageFile(item) { FILE: litemall-wx/lib/wxParse/html2json.js function makeMap (line 35) | function makeMap(str) { function q (line 42) | function q(v) { function removeDOCTYPE (line 46) | function removeDOCTYPE(html) { function html2json (line 54) | function html2json(html, bindName) { function transEmojiStr (line 197) | function transEmojiStr(str){ function emojisInit (line 232) | function emojisInit(reg='',baseSrc="/wxParse/emojis/",emojis){ FILE: litemall-wx/lib/wxParse/htmlparser.js function HTMLParser (line 35) | function HTMLParser(html, handler) { function makeMap (line 175) | function makeMap(str) { FILE: litemall-wx/lib/wxParse/showdown.js function getDefaultOpts (line 12) | function getDefaultOpts(simple) { function validate (line 307) | function validate(extension, name) { function escapeCharactersCallback (line 506) | function escapeCharactersCallback(wholeMatch, m1) { function _constructor (line 746) | function _constructor() { function _parseExtension (line 778) | function _parseExtension(ext, name) { function legacyExtensionLoading (line 842) | function legacyExtensionLoading(ext, name) { function listen (line 874) | function listen(name, callback) { function rTrimInputText (line 889) | function rTrimInputText(text) { function replaceLink (line 1259) | function replaceLink(wm, link) { function replaceMail (line 1267) | function replaceMail(wholeMatch, m1) { function headerId (line 1874) | function headerId(m) { function writeImageTag (line 1910) | function writeImageTag (wholeMatch, altText, linkId, url, width, height,... function processListItems (line 2014) | function processListItems (listStr, trimTrailing) { function parseConsecutiveLists (line 2102) | function parseConsecutiveLists(list, listType, trimTrailing) { function parseStyles (line 2396) | function parseStyles(sLine) { function parseHeaders (line 2408) | function parseHeaders(header, style) { function parseCells (line 2419) | function parseCells(cell, style) { function buildTable (line 2424) | function buildTable(headers, cells) { FILE: litemall-wx/lib/wxParse/wxDiscode.js function strNumDiscode (line 2) | function strNumDiscode(str){ function strGreeceDiscode (line 44) | function strGreeceDiscode(str){ function strcharacterDiscode (line 104) | function strcharacterDiscode(str){ function strOtherDiscode (line 119) | function strOtherDiscode(str){ function strMoreDiscode (line 177) | function strMoreDiscode(str){ function strDiscode (line 185) | function strDiscode(str){ function urlToHttpUrl (line 193) | function urlToHttpUrl(url,rep){ FILE: litemall-wx/lib/wxParse/wxParse.js function wxParse (line 23) | function wxParse(bindName = 'wxParseData', type='html', data='