SYMBOL INDEX (7504 symbols across 626 files) FILE: docs/lib/docsify/lib/plugins/ga.js function appendScript (line 3) | function appendScript() { function init (line 10) | function init(id) { function collect (line 21) | function collect() { FILE: docs/lib/docsify/lib/plugins/search.js function resolveExpireKey (line 9) | function resolveExpireKey(namespace) { function resolveIndexKey (line 12) | function resolveIndexKey(namespace) { function escapeHtml (line 16) | function escapeHtml(string) { function getAllPaths (line 29) | function getAllPaths(router) { function saveData (line 49) | function saveData(maxAge, expireKey, indexKey) { function genIndex (line 54) | function genIndex(path, content, router, depth) { function search (line 87) | function search(query) { function init (line 166) | function init(config, vm) { function style (line 203) | function style() { function tpl (line 209) | function tpl(defaultValue) { function doSearch (line 221) | function doSearch(value) { function bindEvents (line 255) | function bindEvents() { function updatePlaceholder (line 280) | function updatePlaceholder(text, path) { function updateNoData (line 294) | function updateNoData(text, path) { function updateOptions (line 303) | function updateOptions(opts) { function init$1 (line 307) | function init$1(opts, vm) { function update (line 317) | function update(opts, vm) { FILE: document/sql/mall_tiny.sql type `pms_brand` (line 24) | CREATE TABLE `pms_brand` ( type `pms_product` (line 59) | CREATE TABLE `pms_product` ( type `pms_product_attribute` (line 151) | CREATE TABLE `pms_product_attribute` ( type `pms_product_attribute_value` (line 228) | CREATE TABLE `pms_product_attribute_value` ( type `ums_admin` (line 374) | CREATE TABLE `ums_admin` ( type `ums_admin_login_log` (line 402) | CREATE TABLE `ums_admin_login_log` ( type `ums_admin_role_relation` (line 445) | CREATE TABLE `ums_admin_role_relation` ( type `ums_menu` (line 469) | CREATE TABLE `ums_menu` ( type `ums_resource` (line 514) | CREATE TABLE `ums_resource` ( type `ums_resource_category` (line 560) | CREATE TABLE `ums_resource_category` ( type `ums_role` (line 582) | CREATE TABLE `ums_role` ( type `ums_role_menu_relation` (line 605) | CREATE TABLE `ums_role_menu_relation` ( type `ums_role_resource_relation` (line 670) | CREATE TABLE `ums_role_resource_relation` ( FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 23) | @Controller method getBrandList (line 31) | @RequestMapping(value = "/listAll", method = RequestMethod.GET) method createBrand (line 37) | @RequestMapping(value = "/create", method = RequestMethod.POST) method updateBrand (line 52) | @RequestMapping(value = "/update/{id}", method = RequestMethod.POST) method deleteBrand (line 67) | @RequestMapping(value = "/delete/{id}", method = RequestMethod.GET) method listBrand (line 80) | @RequestMapping(value = "/list", method = RequestMethod.GET) method brand (line 88) | @RequestMapping(value = "/{id}", method = RequestMethod.GET) FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 17) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 23) | @Override method addFieldComment (line 32) | @Override method addFieldJavaDoc (line 45) | private void addFieldJavaDoc(Field field, String remarks) { FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 5) | public class PmsBrand implements Serializable { method getId (line 63) | public Long getId() { method setId (line 67) | public void setId(Long id) { method getName (line 71) | public String getName() { method setName (line 75) | public void setName(String name) { method getFirstLetter (line 79) | public String getFirstLetter() { method setFirstLetter (line 83) | public void setFirstLetter(String firstLetter) { method getSort (line 87) | public Integer getSort() { method setSort (line 91) | public void setSort(Integer sort) { method getFactoryStatus (line 95) | public Integer getFactoryStatus() { method setFactoryStatus (line 99) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 103) | public Integer getShowStatus() { method setShowStatus (line 107) | public void setShowStatus(Integer showStatus) { method getProductCount (line 111) | public Integer getProductCount() { method setProductCount (line 115) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 119) | public Integer getProductCommentCount() { method setProductCommentCount (line 123) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 127) | public String getLogo() { method setLogo (line 131) | public void setLogo(String logo) { method getBigPic (line 135) | public String getBigPic() { method setBigPic (line 139) | public void setBigPic(String bigPic) { method getBrandStory (line 143) | public String getBrandStory() { method setBrandStory (line 147) | public void setBrandStory(String brandStory) { method toString (line 151) | @Override FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-01/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-01/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 6) | @SpringBootTest method contextLoads (line 9) | @Test FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method springfoxHandlerProviderBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 27) | @Controller method getBrandList (line 37) | @ApiOperation("获取所有品牌列表") method createBrand (line 44) | @ApiOperation("添加品牌") method updateBrand (line 60) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 76) | @ApiOperation("删除指定id的品牌") method listBrand (line 90) | @ApiOperation("分页查询品牌列表") method brand (line 101) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 17) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 26) | @Override method addFieldComment (line 35) | @Override method addFieldJavaDoc (line 54) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 66) | @Override FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 42) | public Long getId() { method setId (line 46) | public void setId(Long id) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getFirstLetter (line 58) | public String getFirstLetter() { method setFirstLetter (line 62) | public void setFirstLetter(String firstLetter) { method getSort (line 66) | public Integer getSort() { method setSort (line 70) | public void setSort(Integer sort) { method getFactoryStatus (line 74) | public Integer getFactoryStatus() { method setFactoryStatus (line 78) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 82) | public Integer getShowStatus() { method setShowStatus (line 86) | public void setShowStatus(Integer showStatus) { method getProductCount (line 90) | public Integer getProductCount() { method setProductCount (line 94) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 98) | public Integer getProductCommentCount() { method setProductCommentCount (line 102) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 106) | public String getLogo() { method setLogo (line 110) | public void setLogo(String logo) { method getBigPic (line 114) | public String getBigPic() { method setBigPic (line 118) | public void setBigPic(String bigPic) { method getBrandStory (line 122) | public String getBrandStory() { method setBrandStory (line 126) | public void setBrandStory(String brandStory) { method toString (line 130) | @Override FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-02/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-02/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 28) | @EnableCaching method redisTemplate (line 37) | @Bean method redisSerializer (line 50) | @Bean method redisCacheManager (line 62) | @Bean FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method springfoxHandlerProviderBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 27) | @Controller method getBrandList (line 37) | @ApiOperation("获取所有品牌列表") method createBrand (line 44) | @ApiOperation("添加品牌") method updateBrand (line 60) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 76) | @ApiOperation("删除指定id的品牌") method listBrand (line 90) | @ApiOperation("分页查询品牌列表") method brand (line 101) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/controller/UmsMemberController.java class UmsMemberController (line 21) | @Controller method getAuthCode (line 29) | @ApiOperation("获取验证码") method updatePassword (line 36) | @ApiOperation("判断验证码是否正确") FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | int countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand record); method insertSelective (line 17) | int insertSelective(PmsBrand record); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("record") PmsBrand record, @Param(... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param(... method updateByExample (line 29) | int updateByExample(@Param("record") PmsBrand record, @Param("example"... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand record); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand record); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand record); FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 750) | protected Criteria() { class Criterion (line 755) | public static class Criterion { method getCondition (line 772) | public String getCondition() { method getValue (line 776) | public Object getValue() { method getSecondValue (line 780) | public Object getSecondValue() { method isNoValue (line 784) | public boolean isNoValue() { method isSingleValue (line 788) | public boolean isSingleValue() { method isBetweenValue (line 792) | public boolean isBetweenValue() { method isListValue (line 796) | public boolean isListValue() { method getTypeHandler (line 800) | public String getTypeHandler() { method Criterion (line 804) | protected Criterion(String condition) { method Criterion (line 811) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 823) | protected Criterion(String condition, Object value) { method Criterion (line 827) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 836) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/service/UmsMemberService.java type UmsMemberService (line 11) | public interface UmsMemberService { method generateAuthCode (line 16) | CommonResult generateAuthCode(String telephone); method verifyAuthCode (line 21) | CommonResult verifyAuthCode(String telephone, String authCode); FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny-03/src/main/java/com/macro/mall/tiny/service/impl/UmsMemberServiceImpl.java class UmsMemberServiceImpl (line 20) | @Service method generateAuthCode (line 29) | @Override method verifyAuthCode (line 44) | @Override FILE: mall-tiny-03/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 29) | @Component method generateToken (line 42) | private String generateToken(Map claims) { method getClaimsFromToken (line 53) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 69) | private Date generateExpirationDate() { method getUserNameFromToken (line 76) | public String getUserNameFromToken(String token) { method validateToken (line 93) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 101) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 109) | private Date getExpiredDateFromToken(String token) { method generateToken (line 117) | public String generateToken(UserDetails userDetails) { method canRefresh (line 127) | public boolean canRefresh(String token) { method refreshToken (line 134) | public String refreshToken(String token) { FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/config/IgnoreUrlsConfig.java class IgnoreUrlsConfig (line 17) | @Getter FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/config/MallSecurityConfig.java class MallSecurityConfig (line 17) | @Configuration method userDetailsService (line 23) | @Bean FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 28) | @EnableCaching method redisTemplate (line 37) | @Bean method redisSerializer (line 50) | @Bean method redisCacheManager (line 62) | @Bean FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 34) | @Configuration method filterChain (line 45) | @Bean method passwordEncoder (line 75) | @Bean method jwtAuthenticationTokenFilter (line 80) | @Bean FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method generateBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 28) | @Controller method getBrandList (line 38) | @ApiOperation("获取所有品牌列表") method createBrand (line 46) | @ApiOperation("添加品牌") method updateBrand (line 63) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 80) | @ApiOperation("删除指定id的品牌") method listBrand (line 95) | @ApiOperation("分页查询品牌列表") method brand (line 107) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 27) | @Controller method login (line 40) | @ApiOperation(value = "登录以后返回token") method resourceList (line 54) | @ApiOperation(value = "登录以后返回token") FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/controller/UmsMemberController.java class UmsMemberController (line 21) | @Controller method getAuthCode (line 29) | @ApiOperation("获取验证码") method updatePassword (line 36) | @ApiOperation("判断验证码是否正确") FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/domain/UmsResource.java class UmsResource (line 19) | @Data FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | int countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand record); method insertSelective (line 17) | int insertSelective(PmsBrand record); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("record") PmsBrand record, @Param(... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param(... method updateByExample (line 29) | int updateByExample(@Param("record") PmsBrand record, @Param("example"... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand record); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand record); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand record); FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 750) | protected Criteria() { class Criterion (line 755) | public static class Criterion { method getCondition (line 772) | public String getCondition() { method getValue (line 776) | public Object getValue() { method getSecondValue (line 780) | public Object getSecondValue() { method isNoValue (line 784) | public boolean isNoValue() { method isSingleValue (line 788) | public boolean isSingleValue() { method isBetweenValue (line 792) | public boolean isBetweenValue() { method isListValue (line 796) | public boolean isListValue() { method getTypeHandler (line 800) | public String getTypeHandler() { method Criterion (line 804) | protected Criterion(String condition) { method Criterion (line 811) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 823) | protected Criterion(String condition, Object value) { method Criterion (line 827) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 836) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 14) | public interface UmsAdminService { method getAdminByUsername (line 18) | AdminUserDetails getAdminByUsername(String username); method getResourceList (line 23) | List getResourceList(); method login (line 28) | String login(String username, String password); FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/UmsMemberService.java type UmsMemberService (line 11) | public interface UmsMemberService { method generateAuthCode (line 16) | CommonResult generateAuthCode(String telephone); method verifyAuthCode (line 21) | CommonResult verifyAuthCode(String telephone, String authCode); FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 29) | @Slf4j method init (line 45) | @PostConstruct method getAdminByUsername (line 83) | @Override method getResourceList (line 92) | @Override method login (line 97) | @Override FILE: mall-tiny-04/src/main/java/com/macro/mall/tiny/service/impl/UmsMemberServiceImpl.java class UmsMemberServiceImpl (line 20) | @Service method generateAuthCode (line 29) | @Override method verifyAuthCode (line 44) | @Override FILE: mall-tiny-04/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 14) | public class CommonPage { method restPage (line 24) | public static CommonPage restPage(List list) { method restPage (line 38) | public static CommonPage restPage(Page pageInfo) { method getPageNum (line 48) | public Integer getPageNum() { method setPageNum (line 52) | public void setPageNum(Integer pageNum) { method getPageSize (line 56) | public Integer getPageSize() { method setPageSize (line 60) | public void setPageSize(Integer pageSize) { method getTotalPage (line 64) | public Integer getTotalPage() { method setTotalPage (line 68) | public void setTotalPage(Integer totalPage) { method getList (line 72) | public List getList() { method setList (line 76) | public void setList(List list) { method getTotal (line 80) | public Long getTotal() { method setTotal (line 84) | public void setTotal(Long total) { FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 29) | @Component method generateToken (line 42) | private String generateToken(Map claims) { method getClaimsFromToken (line 53) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 69) | private Date generateExpirationDate() { method getUserNameFromToken (line 76) | public String getUserNameFromToken(String token) { method validateToken (line 93) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 101) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 109) | private Date getExpiredDateFromToken(String token) { method generateToken (line 117) | public String generateToken(UserDetails userDetails) { method canRefresh (line 127) | public boolean canRefresh(String token) { method refreshToken (line 134) | public String refreshToken(String token) { FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/config/IgnoreUrlsConfig.java class IgnoreUrlsConfig (line 17) | @Getter FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/config/MallSecurityConfig.java class MallSecurityConfig (line 17) | @Configuration method userDetailsService (line 23) | @Bean FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 28) | @EnableCaching method redisTemplate (line 37) | @Bean method redisSerializer (line 50) | @Bean method redisCacheManager (line 62) | @Bean FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 34) | @Configuration method filterChain (line 45) | @Bean method passwordEncoder (line 75) | @Bean method jwtAuthenticationTokenFilter (line 80) | @Bean FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method generateBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/controller/EsProductController.java class EsProductController (line 23) | @Controller method importAllList (line 31) | @ApiOperation(value = "导入所有数据库中商品到ES") method delete (line 39) | @ApiOperation(value = "根据id删除商品") method delete (line 47) | @ApiOperation(value = "根据id批量删除商品") method create (line 55) | @ApiOperation(value = "根据id创建商品") method search (line 67) | @ApiOperation(value = "简单搜索") FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 28) | @Controller method getBrandList (line 38) | @ApiOperation("获取所有品牌列表") method createBrand (line 46) | @ApiOperation("添加品牌") method updateBrand (line 63) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 80) | @ApiOperation("删除指定id的品牌") method listBrand (line 95) | @ApiOperation("分页查询品牌列表") method brand (line 107) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 27) | @Controller method login (line 40) | @ApiOperation(value = "登录以后返回token") method resourceList (line 54) | @ApiOperation(value = "登录以后返回token") FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/controller/UmsMemberController.java class UmsMemberController (line 21) | @Controller method getAuthCode (line 29) | @ApiOperation("获取验证码") method updatePassword (line 36) | @ApiOperation("判断验证码是否正确") FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/dao/EsProductDao.java type EsProductDao (line 14) | public interface EsProductDao { method getAllEsProductList (line 15) | List getAllEsProductList(@Param("id") Long id); FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/domain/UmsResource.java class UmsResource (line 19) | @Data FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | int countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand record); method insertSelective (line 17) | int insertSelective(PmsBrand record); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("record") PmsBrand record, @Param(... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param(... method updateByExample (line 29) | int updateByExample(@Param("record") PmsBrand record, @Param("example"... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand record); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand record); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand record); FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 750) | protected Criteria() { class Criterion (line 755) | public static class Criterion { method getCondition (line 772) | public String getCondition() { method getValue (line 776) | public Object getValue() { method getSecondValue (line 780) | public Object getSecondValue() { method isNoValue (line 784) | public boolean isNoValue() { method isSingleValue (line 788) | public boolean isSingleValue() { method isBetweenValue (line 792) | public boolean isBetweenValue() { method isListValue (line 796) | public boolean isListValue() { method getTypeHandler (line 800) | public String getTypeHandler() { method Criterion (line 804) | protected Criterion(String condition) { method Criterion (line 811) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 823) | protected Criterion(String condition, Object value) { method Criterion (line 827) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 836) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProduct.java class EsProduct (line 21) | @Data FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProductAttributeValue.java class EsProductAttributeValue (line 16) | @Data FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/repository/EsProductRepository.java type EsProductRepository (line 14) | public interface EsProductRepository extends ElasticsearchRepository findByNameOrSubTitleOrKeywords(String name, String sub... FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/EsProductService.java type EsProductService (line 14) | public interface EsProductService { method importAll (line 18) | int importAll(); method delete (line 23) | void delete(Long id); method create (line 28) | EsProduct create(Long id); method delete (line 33) | void delete(List ids); method search (line 38) | Page search(String keyword, Integer pageNum, Integer pageSi... FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 14) | public interface UmsAdminService { method getAdminByUsername (line 18) | AdminUserDetails getAdminByUsername(String username); method getResourceList (line 23) | List getResourceList(); method login (line 28) | String login(String username, String password); FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/UmsMemberService.java type UmsMemberService (line 11) | public interface UmsMemberService { method generateAuthCode (line 16) | CommonResult generateAuthCode(String telephone); method verifyAuthCode (line 21) | CommonResult verifyAuthCode(String telephone, String authCode); FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/impl/EsProductServiceImpl.java class EsProductServiceImpl (line 27) | @Service method importAll (line 34) | @Override method delete (line 47) | @Override method create (line 52) | @Override method delete (line 63) | @Override method search (line 76) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 29) | @Slf4j method init (line 45) | @PostConstruct method getAdminByUsername (line 83) | @Override method getResourceList (line 92) | @Override method login (line 97) | @Override FILE: mall-tiny-05/src/main/java/com/macro/mall/tiny/service/impl/UmsMemberServiceImpl.java class UmsMemberServiceImpl (line 20) | @Service method generateAuthCode (line 29) | @Override method verifyAuthCode (line 44) | @Override FILE: mall-tiny-05/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 14) | public class CommonPage { method restPage (line 24) | public static CommonPage restPage(List list) { method restPage (line 38) | public static CommonPage restPage(Page pageInfo) { method getPageNum (line 48) | public Integer getPageNum() { method setPageNum (line 52) | public void setPageNum(Integer pageNum) { method getPageSize (line 56) | public Integer getPageSize() { method setPageSize (line 60) | public void setPageSize(Integer pageSize) { method getTotalPage (line 64) | public Integer getTotalPage() { method setTotalPage (line 68) | public void setTotalPage(Integer totalPage) { method getList (line 72) | public List getList() { method setList (line 76) | public void setList(List list) { method getTotal (line 80) | public Long getTotal() { method setTotal (line 84) | public void setTotal(Long total) { FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 29) | @Component method generateToken (line 42) | private String generateToken(Map claims) { method getClaimsFromToken (line 53) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 69) | private Date generateExpirationDate() { method getUserNameFromToken (line 76) | public String getUserNameFromToken(String token) { method validateToken (line 93) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 101) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 109) | private Date getExpiredDateFromToken(String token) { method generateToken (line 117) | public String generateToken(UserDetails userDetails) { method canRefresh (line 127) | public boolean canRefresh(String token) { method refreshToken (line 134) | public String refreshToken(String token) { FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/config/IgnoreUrlsConfig.java class IgnoreUrlsConfig (line 17) | @Getter FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/config/MallSecurityConfig.java class MallSecurityConfig (line 17) | @Configuration method userDetailsService (line 23) | @Bean FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 28) | @EnableCaching method redisTemplate (line 37) | @Bean method redisSerializer (line 50) | @Bean method redisCacheManager (line 62) | @Bean FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 34) | @Configuration method filterChain (line 45) | @Bean method passwordEncoder (line 75) | @Bean method jwtAuthenticationTokenFilter (line 80) | @Bean FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method generateBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/controller/EsProductController.java class EsProductController (line 23) | @Controller method importAllList (line 31) | @ApiOperation(value = "导入所有数据库中商品到ES") method delete (line 39) | @ApiOperation(value = "根据id删除商品") method delete (line 47) | @ApiOperation(value = "根据id批量删除商品") method create (line 55) | @ApiOperation(value = "根据id创建商品") method search (line 67) | @ApiOperation(value = "简单搜索") FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/controller/MemberReadHistoryController.java class MemberReadHistoryController (line 21) | @Controller method create (line 29) | @ApiOperation("创建浏览记录") method delete (line 41) | @ApiOperation("删除浏览记录") method list (line 53) | @ApiOperation("展示浏览记录") FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 28) | @Controller method getBrandList (line 38) | @ApiOperation("获取所有品牌列表") method createBrand (line 46) | @ApiOperation("添加品牌") method updateBrand (line 63) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 80) | @ApiOperation("删除指定id的品牌") method listBrand (line 95) | @ApiOperation("分页查询品牌列表") method brand (line 107) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 27) | @Controller method login (line 40) | @ApiOperation(value = "登录以后返回token") method resourceList (line 54) | @ApiOperation(value = "登录以后返回token") FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/controller/UmsMemberController.java class UmsMemberController (line 21) | @Controller method getAuthCode (line 29) | @ApiOperation("获取验证码") method updatePassword (line 36) | @ApiOperation("判断验证码是否正确") FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/dao/EsProductDao.java type EsProductDao (line 14) | public interface EsProductDao { method getAllEsProductList (line 15) | List getAllEsProductList(@Param("id") Long id); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/domain/UmsResource.java class UmsResource (line 19) | @Data FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | int countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand record); method insertSelective (line 17) | int insertSelective(PmsBrand record); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("record") PmsBrand record, @Param(... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param(... method updateByExample (line 29) | int updateByExample(@Param("record") PmsBrand record, @Param("example"... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand record); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand record); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand record); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 750) | protected Criteria() { class Criterion (line 755) | public static class Criterion { method getCondition (line 772) | public String getCondition() { method getValue (line 776) | public Object getValue() { method getSecondValue (line 780) | public Object getSecondValue() { method isNoValue (line 784) | public boolean isNoValue() { method isSingleValue (line 788) | public boolean isSingleValue() { method isBetweenValue (line 792) | public boolean isBetweenValue() { method isListValue (line 796) | public boolean isListValue() { method getTypeHandler (line 800) | public String getTypeHandler() { method Criterion (line 804) | protected Criterion(String condition) { method Criterion (line 811) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 823) | protected Criterion(String condition, Object value) { method Criterion (line 827) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 836) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProduct.java class EsProduct (line 21) | @Data FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProductAttributeValue.java class EsProductAttributeValue (line 16) | @Data FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/repository/EsProductRepository.java type EsProductRepository (line 14) | public interface EsProductRepository extends ElasticsearchRepository findByNameOrSubTitleOrKeywords(String name, String sub... FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/nosql/mongodb/document/MemberReadHistory.java class MemberReadHistory (line 17) | @Data FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/nosql/mongodb/repository/MemberReadHistoryRepository.java type MemberReadHistoryRepository (line 15) | public interface MemberReadHistoryRepository extends MongoRepository findByMemberIdOrderByCreateTimeDesc(Long membe... FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/EsProductService.java type EsProductService (line 14) | public interface EsProductService { method importAll (line 18) | int importAll(); method delete (line 23) | void delete(Long id); method create (line 28) | EsProduct create(Long id); method delete (line 33) | void delete(List ids); method search (line 38) | Page search(String keyword, Integer pageNum, Integer pageSi... FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/MemberReadHistoryService.java type MemberReadHistoryService (line 14) | public interface MemberReadHistoryService { method create (line 18) | int create(MemberReadHistory memberReadHistory); method delete (line 23) | int delete(List ids); method list (line 28) | List list(Long memberId); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 14) | public interface UmsAdminService { method getAdminByUsername (line 18) | AdminUserDetails getAdminByUsername(String username); method getResourceList (line 23) | List getResourceList(); method login (line 28) | String login(String username, String password); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/UmsMemberService.java type UmsMemberService (line 11) | public interface UmsMemberService { method generateAuthCode (line 16) | CommonResult generateAuthCode(String telephone); method verifyAuthCode (line 21) | CommonResult verifyAuthCode(String telephone, String authCode); FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/impl/EsProductServiceImpl.java class EsProductServiceImpl (line 27) | @Service method importAll (line 34) | @Override method delete (line 47) | @Override method create (line 52) | @Override method delete (line 63) | @Override method search (line 76) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/impl/MemberReadHistoryServiceImpl.java class MemberReadHistoryServiceImpl (line 19) | @Service method create (line 23) | @Override method delete (line 31) | @Override method list (line 43) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 29) | @Slf4j method init (line 45) | @PostConstruct method getAdminByUsername (line 83) | @Override method getResourceList (line 92) | @Override method login (line 97) | @Override FILE: mall-tiny-06/src/main/java/com/macro/mall/tiny/service/impl/UmsMemberServiceImpl.java class UmsMemberServiceImpl (line 20) | @Service method generateAuthCode (line 29) | @Override method verifyAuthCode (line 44) | @Override FILE: mall-tiny-06/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 14) | public class CommonPage { method restPage (line 24) | public static CommonPage restPage(List list) { method restPage (line 38) | public static CommonPage restPage(Page pageInfo) { method getPageNum (line 48) | public Integer getPageNum() { method setPageNum (line 52) | public void setPageNum(Integer pageNum) { method getPageSize (line 56) | public Integer getPageSize() { method setPageSize (line 60) | public void setPageSize(Integer pageSize) { method getTotalPage (line 64) | public Integer getTotalPage() { method setTotalPage (line 68) | public void setTotalPage(Integer totalPage) { method getList (line 72) | public List getList() { method setList (line 76) | public void setList(List list) { method getTotal (line 80) | public Long getTotal() { method setTotal (line 84) | public void setTotal(Long total) { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 29) | @Component method generateToken (line 42) | private String generateToken(Map claims) { method getClaimsFromToken (line 53) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 69) | private Date generateExpirationDate() { method getUserNameFromToken (line 76) | public String getUserNameFromToken(String token) { method validateToken (line 93) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 101) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 109) | private Date getExpiredDateFromToken(String token) { method generateToken (line 117) | public String generateToken(UserDetails userDetails) { method canRefresh (line 127) | public boolean canRefresh(String token) { method refreshToken (line 134) | public String refreshToken(String token) { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/component/CancelOrderReceiver.java class CancelOrderReceiver (line 17) | @Component method handle (line 23) | @RabbitHandler FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/component/CancelOrderSender.java class CancelOrderSender (line 19) | @Component method sendMessage (line 25) | public void sendMessage(Long orderId,final long delayTimes){ FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/config/IgnoreUrlsConfig.java class IgnoreUrlsConfig (line 17) | @Getter FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/config/MallSecurityConfig.java class MallSecurityConfig (line 17) | @Configuration method userDetailsService (line 23) | @Bean FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/config/RabbitMqConfig.java class RabbitMqConfig (line 14) | @Configuration method orderDirect (line 20) | @Bean method orderTtlDirect (line 31) | @Bean method orderQueue (line 42) | @Bean method orderTtlQueue (line 50) | @Bean method orderBinding (line 62) | @Bean method orderTtlBinding (line 73) | @Bean FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 28) | @EnableCaching method redisTemplate (line 37) | @Bean method redisSerializer (line 50) | @Bean method redisCacheManager (line 62) | @Bean FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 34) | @Configuration method filterChain (line 45) | @Bean method passwordEncoder (line 75) | @Bean method jwtAuthenticationTokenFilter (line 80) | @Bean FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method generateBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/controller/EsProductController.java class EsProductController (line 23) | @Controller method importAllList (line 31) | @ApiOperation(value = "导入所有数据库中商品到ES") method delete (line 39) | @ApiOperation(value = "根据id删除商品") method delete (line 47) | @ApiOperation(value = "根据id批量删除商品") method create (line 55) | @ApiOperation(value = "根据id创建商品") method search (line 67) | @ApiOperation(value = "简单搜索") FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/controller/MemberReadHistoryController.java class MemberReadHistoryController (line 21) | @Controller method create (line 29) | @ApiOperation("创建浏览记录") method delete (line 41) | @ApiOperation("删除浏览记录") method list (line 53) | @ApiOperation("展示浏览记录") FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/controller/OmsPortalOrderController.java class OmsPortalOrderController (line 21) | @Controller method generateOrder (line 29) | @ApiOperation("根据购物车信息生成订单") FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 28) | @Controller method getBrandList (line 38) | @ApiOperation("获取所有品牌列表") method createBrand (line 46) | @ApiOperation("添加品牌") method updateBrand (line 63) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 80) | @ApiOperation("删除指定id的品牌") method listBrand (line 95) | @ApiOperation("分页查询品牌列表") method brand (line 107) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 27) | @Controller method login (line 40) | @ApiOperation(value = "登录以后返回token") method resourceList (line 54) | @ApiOperation(value = "登录以后返回token") FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/controller/UmsMemberController.java class UmsMemberController (line 21) | @Controller method getAuthCode (line 29) | @ApiOperation("获取验证码") method updatePassword (line 36) | @ApiOperation("判断验证码是否正确") FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/dao/EsProductDao.java type EsProductDao (line 14) | public interface EsProductDao { method getAllEsProductList (line 15) | List getAllEsProductList(@Param("id") Long id); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/domain/UmsResource.java class UmsResource (line 19) | @Data FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/dto/OrderParam.java class OrderParam (line 11) | @Data FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/dto/QueueEnum.java type QueueEnum (line 11) | @Getter method QueueEnum (line 35) | QueueEnum(String exchange, String name, String routeKey) { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | int countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand record); method insertSelective (line 17) | int insertSelective(PmsBrand record); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("record") PmsBrand record, @Param(... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param(... method updateByExample (line 29) | int updateByExample(@Param("record") PmsBrand record, @Param("example"... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand record); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand record); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand record); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 750) | protected Criteria() { class Criterion (line 755) | public static class Criterion { method getCondition (line 772) | public String getCondition() { method getValue (line 776) | public Object getValue() { method getSecondValue (line 780) | public Object getSecondValue() { method isNoValue (line 784) | public boolean isNoValue() { method isSingleValue (line 788) | public boolean isSingleValue() { method isBetweenValue (line 792) | public boolean isBetweenValue() { method isListValue (line 796) | public boolean isListValue() { method getTypeHandler (line 800) | public String getTypeHandler() { method Criterion (line 804) | protected Criterion(String condition) { method Criterion (line 811) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 823) | protected Criterion(String condition, Object value) { method Criterion (line 827) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 836) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProduct.java class EsProduct (line 21) | @Data FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProductAttributeValue.java class EsProductAttributeValue (line 16) | @Data FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/repository/EsProductRepository.java type EsProductRepository (line 14) | public interface EsProductRepository extends ElasticsearchRepository findByNameOrSubTitleOrKeywords(String name, String sub... FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/nosql/mongodb/document/MemberReadHistory.java class MemberReadHistory (line 17) | @Data FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/nosql/mongodb/repository/MemberReadHistoryRepository.java type MemberReadHistoryRepository (line 15) | public interface MemberReadHistoryRepository extends MongoRepository findByMemberIdOrderByCreateTimeDesc(Long membe... FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/EsProductService.java type EsProductService (line 14) | public interface EsProductService { method importAll (line 18) | int importAll(); method delete (line 23) | void delete(Long id); method create (line 28) | EsProduct create(Long id); method delete (line 33) | void delete(List ids); method search (line 38) | Page search(String keyword, Integer pageNum, Integer pageSi... FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/MemberReadHistoryService.java type MemberReadHistoryService (line 14) | public interface MemberReadHistoryService { method create (line 18) | int create(MemberReadHistory memberReadHistory); method delete (line 23) | int delete(List ids); method list (line 28) | List list(Long memberId); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/OmsPortalOrderService.java type OmsPortalOrderService (line 13) | public interface OmsPortalOrderService { method generateOrder (line 18) | @Transactional method cancelOrder (line 24) | @Transactional FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 14) | public interface UmsAdminService { method getAdminByUsername (line 18) | AdminUserDetails getAdminByUsername(String username); method getResourceList (line 23) | List getResourceList(); method login (line 28) | String login(String username, String password); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/UmsMemberService.java type UmsMemberService (line 11) | public interface UmsMemberService { method generateAuthCode (line 16) | CommonResult generateAuthCode(String telephone); method verifyAuthCode (line 21) | CommonResult verifyAuthCode(String telephone, String authCode); FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/impl/EsProductServiceImpl.java class EsProductServiceImpl (line 27) | @Service method importAll (line 34) | @Override method delete (line 47) | @Override method create (line 52) | @Override method delete (line 63) | @Override method search (line 76) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/impl/MemberReadHistoryServiceImpl.java class MemberReadHistoryServiceImpl (line 19) | @Service method create (line 23) | @Override method delete (line 31) | @Override method list (line 43) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/impl/OmsPortalOrderServiceImpl.java class OmsPortalOrderServiceImpl (line 18) | @Service method generateOrder (line 24) | @Override method cancelOrder (line 33) | @Override method sendDelayMessageCancelOrder (line 39) | private void sendDelayMessageCancelOrder(Long orderId) { FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 29) | @Slf4j method init (line 45) | @PostConstruct method getAdminByUsername (line 83) | @Override method getResourceList (line 92) | @Override method login (line 97) | @Override FILE: mall-tiny-07/src/main/java/com/macro/mall/tiny/service/impl/UmsMemberServiceImpl.java class UmsMemberServiceImpl (line 20) | @Service method generateAuthCode (line 29) | @Override method verifyAuthCode (line 44) | @Override FILE: mall-tiny-07/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 14) | public class CommonPage { method restPage (line 24) | public static CommonPage restPage(List list) { method restPage (line 38) | public static CommonPage restPage(Page pageInfo) { method getPageNum (line 48) | public Integer getPageNum() { method setPageNum (line 52) | public void setPageNum(Integer pageNum) { method getPageSize (line 56) | public Integer getPageSize() { method setPageSize (line 60) | public void setPageSize(Integer pageSize) { method getTotalPage (line 64) | public Integer getTotalPage() { method setTotalPage (line 68) | public void setTotalPage(Integer totalPage) { method getList (line 72) | public List getList() { method setList (line 76) | public void setList(List list) { method getTotal (line 80) | public Long getTotal() { method setTotal (line 84) | public void setTotal(Long total) { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 29) | @Component method generateToken (line 42) | private String generateToken(Map claims) { method getClaimsFromToken (line 53) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 69) | private Date generateExpirationDate() { method getUserNameFromToken (line 76) | public String getUserNameFromToken(String token) { method validateToken (line 93) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 101) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 109) | private Date getExpiredDateFromToken(String token) { method generateToken (line 117) | public String generateToken(UserDetails userDetails) { method canRefresh (line 127) | public boolean canRefresh(String token) { method refreshToken (line 134) | public String refreshToken(String token) { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/component/CancelOrderReceiver.java class CancelOrderReceiver (line 17) | @Component method handle (line 23) | @RabbitHandler FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/component/CancelOrderSender.java class CancelOrderSender (line 19) | @Component method sendMessage (line 25) | public void sendMessage(Long orderId,final long delayTimes){ FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/GlobalCorsConfig.java class GlobalCorsConfig (line 15) | @Configuration method corsFilter (line 21) | @Bean FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/IgnoreUrlsConfig.java class IgnoreUrlsConfig (line 17) | @Getter FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/MallSecurityConfig.java class MallSecurityConfig (line 17) | @Configuration method userDetailsService (line 23) | @Bean FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 13) | @Configuration FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/RabbitMqConfig.java class RabbitMqConfig (line 14) | @Configuration method orderDirect (line 20) | @Bean method orderTtlDirect (line 31) | @Bean method orderQueue (line 42) | @Bean method orderTtlQueue (line 50) | @Bean method orderBinding (line 62) | @Bean method orderTtlBinding (line 73) | @Bean FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 28) | @EnableCaching method redisTemplate (line 37) | @Bean method redisSerializer (line 50) | @Bean method redisCacheManager (line 62) | @Bean FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 34) | @Configuration method filterChain (line 45) | @Bean method passwordEncoder (line 75) | @Bean method jwtAuthenticationTokenFilter (line 80) | @Bean FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method generateBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/controller/EsProductController.java class EsProductController (line 23) | @Controller method importAllList (line 31) | @ApiOperation(value = "导入所有数据库中商品到ES") method delete (line 39) | @ApiOperation(value = "根据id删除商品") method delete (line 47) | @ApiOperation(value = "根据id批量删除商品") method create (line 55) | @ApiOperation(value = "根据id创建商品") method search (line 67) | @ApiOperation(value = "简单搜索") FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/controller/MemberReadHistoryController.java class MemberReadHistoryController (line 21) | @Controller method create (line 29) | @ApiOperation("创建浏览记录") method delete (line 41) | @ApiOperation("删除浏览记录") method list (line 53) | @ApiOperation("展示浏览记录") FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/controller/MinioController.java class MinioController (line 28) | @Controller method upload (line 44) | @ApiOperation("文件上传") method createBucketPolicyConfigDto (line 93) | private BucketPolicyConfigDto createBucketPolicyConfigDto(String bucke... method delete (line 105) | @ApiOperation("文件删除") FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/controller/OmsPortalOrderController.java class OmsPortalOrderController (line 21) | @Controller method generateOrder (line 29) | @ApiOperation("根据购物车信息生成订单") FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 28) | @Controller method getBrandList (line 38) | @ApiOperation("获取所有品牌列表") method createBrand (line 46) | @ApiOperation("添加品牌") method updateBrand (line 63) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 80) | @ApiOperation("删除指定id的品牌") method listBrand (line 95) | @ApiOperation("分页查询品牌列表") method brand (line 107) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 27) | @Controller method login (line 40) | @ApiOperation(value = "登录以后返回token") method resourceList (line 54) | @ApiOperation(value = "登录以后返回token") FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/controller/UmsMemberController.java class UmsMemberController (line 21) | @Controller method getAuthCode (line 29) | @ApiOperation("获取验证码") method updatePassword (line 36) | @ApiOperation("判断验证码是否正确") FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/dao/EsProductDao.java type EsProductDao (line 14) | public interface EsProductDao { method getAllEsProductList (line 15) | List getAllEsProductList(@Param("id") Long id); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/domain/UmsResource.java class UmsResource (line 19) | @Data FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/dto/BucketPolicyConfigDto.java class BucketPolicyConfigDto (line 15) | @Data class Statement (line 23) | @Data FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/dto/MinioUploadDto.java class MinioUploadDto (line 13) | @Data FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/dto/OrderParam.java class OrderParam (line 11) | @Data FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/dto/QueueEnum.java type QueueEnum (line 11) | @Getter method QueueEnum (line 35) | QueueEnum(String exchange, String name, String routeKey) { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProduct.java class EsProduct (line 21) | @Data FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProductAttributeValue.java class EsProductAttributeValue (line 16) | @Data FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/repository/EsProductRepository.java type EsProductRepository (line 14) | public interface EsProductRepository extends ElasticsearchRepository findByNameOrSubTitleOrKeywords(String name, String sub... FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/nosql/mongodb/document/MemberReadHistory.java class MemberReadHistory (line 17) | @Data FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/nosql/mongodb/repository/MemberReadHistoryRepository.java type MemberReadHistoryRepository (line 15) | public interface MemberReadHistoryRepository extends MongoRepository findByMemberIdOrderByCreateTimeDesc(Long membe... FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/EsProductService.java type EsProductService (line 14) | public interface EsProductService { method importAll (line 18) | int importAll(); method delete (line 23) | void delete(Long id); method create (line 28) | EsProduct create(Long id); method delete (line 33) | void delete(List ids); method search (line 38) | Page search(String keyword, Integer pageNum, Integer pageSi... FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/MemberReadHistoryService.java type MemberReadHistoryService (line 14) | public interface MemberReadHistoryService { method create (line 18) | int create(MemberReadHistory memberReadHistory); method delete (line 23) | int delete(List ids); method list (line 28) | List list(Long memberId); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/OmsPortalOrderService.java type OmsPortalOrderService (line 13) | public interface OmsPortalOrderService { method generateOrder (line 18) | @Transactional method cancelOrder (line 24) | @Transactional FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 14) | public interface UmsAdminService { method getAdminByUsername (line 18) | AdminUserDetails getAdminByUsername(String username); method getResourceList (line 23) | List getResourceList(); method login (line 28) | String login(String username, String password); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/UmsMemberService.java type UmsMemberService (line 11) | public interface UmsMemberService { method generateAuthCode (line 16) | CommonResult generateAuthCode(String telephone); method verifyAuthCode (line 21) | CommonResult verifyAuthCode(String telephone, String authCode); FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/impl/EsProductServiceImpl.java class EsProductServiceImpl (line 27) | @Service method importAll (line 34) | @Override method delete (line 47) | @Override method create (line 52) | @Override method delete (line 63) | @Override method search (line 76) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/impl/MemberReadHistoryServiceImpl.java class MemberReadHistoryServiceImpl (line 19) | @Service method create (line 23) | @Override method delete (line 31) | @Override method list (line 43) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/impl/OmsPortalOrderServiceImpl.java class OmsPortalOrderServiceImpl (line 18) | @Service method generateOrder (line 24) | @Override method cancelOrder (line 33) | @Override method sendDelayMessageCancelOrder (line 39) | private void sendDelayMessageCancelOrder(Long orderId) { FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 29) | @Slf4j method init (line 45) | @PostConstruct method getAdminByUsername (line 83) | @Override method getResourceList (line 92) | @Override method login (line 97) | @Override FILE: mall-tiny-08/src/main/java/com/macro/mall/tiny/service/impl/UmsMemberServiceImpl.java class UmsMemberServiceImpl (line 20) | @Service method generateAuthCode (line 29) | @Override method verifyAuthCode (line 44) | @Override FILE: mall-tiny-08/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/config/AlipayClientConfig.java class AlipayClientConfig (line 14) | @Configuration method alipayClient (line 17) | @Bean FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/config/AlipayConfig.java class AlipayConfig (line 15) | @Getter FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method springfoxHandlerProviderBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/controller/AlipayController.java class AlipayController (line 31) | @Controller method pay (line 42) | @ApiOperation("支付宝电脑网站支付") method webPay (line 51) | @ApiOperation("支付宝手机网站支付") method notify (line 60) | @ApiOperation(value = "支付宝异步回调",notes = "必须为POST请求,执行成功返回success,执行失败返... method query (line 71) | @ApiOperation(value = "支付宝统一收单线下交易查询",notes = "订单支付成功返回:TRADE_SUCCESS") FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/controller/AlipayOrderController.java class AlipayOrderController (line 25) | @Controller method create (line 34) | @ApiOperation("创建订单") method info (line 42) | @ApiOperation("查询订单") FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 27) | @Controller method getBrandList (line 37) | @ApiOperation("获取所有品牌列表") method createBrand (line 44) | @ApiOperation("添加品牌") method updateBrand (line 60) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 76) | @ApiOperation("删除指定id的品牌") method listBrand (line 90) | @ApiOperation("分页查询品牌列表") method brand (line 101) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/dto/AliPayParam.java class AliPayParam (line 13) | @Data FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 17) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 26) | @Override method addFieldComment (line 35) | @Override method addFieldJavaDoc (line 54) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 66) | @Override FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/mapper/AlipayOrderMapper.java type AlipayOrderMapper (line 8) | public interface AlipayOrderMapper { method countByExample (line 9) | long countByExample(AlipayOrderExample example); method deleteByExample (line 11) | int deleteByExample(AlipayOrderExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(AlipayOrder row); method insertSelective (line 17) | int insertSelective(AlipayOrder row); method selectByExample (line 19) | List selectByExample(AlipayOrderExample example); method selectByPrimaryKey (line 21) | AlipayOrder selectByPrimaryKey(Long id); method updateByExampleSelective (line 23) | int updateByExampleSelective(@Param("row") AlipayOrder row, @Param("ex... method updateByExample (line 25) | int updateByExample(@Param("row") AlipayOrder row, @Param("example") A... method updateByPrimaryKeySelective (line 27) | int updateByPrimaryKeySelective(AlipayOrder row); method updateByPrimaryKey (line 29) | int updateByPrimaryKey(AlipayOrder row); FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/model/AlipayOrder.java class AlipayOrder (line 8) | public class AlipayOrder implements Serializable { method getId (line 37) | public Long getId() { method setId (line 41) | public void setId(Long id) { method getOrderId (line 45) | public String getOrderId() { method setOrderId (line 49) | public void setOrderId(String orderId) { method getSubject (line 53) | public String getSubject() { method setSubject (line 57) | public void setSubject(String subject) { method getTotalAmount (line 61) | public BigDecimal getTotalAmount() { method setTotalAmount (line 65) | public void setTotalAmount(BigDecimal totalAmount) { method getTradeStatus (line 69) | public String getTradeStatus() { method setTradeStatus (line 73) | public void setTradeStatus(String tradeStatus) { method getTradeNo (line 77) | public String getTradeNo() { method setTradeNo (line 81) | public void setTradeNo(String tradeNo) { method getBuyerId (line 85) | public String getBuyerId() { method setBuyerId (line 89) | public void setBuyerId(String buyerId) { method getGmtPayment (line 93) | public Date getGmtPayment() { method setGmtPayment (line 97) | public void setGmtPayment(Date gmtPayment) { method getBuyerPayAmount (line 101) | public BigDecimal getBuyerPayAmount() { method setBuyerPayAmount (line 105) | public void setBuyerPayAmount(BigDecimal buyerPayAmount) { method toString (line 109) | @Override FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/model/AlipayOrderExample.java class AlipayOrderExample (line 8) | public class AlipayOrderExample { method AlipayOrderExample (line 15) | public AlipayOrderExample() { method setOrderByClause (line 19) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 23) | public String getOrderByClause() { method setDistinct (line 27) | public void setDistinct(boolean distinct) { method isDistinct (line 31) | public boolean isDistinct() { method getOredCriteria (line 35) | public List getOredCriteria() { method or (line 39) | public void or(Criteria criteria) { method or (line 43) | public Criteria or() { method createCriteria (line 49) | public Criteria createCriteria() { method createCriteriaInternal (line 57) | protected Criteria createCriteriaInternal() { method clear (line 62) | public void clear() { class GeneratedCriteria (line 68) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 71) | protected GeneratedCriteria() { method isValid (line 76) | public boolean isValid() { method getAllCriteria (line 80) | public List getAllCriteria() { method getCriteria (line 84) | public List getCriteria() { method addCriterion (line 88) | protected void addCriterion(String condition) { method addCriterion (line 95) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 102) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 109) | public Criteria andIdIsNull() { method andIdIsNotNull (line 114) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 119) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 124) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 129) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 134) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 139) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 144) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 149) | public Criteria andIdIn(List values) { method andIdNotIn (line 154) | public Criteria andIdNotIn(List values) { method andIdBetween (line 159) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 164) | public Criteria andIdNotBetween(Long value1, Long value2) { method andOrderIdIsNull (line 169) | public Criteria andOrderIdIsNull() { method andOrderIdIsNotNull (line 174) | public Criteria andOrderIdIsNotNull() { method andOrderIdEqualTo (line 179) | public Criteria andOrderIdEqualTo(String value) { method andOrderIdNotEqualTo (line 184) | public Criteria andOrderIdNotEqualTo(String value) { method andOrderIdGreaterThan (line 189) | public Criteria andOrderIdGreaterThan(String value) { method andOrderIdGreaterThanOrEqualTo (line 194) | public Criteria andOrderIdGreaterThanOrEqualTo(String value) { method andOrderIdLessThan (line 199) | public Criteria andOrderIdLessThan(String value) { method andOrderIdLessThanOrEqualTo (line 204) | public Criteria andOrderIdLessThanOrEqualTo(String value) { method andOrderIdLike (line 209) | public Criteria andOrderIdLike(String value) { method andOrderIdNotLike (line 214) | public Criteria andOrderIdNotLike(String value) { method andOrderIdIn (line 219) | public Criteria andOrderIdIn(List values) { method andOrderIdNotIn (line 224) | public Criteria andOrderIdNotIn(List values) { method andOrderIdBetween (line 229) | public Criteria andOrderIdBetween(String value1, String value2) { method andOrderIdNotBetween (line 234) | public Criteria andOrderIdNotBetween(String value1, String value2) { method andSubjectIsNull (line 239) | public Criteria andSubjectIsNull() { method andSubjectIsNotNull (line 244) | public Criteria andSubjectIsNotNull() { method andSubjectEqualTo (line 249) | public Criteria andSubjectEqualTo(String value) { method andSubjectNotEqualTo (line 254) | public Criteria andSubjectNotEqualTo(String value) { method andSubjectGreaterThan (line 259) | public Criteria andSubjectGreaterThan(String value) { method andSubjectGreaterThanOrEqualTo (line 264) | public Criteria andSubjectGreaterThanOrEqualTo(String value) { method andSubjectLessThan (line 269) | public Criteria andSubjectLessThan(String value) { method andSubjectLessThanOrEqualTo (line 274) | public Criteria andSubjectLessThanOrEqualTo(String value) { method andSubjectLike (line 279) | public Criteria andSubjectLike(String value) { method andSubjectNotLike (line 284) | public Criteria andSubjectNotLike(String value) { method andSubjectIn (line 289) | public Criteria andSubjectIn(List values) { method andSubjectNotIn (line 294) | public Criteria andSubjectNotIn(List values) { method andSubjectBetween (line 299) | public Criteria andSubjectBetween(String value1, String value2) { method andSubjectNotBetween (line 304) | public Criteria andSubjectNotBetween(String value1, String value2) { method andTotalAmountIsNull (line 309) | public Criteria andTotalAmountIsNull() { method andTotalAmountIsNotNull (line 314) | public Criteria andTotalAmountIsNotNull() { method andTotalAmountEqualTo (line 319) | public Criteria andTotalAmountEqualTo(BigDecimal value) { method andTotalAmountNotEqualTo (line 324) | public Criteria andTotalAmountNotEqualTo(BigDecimal value) { method andTotalAmountGreaterThan (line 329) | public Criteria andTotalAmountGreaterThan(BigDecimal value) { method andTotalAmountGreaterThanOrEqualTo (line 334) | public Criteria andTotalAmountGreaterThanOrEqualTo(BigDecimal value) { method andTotalAmountLessThan (line 339) | public Criteria andTotalAmountLessThan(BigDecimal value) { method andTotalAmountLessThanOrEqualTo (line 344) | public Criteria andTotalAmountLessThanOrEqualTo(BigDecimal value) { method andTotalAmountIn (line 349) | public Criteria andTotalAmountIn(List values) { method andTotalAmountNotIn (line 354) | public Criteria andTotalAmountNotIn(List values) { method andTotalAmountBetween (line 359) | public Criteria andTotalAmountBetween(BigDecimal value1, BigDecimal ... method andTotalAmountNotBetween (line 364) | public Criteria andTotalAmountNotBetween(BigDecimal value1, BigDecim... method andTradeStatusIsNull (line 369) | public Criteria andTradeStatusIsNull() { method andTradeStatusIsNotNull (line 374) | public Criteria andTradeStatusIsNotNull() { method andTradeStatusEqualTo (line 379) | public Criteria andTradeStatusEqualTo(String value) { method andTradeStatusNotEqualTo (line 384) | public Criteria andTradeStatusNotEqualTo(String value) { method andTradeStatusGreaterThan (line 389) | public Criteria andTradeStatusGreaterThan(String value) { method andTradeStatusGreaterThanOrEqualTo (line 394) | public Criteria andTradeStatusGreaterThanOrEqualTo(String value) { method andTradeStatusLessThan (line 399) | public Criteria andTradeStatusLessThan(String value) { method andTradeStatusLessThanOrEqualTo (line 404) | public Criteria andTradeStatusLessThanOrEqualTo(String value) { method andTradeStatusLike (line 409) | public Criteria andTradeStatusLike(String value) { method andTradeStatusNotLike (line 414) | public Criteria andTradeStatusNotLike(String value) { method andTradeStatusIn (line 419) | public Criteria andTradeStatusIn(List values) { method andTradeStatusNotIn (line 424) | public Criteria andTradeStatusNotIn(List values) { method andTradeStatusBetween (line 429) | public Criteria andTradeStatusBetween(String value1, String value2) { method andTradeStatusNotBetween (line 434) | public Criteria andTradeStatusNotBetween(String value1, String value... method andTradeNoIsNull (line 439) | public Criteria andTradeNoIsNull() { method andTradeNoIsNotNull (line 444) | public Criteria andTradeNoIsNotNull() { method andTradeNoEqualTo (line 449) | public Criteria andTradeNoEqualTo(String value) { method andTradeNoNotEqualTo (line 454) | public Criteria andTradeNoNotEqualTo(String value) { method andTradeNoGreaterThan (line 459) | public Criteria andTradeNoGreaterThan(String value) { method andTradeNoGreaterThanOrEqualTo (line 464) | public Criteria andTradeNoGreaterThanOrEqualTo(String value) { method andTradeNoLessThan (line 469) | public Criteria andTradeNoLessThan(String value) { method andTradeNoLessThanOrEqualTo (line 474) | public Criteria andTradeNoLessThanOrEqualTo(String value) { method andTradeNoLike (line 479) | public Criteria andTradeNoLike(String value) { method andTradeNoNotLike (line 484) | public Criteria andTradeNoNotLike(String value) { method andTradeNoIn (line 489) | public Criteria andTradeNoIn(List values) { method andTradeNoNotIn (line 494) | public Criteria andTradeNoNotIn(List values) { method andTradeNoBetween (line 499) | public Criteria andTradeNoBetween(String value1, String value2) { method andTradeNoNotBetween (line 504) | public Criteria andTradeNoNotBetween(String value1, String value2) { method andBuyerIdIsNull (line 509) | public Criteria andBuyerIdIsNull() { method andBuyerIdIsNotNull (line 514) | public Criteria andBuyerIdIsNotNull() { method andBuyerIdEqualTo (line 519) | public Criteria andBuyerIdEqualTo(String value) { method andBuyerIdNotEqualTo (line 524) | public Criteria andBuyerIdNotEqualTo(String value) { method andBuyerIdGreaterThan (line 529) | public Criteria andBuyerIdGreaterThan(String value) { method andBuyerIdGreaterThanOrEqualTo (line 534) | public Criteria andBuyerIdGreaterThanOrEqualTo(String value) { method andBuyerIdLessThan (line 539) | public Criteria andBuyerIdLessThan(String value) { method andBuyerIdLessThanOrEqualTo (line 544) | public Criteria andBuyerIdLessThanOrEqualTo(String value) { method andBuyerIdLike (line 549) | public Criteria andBuyerIdLike(String value) { method andBuyerIdNotLike (line 554) | public Criteria andBuyerIdNotLike(String value) { method andBuyerIdIn (line 559) | public Criteria andBuyerIdIn(List values) { method andBuyerIdNotIn (line 564) | public Criteria andBuyerIdNotIn(List values) { method andBuyerIdBetween (line 569) | public Criteria andBuyerIdBetween(String value1, String value2) { method andBuyerIdNotBetween (line 574) | public Criteria andBuyerIdNotBetween(String value1, String value2) { method andGmtPaymentIsNull (line 579) | public Criteria andGmtPaymentIsNull() { method andGmtPaymentIsNotNull (line 584) | public Criteria andGmtPaymentIsNotNull() { method andGmtPaymentEqualTo (line 589) | public Criteria andGmtPaymentEqualTo(Date value) { method andGmtPaymentNotEqualTo (line 594) | public Criteria andGmtPaymentNotEqualTo(Date value) { method andGmtPaymentGreaterThan (line 599) | public Criteria andGmtPaymentGreaterThan(Date value) { method andGmtPaymentGreaterThanOrEqualTo (line 604) | public Criteria andGmtPaymentGreaterThanOrEqualTo(Date value) { method andGmtPaymentLessThan (line 609) | public Criteria andGmtPaymentLessThan(Date value) { method andGmtPaymentLessThanOrEqualTo (line 614) | public Criteria andGmtPaymentLessThanOrEqualTo(Date value) { method andGmtPaymentIn (line 619) | public Criteria andGmtPaymentIn(List values) { method andGmtPaymentNotIn (line 624) | public Criteria andGmtPaymentNotIn(List values) { method andGmtPaymentBetween (line 629) | public Criteria andGmtPaymentBetween(Date value1, Date value2) { method andGmtPaymentNotBetween (line 634) | public Criteria andGmtPaymentNotBetween(Date value1, Date value2) { method andBuyerPayAmountIsNull (line 639) | public Criteria andBuyerPayAmountIsNull() { method andBuyerPayAmountIsNotNull (line 644) | public Criteria andBuyerPayAmountIsNotNull() { method andBuyerPayAmountEqualTo (line 649) | public Criteria andBuyerPayAmountEqualTo(BigDecimal value) { method andBuyerPayAmountNotEqualTo (line 654) | public Criteria andBuyerPayAmountNotEqualTo(BigDecimal value) { method andBuyerPayAmountGreaterThan (line 659) | public Criteria andBuyerPayAmountGreaterThan(BigDecimal value) { method andBuyerPayAmountGreaterThanOrEqualTo (line 664) | public Criteria andBuyerPayAmountGreaterThanOrEqualTo(BigDecimal val... method andBuyerPayAmountLessThan (line 669) | public Criteria andBuyerPayAmountLessThan(BigDecimal value) { method andBuyerPayAmountLessThanOrEqualTo (line 674) | public Criteria andBuyerPayAmountLessThanOrEqualTo(BigDecimal value) { method andBuyerPayAmountIn (line 679) | public Criteria andBuyerPayAmountIn(List values) { method andBuyerPayAmountNotIn (line 684) | public Criteria andBuyerPayAmountNotIn(List values) { method andBuyerPayAmountBetween (line 689) | public Criteria andBuyerPayAmountBetween(BigDecimal value1, BigDecim... method andBuyerPayAmountNotBetween (line 694) | public Criteria andBuyerPayAmountNotBetween(BigDecimal value1, BigDe... class Criteria (line 700) | public static class Criteria extends GeneratedCriteria { method Criteria (line 701) | protected Criteria() { class Criterion (line 706) | public static class Criterion { method getCondition (line 723) | public String getCondition() { method getValue (line 727) | public Object getValue() { method getSecondValue (line 731) | public Object getSecondValue() { method isNoValue (line 735) | public boolean isNoValue() { method isSingleValue (line 739) | public boolean isSingleValue() { method isBetweenValue (line 743) | public boolean isBetweenValue() { method isListValue (line 747) | public boolean isListValue() { method getTypeHandler (line 751) | public String getTypeHandler() { method Criterion (line 755) | protected Criterion(String condition) { method Criterion (line 762) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 774) | protected Criterion(String condition, Object value) { method Criterion (line 778) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 787) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 42) | public Long getId() { method setId (line 46) | public void setId(Long id) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getFirstLetter (line 58) | public String getFirstLetter() { method setFirstLetter (line 62) | public void setFirstLetter(String firstLetter) { method getSort (line 66) | public Integer getSort() { method setSort (line 70) | public void setSort(Integer sort) { method getFactoryStatus (line 74) | public Integer getFactoryStatus() { method setFactoryStatus (line 78) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 82) | public Integer getShowStatus() { method setShowStatus (line 86) | public void setShowStatus(Integer showStatus) { method getProductCount (line 90) | public Integer getProductCount() { method setProductCount (line 94) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 98) | public Integer getProductCommentCount() { method setProductCommentCount (line 102) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 106) | public String getLogo() { method setLogo (line 110) | public void setLogo(String logo) { method getBigPic (line 114) | public String getBigPic() { method setBigPic (line 118) | public void setBigPic(String bigPic) { method getBrandStory (line 122) | public String getBrandStory() { method setBrandStory (line 126) | public void setBrandStory(String brandStory) { method toString (line 130) | @Override FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/service/AlipayOrderService.java type AlipayOrderService (line 11) | public interface AlipayOrderService { method create (line 15) | AlipayOrder create(); method info (line 20) | AlipayOrder info(String orderId); FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/service/AlipayService.java type AlipayService (line 14) | public interface AlipayService { method pay (line 18) | String pay(AliPayParam aliPayParam); method notify (line 23) | String notify(Map params); method query (line 30) | String query(String outTradeNo, String tradeNo); method webPay (line 35) | String webPay(AliPayParam aliPayParam); FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/service/impl/AlipayOrderServiceImpl.java class AlipayOrderServiceImpl (line 23) | @Service method create (line 28) | @Override method info (line 42) | @Override FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/service/impl/AlipayServiceImpl.java class AlipayServiceImpl (line 33) | @Slf4j method pay (line 42) | @Override method notify (line 73) | @Override method query (line 104) | @Override method webPay (line 135) | @Override FILE: mall-tiny-alipay/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-alipay/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 29) | @Component method generateToken (line 42) | private String generateToken(Map claims) { method getClaimsFromToken (line 53) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 69) | private Date generateExpirationDate() { method getUserNameFromToken (line 76) | public String getUserNameFromToken(String token) { method validateToken (line 93) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 101) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 109) | private Date getExpiredDateFromToken(String token) { method generateToken (line 117) | public String generateToken(UserDetails userDetails) { method canRefresh (line 127) | public boolean canRefresh(String token) { method refreshToken (line 134) | public String refreshToken(String token) { FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/config/IgnoreUrlsConfig.java class IgnoreUrlsConfig (line 17) | @Getter FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 33) | @Configuration method filterChain (line 46) | @Bean method passwordEncoder (line 77) | @Bean method userDetailsService (line 82) | @Bean method jwtAuthenticationTokenFilter (line 94) | @Bean FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method generateBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 28) | @Controller method getBrandList (line 38) | @ApiOperation("获取所有品牌列表") method createBrand (line 45) | @ApiOperation("添加品牌") method updateBrand (line 62) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 79) | @ApiOperation("删除指定id的品牌") method listBrand (line 94) | @ApiOperation("分页查询品牌列表") method brand (line 106) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 25) | @Controller method login (line 38) | @ApiOperation(value = "登录以后返回token") FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | int countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand record); method insertSelective (line 17) | int insertSelective(PmsBrand record); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("record") PmsBrand record, @Param(... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param(... method updateByExample (line 29) | int updateByExample(@Param("record") PmsBrand record, @Param("example"... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand record); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand record); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand record); FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 750) | protected Criteria() { class Criterion (line 755) | public static class Criterion { method getCondition (line 772) | public String getCondition() { method getValue (line 776) | public Object getValue() { method getSecondValue (line 780) | public Object getSecondValue() { method isNoValue (line 784) | public boolean isNoValue() { method isSingleValue (line 788) | public boolean isSingleValue() { method isBetweenValue (line 792) | public boolean isBetweenValue() { method isListValue (line 796) | public boolean isListValue() { method getTypeHandler (line 800) | public String getTypeHandler() { method Criterion (line 804) | protected Criterion(String condition) { method Criterion (line 811) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 823) | protected Criterion(String condition, Object value) { method Criterion (line 827) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 836) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 11) | public interface UmsAdminService { method getAdminByUsername (line 15) | AdminUserDetails getAdminByUsername(String username); method login (line 20) | String login(String username, String password); FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-boot/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 28) | @Slf4j method init (line 40) | @PostConstruct method getAdminByUsername (line 53) | @Override method login (line 62) | @Override FILE: mall-tiny-boot/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 14) | @SpringBootTest method testMethod (line 20) | @Test FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method springfoxHandlerProviderBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 27) | @Controller method getBrandList (line 37) | @ApiOperation("获取所有品牌列表") method createBrand (line 44) | @ApiOperation("添加品牌") method updateBrand (line 60) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 76) | @ApiOperation("删除指定id的品牌") method listBrand (line 90) | @ApiOperation("分页查询品牌列表") method brand (line 101) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 17) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 26) | @Override method addFieldComment (line 35) | @Override method addFieldJavaDoc (line 54) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 66) | @Override FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 42) | public Long getId() { method setId (line 46) | public void setId(Long id) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getFirstLetter (line 58) | public String getFirstLetter() { method setFirstLetter (line 62) | public void setFirstLetter(String firstLetter) { method getSort (line 66) | public Integer getSort() { method setSort (line 70) | public void setSort(Integer sort) { method getFactoryStatus (line 74) | public Integer getFactoryStatus() { method setFactoryStatus (line 78) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 82) | public Integer getShowStatus() { method setShowStatus (line 86) | public void setShowStatus(Integer showStatus) { method getProductCount (line 90) | public Integer getProductCount() { method setProductCount (line 94) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 98) | public Integer getProductCommentCount() { method setProductCommentCount (line 102) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 106) | public String getLogo() { method setLogo (line 110) | public void setLogo(String logo) { method getBigPic (line 114) | public String getBigPic() { method setBigPic (line 118) | public void setBigPic(String bigPic) { method getBrandStory (line 122) | public String getBrandStory() { method setBrandStory (line 126) | public void setBrandStory(String brandStory) { method toString (line 130) | @Override FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-docker/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-docker/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 31) | @Configuration method createRestApi (line 33) | @Bean method apiInfo (line 43) | private ApiInfo apiInfo() { method generateBeanPostProcessor (line 52) | @Bean FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 25) | @RestController method create (line 34) | @ApiOperation("创建") method update (line 41) | @ApiOperation("修改") method delete (line 49) | @ApiOperation("删除") method select (line 56) | @ApiOperation("根据ID查询") method listAll (line 63) | @ApiOperation("分页查询所有") method list (line 73) | @ApiOperation("分页条件查询") method subList (line 87) | @ApiOperation("使用子查询") method groupList (line 94) | @ApiOperation("使用Group和Join查询") method deleteByUsername (line 101) | @ApiOperation("条件删除") method updateByIds (line 108) | @ApiOperation("条件修改") method selectWithRoleList (line 115) | @ApiOperation("一对多查询") method selectResourceWithCate (line 122) | @ApiOperation("一对一查询") FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/dao/UmsAdminDao.java type UmsAdminDao (line 17) | public interface UmsAdminDao { method groupList (line 19) | List groupList(); method selectWithRoleList (line 21) | AdminRoleDto selectWithRoleList(@Param("id") Long id); method subList (line 23) | List subList(@Param("roleId") Long roleId); method selectResourceWithCate (line 25) | ResourceWithCateDto selectResourceWithCate(@Param("id")Long id); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/domain/AdminRoleDto.java class AdminRoleDto (line 11) | public class AdminRoleDto extends UmsAdmin { method getRoleList (line 15) | public List getRoleList() { method setRoleList (line 19) | public void setRoleList(List roleList) { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/domain/ResourceWithCateDto.java class ResourceWithCateDto (line 9) | public class ResourceWithCateDto extends UmsResource { method getResourceCategory (line 12) | public UmsResourceCategory getResourceCategory() { method setResourceCategory (line 16) | public void setResourceCategory(UmsResourceCategory resourceCategory) { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/domain/RoleStatDto.java class RoleStatDto (line 6) | public class RoleStatDto { method getRoleId (line 11) | public Long getRoleId() { method getRoleName (line 15) | public String getRoleName() { method getCount (line 19) | public Integer getCount() { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addJavaFileComment (line 52) | @Override FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/mapper/UmsAdminMapper.java type UmsAdminMapper (line 8) | public interface UmsAdminMapper { method countByExample (line 9) | long countByExample(UmsAdminExample example); method deleteByExample (line 11) | int deleteByExample(UmsAdminExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(UmsAdmin row); method insertSelective (line 17) | int insertSelective(UmsAdmin row); method selectByExample (line 19) | List selectByExample(UmsAdminExample example); method selectByPrimaryKey (line 21) | UmsAdmin selectByPrimaryKey(Long id); method updateByExampleSelective (line 23) | int updateByExampleSelective(@Param("row") UmsAdmin row, @Param("examp... method updateByExample (line 25) | int updateByExample(@Param("row") UmsAdmin row, @Param("example") UmsA... method updateByPrimaryKeySelective (line 27) | int updateByPrimaryKeySelective(UmsAdmin row); method updateByPrimaryKey (line 29) | int updateByPrimaryKey(UmsAdmin row); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/mapper/UmsAdminRoleRelationMapper.java type UmsAdminRoleRelationMapper (line 8) | public interface UmsAdminRoleRelationMapper { method countByExample (line 9) | long countByExample(UmsAdminRoleRelationExample example); method deleteByExample (line 11) | int deleteByExample(UmsAdminRoleRelationExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(UmsAdminRoleRelation row); method insertSelective (line 17) | int insertSelective(UmsAdminRoleRelation row); method selectByExample (line 19) | List selectByExample(UmsAdminRoleRelationExample... method selectByPrimaryKey (line 21) | UmsAdminRoleRelation selectByPrimaryKey(Long id); method updateByExampleSelective (line 23) | int updateByExampleSelective(@Param("row") UmsAdminRoleRelation row, @... method updateByExample (line 25) | int updateByExample(@Param("row") UmsAdminRoleRelation row, @Param("ex... method updateByPrimaryKeySelective (line 27) | int updateByPrimaryKeySelective(UmsAdminRoleRelation row); method updateByPrimaryKey (line 29) | int updateByPrimaryKey(UmsAdminRoleRelation row); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/mapper/UmsResourceCategoryMapper.java type UmsResourceCategoryMapper (line 8) | public interface UmsResourceCategoryMapper { method countByExample (line 9) | long countByExample(UmsResourceCategoryExample example); method deleteByExample (line 11) | int deleteByExample(UmsResourceCategoryExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(UmsResourceCategory row); method insertSelective (line 17) | int insertSelective(UmsResourceCategory row); method selectByExample (line 19) | List selectByExample(UmsResourceCategoryExample e... method selectByPrimaryKey (line 21) | UmsResourceCategory selectByPrimaryKey(Long id); method updateByExampleSelective (line 23) | int updateByExampleSelective(@Param("row") UmsResourceCategory row, @P... method updateByExample (line 25) | int updateByExample(@Param("row") UmsResourceCategory row, @Param("exa... method updateByPrimaryKeySelective (line 27) | int updateByPrimaryKeySelective(UmsResourceCategory row); method updateByPrimaryKey (line 29) | int updateByPrimaryKey(UmsResourceCategory row); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/mapper/UmsResourceMapper.java type UmsResourceMapper (line 8) | public interface UmsResourceMapper { method countByExample (line 9) | long countByExample(UmsResourceExample example); method deleteByExample (line 11) | int deleteByExample(UmsResourceExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(UmsResource row); method insertSelective (line 17) | int insertSelective(UmsResource row); method selectByExample (line 19) | List selectByExample(UmsResourceExample example); method selectByPrimaryKey (line 21) | UmsResource selectByPrimaryKey(Long id); method updateByExampleSelective (line 23) | int updateByExampleSelective(@Param("row") UmsResource row, @Param("ex... method updateByExample (line 25) | int updateByExample(@Param("row") UmsResource row, @Param("example") U... method updateByPrimaryKeySelective (line 27) | int updateByPrimaryKeySelective(UmsResource row); method updateByPrimaryKey (line 29) | int updateByPrimaryKey(UmsResource row); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/mapper/UmsRoleMapper.java type UmsRoleMapper (line 8) | public interface UmsRoleMapper { method countByExample (line 9) | long countByExample(UmsRoleExample example); method deleteByExample (line 11) | int deleteByExample(UmsRoleExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(UmsRole row); method insertSelective (line 17) | int insertSelective(UmsRole row); method selectByExample (line 19) | List selectByExample(UmsRoleExample example); method selectByPrimaryKey (line 21) | UmsRole selectByPrimaryKey(Long id); method updateByExampleSelective (line 23) | int updateByExampleSelective(@Param("row") UmsRole row, @Param("exampl... method updateByExample (line 25) | int updateByExample(@Param("row") UmsRole row, @Param("example") UmsRo... method updateByPrimaryKeySelective (line 27) | int updateByPrimaryKeySelective(UmsRole row); method updateByPrimaryKey (line 29) | int updateByPrimaryKey(UmsRole row); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsAdmin.java class UmsAdmin (line 7) | public class UmsAdmin implements Serializable { method getId (line 37) | public Long getId() { method setId (line 41) | public void setId(Long id) { method getUsername (line 45) | public String getUsername() { method setUsername (line 49) | public void setUsername(String username) { method getPassword (line 53) | public String getPassword() { method setPassword (line 57) | public void setPassword(String password) { method getIcon (line 61) | public String getIcon() { method setIcon (line 65) | public void setIcon(String icon) { method getEmail (line 69) | public String getEmail() { method setEmail (line 73) | public void setEmail(String email) { method getNickName (line 77) | public String getNickName() { method setNickName (line 81) | public void setNickName(String nickName) { method getNote (line 85) | public String getNote() { method setNote (line 89) | public void setNote(String note) { method getCreateTime (line 93) | public Date getCreateTime() { method setCreateTime (line 97) | public void setCreateTime(Date createTime) { method getLoginTime (line 101) | public Date getLoginTime() { method setLoginTime (line 105) | public void setLoginTime(Date loginTime) { method getStatus (line 109) | public Integer getStatus() { method setStatus (line 113) | public void setStatus(Integer status) { method toString (line 117) | @Override FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsAdminExample.java class UmsAdminExample (line 7) | public class UmsAdminExample { method UmsAdminExample (line 14) | public UmsAdminExample() { method setOrderByClause (line 18) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 22) | public String getOrderByClause() { method setDistinct (line 26) | public void setDistinct(boolean distinct) { method isDistinct (line 30) | public boolean isDistinct() { method getOredCriteria (line 34) | public List getOredCriteria() { method or (line 38) | public void or(Criteria criteria) { method or (line 42) | public Criteria or() { method createCriteria (line 48) | public Criteria createCriteria() { method createCriteriaInternal (line 56) | protected Criteria createCriteriaInternal() { method clear (line 61) | public void clear() { class GeneratedCriteria (line 67) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 70) | protected GeneratedCriteria() { method isValid (line 75) | public boolean isValid() { method getAllCriteria (line 79) | public List getAllCriteria() { method getCriteria (line 83) | public List getCriteria() { method addCriterion (line 87) | protected void addCriterion(String condition) { method addCriterion (line 94) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 101) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 108) | public Criteria andIdIsNull() { method andIdIsNotNull (line 113) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 118) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 123) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 128) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 133) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 138) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 143) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 148) | public Criteria andIdIn(List values) { method andIdNotIn (line 153) | public Criteria andIdNotIn(List values) { method andIdBetween (line 158) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 163) | public Criteria andIdNotBetween(Long value1, Long value2) { method andUsernameIsNull (line 168) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 173) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 178) | public Criteria andUsernameEqualTo(String value) { method andUsernameNotEqualTo (line 183) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameGreaterThan (line 188) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanOrEqualTo (line 193) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameLessThan (line 198) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanOrEqualTo (line 203) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLike (line 208) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 213) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 218) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 223) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 228) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 233) | public Criteria andUsernameNotBetween(String value1, String value2) { method andPasswordIsNull (line 238) | public Criteria andPasswordIsNull() { method andPasswordIsNotNull (line 243) | public Criteria andPasswordIsNotNull() { method andPasswordEqualTo (line 248) | public Criteria andPasswordEqualTo(String value) { method andPasswordNotEqualTo (line 253) | public Criteria andPasswordNotEqualTo(String value) { method andPasswordGreaterThan (line 258) | public Criteria andPasswordGreaterThan(String value) { method andPasswordGreaterThanOrEqualTo (line 263) | public Criteria andPasswordGreaterThanOrEqualTo(String value) { method andPasswordLessThan (line 268) | public Criteria andPasswordLessThan(String value) { method andPasswordLessThanOrEqualTo (line 273) | public Criteria andPasswordLessThanOrEqualTo(String value) { method andPasswordLike (line 278) | public Criteria andPasswordLike(String value) { method andPasswordNotLike (line 283) | public Criteria andPasswordNotLike(String value) { method andPasswordIn (line 288) | public Criteria andPasswordIn(List values) { method andPasswordNotIn (line 293) | public Criteria andPasswordNotIn(List values) { method andPasswordBetween (line 298) | public Criteria andPasswordBetween(String value1, String value2) { method andPasswordNotBetween (line 303) | public Criteria andPasswordNotBetween(String value1, String value2) { method andIconIsNull (line 308) | public Criteria andIconIsNull() { method andIconIsNotNull (line 313) | public Criteria andIconIsNotNull() { method andIconEqualTo (line 318) | public Criteria andIconEqualTo(String value) { method andIconNotEqualTo (line 323) | public Criteria andIconNotEqualTo(String value) { method andIconGreaterThan (line 328) | public Criteria andIconGreaterThan(String value) { method andIconGreaterThanOrEqualTo (line 333) | public Criteria andIconGreaterThanOrEqualTo(String value) { method andIconLessThan (line 338) | public Criteria andIconLessThan(String value) { method andIconLessThanOrEqualTo (line 343) | public Criteria andIconLessThanOrEqualTo(String value) { method andIconLike (line 348) | public Criteria andIconLike(String value) { method andIconNotLike (line 353) | public Criteria andIconNotLike(String value) { method andIconIn (line 358) | public Criteria andIconIn(List values) { method andIconNotIn (line 363) | public Criteria andIconNotIn(List values) { method andIconBetween (line 368) | public Criteria andIconBetween(String value1, String value2) { method andIconNotBetween (line 373) | public Criteria andIconNotBetween(String value1, String value2) { method andEmailIsNull (line 378) | public Criteria andEmailIsNull() { method andEmailIsNotNull (line 383) | public Criteria andEmailIsNotNull() { method andEmailEqualTo (line 388) | public Criteria andEmailEqualTo(String value) { method andEmailNotEqualTo (line 393) | public Criteria andEmailNotEqualTo(String value) { method andEmailGreaterThan (line 398) | public Criteria andEmailGreaterThan(String value) { method andEmailGreaterThanOrEqualTo (line 403) | public Criteria andEmailGreaterThanOrEqualTo(String value) { method andEmailLessThan (line 408) | public Criteria andEmailLessThan(String value) { method andEmailLessThanOrEqualTo (line 413) | public Criteria andEmailLessThanOrEqualTo(String value) { method andEmailLike (line 418) | public Criteria andEmailLike(String value) { method andEmailNotLike (line 423) | public Criteria andEmailNotLike(String value) { method andEmailIn (line 428) | public Criteria andEmailIn(List values) { method andEmailNotIn (line 433) | public Criteria andEmailNotIn(List values) { method andEmailBetween (line 438) | public Criteria andEmailBetween(String value1, String value2) { method andEmailNotBetween (line 443) | public Criteria andEmailNotBetween(String value1, String value2) { method andNickNameIsNull (line 448) | public Criteria andNickNameIsNull() { method andNickNameIsNotNull (line 453) | public Criteria andNickNameIsNotNull() { method andNickNameEqualTo (line 458) | public Criteria andNickNameEqualTo(String value) { method andNickNameNotEqualTo (line 463) | public Criteria andNickNameNotEqualTo(String value) { method andNickNameGreaterThan (line 468) | public Criteria andNickNameGreaterThan(String value) { method andNickNameGreaterThanOrEqualTo (line 473) | public Criteria andNickNameGreaterThanOrEqualTo(String value) { method andNickNameLessThan (line 478) | public Criteria andNickNameLessThan(String value) { method andNickNameLessThanOrEqualTo (line 483) | public Criteria andNickNameLessThanOrEqualTo(String value) { method andNickNameLike (line 488) | public Criteria andNickNameLike(String value) { method andNickNameNotLike (line 493) | public Criteria andNickNameNotLike(String value) { method andNickNameIn (line 498) | public Criteria andNickNameIn(List values) { method andNickNameNotIn (line 503) | public Criteria andNickNameNotIn(List values) { method andNickNameBetween (line 508) | public Criteria andNickNameBetween(String value1, String value2) { method andNickNameNotBetween (line 513) | public Criteria andNickNameNotBetween(String value1, String value2) { method andNoteIsNull (line 518) | public Criteria andNoteIsNull() { method andNoteIsNotNull (line 523) | public Criteria andNoteIsNotNull() { method andNoteEqualTo (line 528) | public Criteria andNoteEqualTo(String value) { method andNoteNotEqualTo (line 533) | public Criteria andNoteNotEqualTo(String value) { method andNoteGreaterThan (line 538) | public Criteria andNoteGreaterThan(String value) { method andNoteGreaterThanOrEqualTo (line 543) | public Criteria andNoteGreaterThanOrEqualTo(String value) { method andNoteLessThan (line 548) | public Criteria andNoteLessThan(String value) { method andNoteLessThanOrEqualTo (line 553) | public Criteria andNoteLessThanOrEqualTo(String value) { method andNoteLike (line 558) | public Criteria andNoteLike(String value) { method andNoteNotLike (line 563) | public Criteria andNoteNotLike(String value) { method andNoteIn (line 568) | public Criteria andNoteIn(List values) { method andNoteNotIn (line 573) | public Criteria andNoteNotIn(List values) { method andNoteBetween (line 578) | public Criteria andNoteBetween(String value1, String value2) { method andNoteNotBetween (line 583) | public Criteria andNoteNotBetween(String value1, String value2) { method andCreateTimeIsNull (line 588) | public Criteria andCreateTimeIsNull() { method andCreateTimeIsNotNull (line 593) | public Criteria andCreateTimeIsNotNull() { method andCreateTimeEqualTo (line 598) | public Criteria andCreateTimeEqualTo(Date value) { method andCreateTimeNotEqualTo (line 603) | public Criteria andCreateTimeNotEqualTo(Date value) { method andCreateTimeGreaterThan (line 608) | public Criteria andCreateTimeGreaterThan(Date value) { method andCreateTimeGreaterThanOrEqualTo (line 613) | public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { method andCreateTimeLessThan (line 618) | public Criteria andCreateTimeLessThan(Date value) { method andCreateTimeLessThanOrEqualTo (line 623) | public Criteria andCreateTimeLessThanOrEqualTo(Date value) { method andCreateTimeIn (line 628) | public Criteria andCreateTimeIn(List values) { method andCreateTimeNotIn (line 633) | public Criteria andCreateTimeNotIn(List values) { method andCreateTimeBetween (line 638) | public Criteria andCreateTimeBetween(Date value1, Date value2) { method andCreateTimeNotBetween (line 643) | public Criteria andCreateTimeNotBetween(Date value1, Date value2) { method andLoginTimeIsNull (line 648) | public Criteria andLoginTimeIsNull() { method andLoginTimeIsNotNull (line 653) | public Criteria andLoginTimeIsNotNull() { method andLoginTimeEqualTo (line 658) | public Criteria andLoginTimeEqualTo(Date value) { method andLoginTimeNotEqualTo (line 663) | public Criteria andLoginTimeNotEqualTo(Date value) { method andLoginTimeGreaterThan (line 668) | public Criteria andLoginTimeGreaterThan(Date value) { method andLoginTimeGreaterThanOrEqualTo (line 673) | public Criteria andLoginTimeGreaterThanOrEqualTo(Date value) { method andLoginTimeLessThan (line 678) | public Criteria andLoginTimeLessThan(Date value) { method andLoginTimeLessThanOrEqualTo (line 683) | public Criteria andLoginTimeLessThanOrEqualTo(Date value) { method andLoginTimeIn (line 688) | public Criteria andLoginTimeIn(List values) { method andLoginTimeNotIn (line 693) | public Criteria andLoginTimeNotIn(List values) { method andLoginTimeBetween (line 698) | public Criteria andLoginTimeBetween(Date value1, Date value2) { method andLoginTimeNotBetween (line 703) | public Criteria andLoginTimeNotBetween(Date value1, Date value2) { method andStatusIsNull (line 708) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 713) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 718) | public Criteria andStatusEqualTo(Integer value) { method andStatusNotEqualTo (line 723) | public Criteria andStatusNotEqualTo(Integer value) { method andStatusGreaterThan (line 728) | public Criteria andStatusGreaterThan(Integer value) { method andStatusGreaterThanOrEqualTo (line 733) | public Criteria andStatusGreaterThanOrEqualTo(Integer value) { method andStatusLessThan (line 738) | public Criteria andStatusLessThan(Integer value) { method andStatusLessThanOrEqualTo (line 743) | public Criteria andStatusLessThanOrEqualTo(Integer value) { method andStatusIn (line 748) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 753) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 758) | public Criteria andStatusBetween(Integer value1, Integer value2) { method andStatusNotBetween (line 763) | public Criteria andStatusNotBetween(Integer value1, Integer value2) { class Criteria (line 769) | public static class Criteria extends GeneratedCriteria { method Criteria (line 770) | protected Criteria() { class Criterion (line 775) | public static class Criterion { method getCondition (line 792) | public String getCondition() { method getValue (line 796) | public Object getValue() { method getSecondValue (line 800) | public Object getSecondValue() { method isNoValue (line 804) | public boolean isNoValue() { method isSingleValue (line 808) | public boolean isSingleValue() { method isBetweenValue (line 812) | public boolean isBetweenValue() { method isListValue (line 816) | public boolean isListValue() { method getTypeHandler (line 820) | public String getTypeHandler() { method Criterion (line 824) | protected Criterion(String condition) { method Criterion (line 831) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 843) | protected Criterion(String condition, Object value) { method Criterion (line 847) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 856) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsAdminRoleRelation.java class UmsAdminRoleRelation (line 6) | public class UmsAdminRoleRelation implements Serializable { method getId (line 15) | public Long getId() { method setId (line 19) | public void setId(Long id) { method getAdminId (line 23) | public Long getAdminId() { method setAdminId (line 27) | public void setAdminId(Long adminId) { method getRoleId (line 31) | public Long getRoleId() { method setRoleId (line 35) | public void setRoleId(Long roleId) { method toString (line 39) | @Override FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsAdminRoleRelationExample.java class UmsAdminRoleRelationExample (line 6) | public class UmsAdminRoleRelationExample { method UmsAdminRoleRelationExample (line 13) | public UmsAdminRoleRelationExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andAdminIdIsNull (line 167) | public Criteria andAdminIdIsNull() { method andAdminIdIsNotNull (line 172) | public Criteria andAdminIdIsNotNull() { method andAdminIdEqualTo (line 177) | public Criteria andAdminIdEqualTo(Long value) { method andAdminIdNotEqualTo (line 182) | public Criteria andAdminIdNotEqualTo(Long value) { method andAdminIdGreaterThan (line 187) | public Criteria andAdminIdGreaterThan(Long value) { method andAdminIdGreaterThanOrEqualTo (line 192) | public Criteria andAdminIdGreaterThanOrEqualTo(Long value) { method andAdminIdLessThan (line 197) | public Criteria andAdminIdLessThan(Long value) { method andAdminIdLessThanOrEqualTo (line 202) | public Criteria andAdminIdLessThanOrEqualTo(Long value) { method andAdminIdIn (line 207) | public Criteria andAdminIdIn(List values) { method andAdminIdNotIn (line 212) | public Criteria andAdminIdNotIn(List values) { method andAdminIdBetween (line 217) | public Criteria andAdminIdBetween(Long value1, Long value2) { method andAdminIdNotBetween (line 222) | public Criteria andAdminIdNotBetween(Long value1, Long value2) { method andRoleIdIsNull (line 227) | public Criteria andRoleIdIsNull() { method andRoleIdIsNotNull (line 232) | public Criteria andRoleIdIsNotNull() { method andRoleIdEqualTo (line 237) | public Criteria andRoleIdEqualTo(Long value) { method andRoleIdNotEqualTo (line 242) | public Criteria andRoleIdNotEqualTo(Long value) { method andRoleIdGreaterThan (line 247) | public Criteria andRoleIdGreaterThan(Long value) { method andRoleIdGreaterThanOrEqualTo (line 252) | public Criteria andRoleIdGreaterThanOrEqualTo(Long value) { method andRoleIdLessThan (line 257) | public Criteria andRoleIdLessThan(Long value) { method andRoleIdLessThanOrEqualTo (line 262) | public Criteria andRoleIdLessThanOrEqualTo(Long value) { method andRoleIdIn (line 267) | public Criteria andRoleIdIn(List values) { method andRoleIdNotIn (line 272) | public Criteria andRoleIdNotIn(List values) { method andRoleIdBetween (line 277) | public Criteria andRoleIdBetween(Long value1, Long value2) { method andRoleIdNotBetween (line 282) | public Criteria andRoleIdNotBetween(Long value1, Long value2) { class Criteria (line 288) | public static class Criteria extends GeneratedCriteria { method Criteria (line 289) | protected Criteria() { class Criterion (line 294) | public static class Criterion { method getCondition (line 311) | public String getCondition() { method getValue (line 315) | public Object getValue() { method getSecondValue (line 319) | public Object getSecondValue() { method isNoValue (line 323) | public boolean isNoValue() { method isSingleValue (line 327) | public boolean isSingleValue() { method isBetweenValue (line 331) | public boolean isBetweenValue() { method isListValue (line 335) | public boolean isListValue() { method getTypeHandler (line 339) | public String getTypeHandler() { method Criterion (line 343) | protected Criterion(String condition) { method Criterion (line 350) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 362) | protected Criterion(String condition, Object value) { method Criterion (line 366) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 375) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsResource.java class UmsResource (line 7) | public class UmsResource implements Serializable { method getId (line 27) | public Long getId() { method setId (line 31) | public void setId(Long id) { method getCreateTime (line 35) | public Date getCreateTime() { method setCreateTime (line 39) | public void setCreateTime(Date createTime) { method getName (line 43) | public String getName() { method setName (line 47) | public void setName(String name) { method getUrl (line 51) | public String getUrl() { method setUrl (line 55) | public void setUrl(String url) { method getDescription (line 59) | public String getDescription() { method setDescription (line 63) | public void setDescription(String description) { method getCategoryId (line 67) | public Long getCategoryId() { method setCategoryId (line 71) | public void setCategoryId(Long categoryId) { method toString (line 75) | @Override FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsResourceCategory.java class UmsResourceCategory (line 7) | public class UmsResourceCategory implements Serializable { method getId (line 21) | public Long getId() { method setId (line 25) | public void setId(Long id) { method getCreateTime (line 29) | public Date getCreateTime() { method setCreateTime (line 33) | public void setCreateTime(Date createTime) { method getName (line 37) | public String getName() { method setName (line 41) | public void setName(String name) { method getSort (line 45) | public Integer getSort() { method setSort (line 49) | public void setSort(Integer sort) { method toString (line 53) | @Override FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsResourceCategoryExample.java class UmsResourceCategoryExample (line 7) | public class UmsResourceCategoryExample { method UmsResourceCategoryExample (line 14) | public UmsResourceCategoryExample() { method setOrderByClause (line 18) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 22) | public String getOrderByClause() { method setDistinct (line 26) | public void setDistinct(boolean distinct) { method isDistinct (line 30) | public boolean isDistinct() { method getOredCriteria (line 34) | public List getOredCriteria() { method or (line 38) | public void or(Criteria criteria) { method or (line 42) | public Criteria or() { method createCriteria (line 48) | public Criteria createCriteria() { method createCriteriaInternal (line 56) | protected Criteria createCriteriaInternal() { method clear (line 61) | public void clear() { class GeneratedCriteria (line 67) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 70) | protected GeneratedCriteria() { method isValid (line 75) | public boolean isValid() { method getAllCriteria (line 79) | public List getAllCriteria() { method getCriteria (line 83) | public List getCriteria() { method addCriterion (line 87) | protected void addCriterion(String condition) { method addCriterion (line 94) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 101) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 108) | public Criteria andIdIsNull() { method andIdIsNotNull (line 113) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 118) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 123) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 128) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 133) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 138) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 143) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 148) | public Criteria andIdIn(List values) { method andIdNotIn (line 153) | public Criteria andIdNotIn(List values) { method andIdBetween (line 158) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 163) | public Criteria andIdNotBetween(Long value1, Long value2) { method andCreateTimeIsNull (line 168) | public Criteria andCreateTimeIsNull() { method andCreateTimeIsNotNull (line 173) | public Criteria andCreateTimeIsNotNull() { method andCreateTimeEqualTo (line 178) | public Criteria andCreateTimeEqualTo(Date value) { method andCreateTimeNotEqualTo (line 183) | public Criteria andCreateTimeNotEqualTo(Date value) { method andCreateTimeGreaterThan (line 188) | public Criteria andCreateTimeGreaterThan(Date value) { method andCreateTimeGreaterThanOrEqualTo (line 193) | public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { method andCreateTimeLessThan (line 198) | public Criteria andCreateTimeLessThan(Date value) { method andCreateTimeLessThanOrEqualTo (line 203) | public Criteria andCreateTimeLessThanOrEqualTo(Date value) { method andCreateTimeIn (line 208) | public Criteria andCreateTimeIn(List values) { method andCreateTimeNotIn (line 213) | public Criteria andCreateTimeNotIn(List values) { method andCreateTimeBetween (line 218) | public Criteria andCreateTimeBetween(Date value1, Date value2) { method andCreateTimeNotBetween (line 223) | public Criteria andCreateTimeNotBetween(Date value1, Date value2) { method andNameIsNull (line 228) | public Criteria andNameIsNull() { method andNameIsNotNull (line 233) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 238) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 243) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 248) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 253) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 258) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 263) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 268) | public Criteria andNameLike(String value) { method andNameNotLike (line 273) | public Criteria andNameNotLike(String value) { method andNameIn (line 278) | public Criteria andNameIn(List values) { method andNameNotIn (line 283) | public Criteria andNameNotIn(List values) { method andNameBetween (line 288) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 293) | public Criteria andNameNotBetween(String value1, String value2) { method andSortIsNull (line 298) | public Criteria andSortIsNull() { method andSortIsNotNull (line 303) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 308) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 313) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 318) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 323) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 328) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 333) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 338) | public Criteria andSortIn(List values) { method andSortNotIn (line 343) | public Criteria andSortNotIn(List values) { method andSortBetween (line 348) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 353) | public Criteria andSortNotBetween(Integer value1, Integer value2) { class Criteria (line 359) | public static class Criteria extends GeneratedCriteria { method Criteria (line 360) | protected Criteria() { class Criterion (line 365) | public static class Criterion { method getCondition (line 382) | public String getCondition() { method getValue (line 386) | public Object getValue() { method getSecondValue (line 390) | public Object getSecondValue() { method isNoValue (line 394) | public boolean isNoValue() { method isSingleValue (line 398) | public boolean isSingleValue() { method isBetweenValue (line 402) | public boolean isBetweenValue() { method isListValue (line 406) | public boolean isListValue() { method getTypeHandler (line 410) | public String getTypeHandler() { method Criterion (line 414) | protected Criterion(String condition) { method Criterion (line 421) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 433) | protected Criterion(String condition, Object value) { method Criterion (line 437) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 446) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsResourceExample.java class UmsResourceExample (line 7) | public class UmsResourceExample { method UmsResourceExample (line 14) | public UmsResourceExample() { method setOrderByClause (line 18) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 22) | public String getOrderByClause() { method setDistinct (line 26) | public void setDistinct(boolean distinct) { method isDistinct (line 30) | public boolean isDistinct() { method getOredCriteria (line 34) | public List getOredCriteria() { method or (line 38) | public void or(Criteria criteria) { method or (line 42) | public Criteria or() { method createCriteria (line 48) | public Criteria createCriteria() { method createCriteriaInternal (line 56) | protected Criteria createCriteriaInternal() { method clear (line 61) | public void clear() { class GeneratedCriteria (line 67) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 70) | protected GeneratedCriteria() { method isValid (line 75) | public boolean isValid() { method getAllCriteria (line 79) | public List getAllCriteria() { method getCriteria (line 83) | public List getCriteria() { method addCriterion (line 87) | protected void addCriterion(String condition) { method addCriterion (line 94) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 101) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 108) | public Criteria andIdIsNull() { method andIdIsNotNull (line 113) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 118) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 123) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 128) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 133) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 138) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 143) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 148) | public Criteria andIdIn(List values) { method andIdNotIn (line 153) | public Criteria andIdNotIn(List values) { method andIdBetween (line 158) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 163) | public Criteria andIdNotBetween(Long value1, Long value2) { method andCreateTimeIsNull (line 168) | public Criteria andCreateTimeIsNull() { method andCreateTimeIsNotNull (line 173) | public Criteria andCreateTimeIsNotNull() { method andCreateTimeEqualTo (line 178) | public Criteria andCreateTimeEqualTo(Date value) { method andCreateTimeNotEqualTo (line 183) | public Criteria andCreateTimeNotEqualTo(Date value) { method andCreateTimeGreaterThan (line 188) | public Criteria andCreateTimeGreaterThan(Date value) { method andCreateTimeGreaterThanOrEqualTo (line 193) | public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { method andCreateTimeLessThan (line 198) | public Criteria andCreateTimeLessThan(Date value) { method andCreateTimeLessThanOrEqualTo (line 203) | public Criteria andCreateTimeLessThanOrEqualTo(Date value) { method andCreateTimeIn (line 208) | public Criteria andCreateTimeIn(List values) { method andCreateTimeNotIn (line 213) | public Criteria andCreateTimeNotIn(List values) { method andCreateTimeBetween (line 218) | public Criteria andCreateTimeBetween(Date value1, Date value2) { method andCreateTimeNotBetween (line 223) | public Criteria andCreateTimeNotBetween(Date value1, Date value2) { method andNameIsNull (line 228) | public Criteria andNameIsNull() { method andNameIsNotNull (line 233) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 238) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 243) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 248) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 253) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 258) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 263) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 268) | public Criteria andNameLike(String value) { method andNameNotLike (line 273) | public Criteria andNameNotLike(String value) { method andNameIn (line 278) | public Criteria andNameIn(List values) { method andNameNotIn (line 283) | public Criteria andNameNotIn(List values) { method andNameBetween (line 288) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 293) | public Criteria andNameNotBetween(String value1, String value2) { method andUrlIsNull (line 298) | public Criteria andUrlIsNull() { method andUrlIsNotNull (line 303) | public Criteria andUrlIsNotNull() { method andUrlEqualTo (line 308) | public Criteria andUrlEqualTo(String value) { method andUrlNotEqualTo (line 313) | public Criteria andUrlNotEqualTo(String value) { method andUrlGreaterThan (line 318) | public Criteria andUrlGreaterThan(String value) { method andUrlGreaterThanOrEqualTo (line 323) | public Criteria andUrlGreaterThanOrEqualTo(String value) { method andUrlLessThan (line 328) | public Criteria andUrlLessThan(String value) { method andUrlLessThanOrEqualTo (line 333) | public Criteria andUrlLessThanOrEqualTo(String value) { method andUrlLike (line 338) | public Criteria andUrlLike(String value) { method andUrlNotLike (line 343) | public Criteria andUrlNotLike(String value) { method andUrlIn (line 348) | public Criteria andUrlIn(List values) { method andUrlNotIn (line 353) | public Criteria andUrlNotIn(List values) { method andUrlBetween (line 358) | public Criteria andUrlBetween(String value1, String value2) { method andUrlNotBetween (line 363) | public Criteria andUrlNotBetween(String value1, String value2) { method andDescriptionIsNull (line 368) | public Criteria andDescriptionIsNull() { method andDescriptionIsNotNull (line 373) | public Criteria andDescriptionIsNotNull() { method andDescriptionEqualTo (line 378) | public Criteria andDescriptionEqualTo(String value) { method andDescriptionNotEqualTo (line 383) | public Criteria andDescriptionNotEqualTo(String value) { method andDescriptionGreaterThan (line 388) | public Criteria andDescriptionGreaterThan(String value) { method andDescriptionGreaterThanOrEqualTo (line 393) | public Criteria andDescriptionGreaterThanOrEqualTo(String value) { method andDescriptionLessThan (line 398) | public Criteria andDescriptionLessThan(String value) { method andDescriptionLessThanOrEqualTo (line 403) | public Criteria andDescriptionLessThanOrEqualTo(String value) { method andDescriptionLike (line 408) | public Criteria andDescriptionLike(String value) { method andDescriptionNotLike (line 413) | public Criteria andDescriptionNotLike(String value) { method andDescriptionIn (line 418) | public Criteria andDescriptionIn(List values) { method andDescriptionNotIn (line 423) | public Criteria andDescriptionNotIn(List values) { method andDescriptionBetween (line 428) | public Criteria andDescriptionBetween(String value1, String value2) { method andDescriptionNotBetween (line 433) | public Criteria andDescriptionNotBetween(String value1, String value... method andCategoryIdIsNull (line 438) | public Criteria andCategoryIdIsNull() { method andCategoryIdIsNotNull (line 443) | public Criteria andCategoryIdIsNotNull() { method andCategoryIdEqualTo (line 448) | public Criteria andCategoryIdEqualTo(Long value) { method andCategoryIdNotEqualTo (line 453) | public Criteria andCategoryIdNotEqualTo(Long value) { method andCategoryIdGreaterThan (line 458) | public Criteria andCategoryIdGreaterThan(Long value) { method andCategoryIdGreaterThanOrEqualTo (line 463) | public Criteria andCategoryIdGreaterThanOrEqualTo(Long value) { method andCategoryIdLessThan (line 468) | public Criteria andCategoryIdLessThan(Long value) { method andCategoryIdLessThanOrEqualTo (line 473) | public Criteria andCategoryIdLessThanOrEqualTo(Long value) { method andCategoryIdIn (line 478) | public Criteria andCategoryIdIn(List values) { method andCategoryIdNotIn (line 483) | public Criteria andCategoryIdNotIn(List values) { method andCategoryIdBetween (line 488) | public Criteria andCategoryIdBetween(Long value1, Long value2) { method andCategoryIdNotBetween (line 493) | public Criteria andCategoryIdNotBetween(Long value1, Long value2) { class Criteria (line 499) | public static class Criteria extends GeneratedCriteria { method Criteria (line 500) | protected Criteria() { class Criterion (line 505) | public static class Criterion { method getCondition (line 522) | public String getCondition() { method getValue (line 526) | public Object getValue() { method getSecondValue (line 530) | public Object getSecondValue() { method isNoValue (line 534) | public boolean isNoValue() { method isSingleValue (line 538) | public boolean isSingleValue() { method isBetweenValue (line 542) | public boolean isBetweenValue() { method isListValue (line 546) | public boolean isListValue() { method getTypeHandler (line 550) | public String getTypeHandler() { method Criterion (line 554) | protected Criterion(String condition) { method Criterion (line 561) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 573) | protected Criterion(String condition, Object value) { method Criterion (line 577) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 586) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsRole.java class UmsRole (line 7) | public class UmsRole implements Serializable { method getId (line 29) | public Long getId() { method setId (line 33) | public void setId(Long id) { method getName (line 37) | public String getName() { method setName (line 41) | public void setName(String name) { method getDescription (line 45) | public String getDescription() { method setDescription (line 49) | public void setDescription(String description) { method getAdminCount (line 53) | public Integer getAdminCount() { method setAdminCount (line 57) | public void setAdminCount(Integer adminCount) { method getCreateTime (line 61) | public Date getCreateTime() { method setCreateTime (line 65) | public void setCreateTime(Date createTime) { method getStatus (line 69) | public Integer getStatus() { method setStatus (line 73) | public void setStatus(Integer status) { method getSort (line 77) | public Integer getSort() { method setSort (line 81) | public void setSort(Integer sort) { method toString (line 85) | @Override FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/mbg/model/UmsRoleExample.java class UmsRoleExample (line 7) | public class UmsRoleExample { method UmsRoleExample (line 14) | public UmsRoleExample() { method setOrderByClause (line 18) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 22) | public String getOrderByClause() { method setDistinct (line 26) | public void setDistinct(boolean distinct) { method isDistinct (line 30) | public boolean isDistinct() { method getOredCriteria (line 34) | public List getOredCriteria() { method or (line 38) | public void or(Criteria criteria) { method or (line 42) | public Criteria or() { method createCriteria (line 48) | public Criteria createCriteria() { method createCriteriaInternal (line 56) | protected Criteria createCriteriaInternal() { method clear (line 61) | public void clear() { class GeneratedCriteria (line 67) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 70) | protected GeneratedCriteria() { method isValid (line 75) | public boolean isValid() { method getAllCriteria (line 79) | public List getAllCriteria() { method getCriteria (line 83) | public List getCriteria() { method addCriterion (line 87) | protected void addCriterion(String condition) { method addCriterion (line 94) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 101) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 108) | public Criteria andIdIsNull() { method andIdIsNotNull (line 113) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 118) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 123) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 128) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 133) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 138) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 143) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 148) | public Criteria andIdIn(List values) { method andIdNotIn (line 153) | public Criteria andIdNotIn(List values) { method andIdBetween (line 158) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 163) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 168) | public Criteria andNameIsNull() { method andNameIsNotNull (line 173) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 178) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 183) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 188) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 193) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 198) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 203) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 208) | public Criteria andNameLike(String value) { method andNameNotLike (line 213) | public Criteria andNameNotLike(String value) { method andNameIn (line 218) | public Criteria andNameIn(List values) { method andNameNotIn (line 223) | public Criteria andNameNotIn(List values) { method andNameBetween (line 228) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 233) | public Criteria andNameNotBetween(String value1, String value2) { method andDescriptionIsNull (line 238) | public Criteria andDescriptionIsNull() { method andDescriptionIsNotNull (line 243) | public Criteria andDescriptionIsNotNull() { method andDescriptionEqualTo (line 248) | public Criteria andDescriptionEqualTo(String value) { method andDescriptionNotEqualTo (line 253) | public Criteria andDescriptionNotEqualTo(String value) { method andDescriptionGreaterThan (line 258) | public Criteria andDescriptionGreaterThan(String value) { method andDescriptionGreaterThanOrEqualTo (line 263) | public Criteria andDescriptionGreaterThanOrEqualTo(String value) { method andDescriptionLessThan (line 268) | public Criteria andDescriptionLessThan(String value) { method andDescriptionLessThanOrEqualTo (line 273) | public Criteria andDescriptionLessThanOrEqualTo(String value) { method andDescriptionLike (line 278) | public Criteria andDescriptionLike(String value) { method andDescriptionNotLike (line 283) | public Criteria andDescriptionNotLike(String value) { method andDescriptionIn (line 288) | public Criteria andDescriptionIn(List values) { method andDescriptionNotIn (line 293) | public Criteria andDescriptionNotIn(List values) { method andDescriptionBetween (line 298) | public Criteria andDescriptionBetween(String value1, String value2) { method andDescriptionNotBetween (line 303) | public Criteria andDescriptionNotBetween(String value1, String value... method andAdminCountIsNull (line 308) | public Criteria andAdminCountIsNull() { method andAdminCountIsNotNull (line 313) | public Criteria andAdminCountIsNotNull() { method andAdminCountEqualTo (line 318) | public Criteria andAdminCountEqualTo(Integer value) { method andAdminCountNotEqualTo (line 323) | public Criteria andAdminCountNotEqualTo(Integer value) { method andAdminCountGreaterThan (line 328) | public Criteria andAdminCountGreaterThan(Integer value) { method andAdminCountGreaterThanOrEqualTo (line 333) | public Criteria andAdminCountGreaterThanOrEqualTo(Integer value) { method andAdminCountLessThan (line 338) | public Criteria andAdminCountLessThan(Integer value) { method andAdminCountLessThanOrEqualTo (line 343) | public Criteria andAdminCountLessThanOrEqualTo(Integer value) { method andAdminCountIn (line 348) | public Criteria andAdminCountIn(List values) { method andAdminCountNotIn (line 353) | public Criteria andAdminCountNotIn(List values) { method andAdminCountBetween (line 358) | public Criteria andAdminCountBetween(Integer value1, Integer value2) { method andAdminCountNotBetween (line 363) | public Criteria andAdminCountNotBetween(Integer value1, Integer valu... method andCreateTimeIsNull (line 368) | public Criteria andCreateTimeIsNull() { method andCreateTimeIsNotNull (line 373) | public Criteria andCreateTimeIsNotNull() { method andCreateTimeEqualTo (line 378) | public Criteria andCreateTimeEqualTo(Date value) { method andCreateTimeNotEqualTo (line 383) | public Criteria andCreateTimeNotEqualTo(Date value) { method andCreateTimeGreaterThan (line 388) | public Criteria andCreateTimeGreaterThan(Date value) { method andCreateTimeGreaterThanOrEqualTo (line 393) | public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { method andCreateTimeLessThan (line 398) | public Criteria andCreateTimeLessThan(Date value) { method andCreateTimeLessThanOrEqualTo (line 403) | public Criteria andCreateTimeLessThanOrEqualTo(Date value) { method andCreateTimeIn (line 408) | public Criteria andCreateTimeIn(List values) { method andCreateTimeNotIn (line 413) | public Criteria andCreateTimeNotIn(List values) { method andCreateTimeBetween (line 418) | public Criteria andCreateTimeBetween(Date value1, Date value2) { method andCreateTimeNotBetween (line 423) | public Criteria andCreateTimeNotBetween(Date value1, Date value2) { method andStatusIsNull (line 428) | public Criteria andStatusIsNull() { method andStatusIsNotNull (line 433) | public Criteria andStatusIsNotNull() { method andStatusEqualTo (line 438) | public Criteria andStatusEqualTo(Integer value) { method andStatusNotEqualTo (line 443) | public Criteria andStatusNotEqualTo(Integer value) { method andStatusGreaterThan (line 448) | public Criteria andStatusGreaterThan(Integer value) { method andStatusGreaterThanOrEqualTo (line 453) | public Criteria andStatusGreaterThanOrEqualTo(Integer value) { method andStatusLessThan (line 458) | public Criteria andStatusLessThan(Integer value) { method andStatusLessThanOrEqualTo (line 463) | public Criteria andStatusLessThanOrEqualTo(Integer value) { method andStatusIn (line 468) | public Criteria andStatusIn(List values) { method andStatusNotIn (line 473) | public Criteria andStatusNotIn(List values) { method andStatusBetween (line 478) | public Criteria andStatusBetween(Integer value1, Integer value2) { method andStatusNotBetween (line 483) | public Criteria andStatusNotBetween(Integer value1, Integer value2) { method andSortIsNull (line 488) | public Criteria andSortIsNull() { method andSortIsNotNull (line 493) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 498) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 503) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 508) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 513) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 518) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 523) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 528) | public Criteria andSortIn(List values) { method andSortNotIn (line 533) | public Criteria andSortNotIn(List values) { method andSortBetween (line 538) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 543) | public Criteria andSortNotBetween(Integer value1, Integer value2) { class Criteria (line 549) | public static class Criteria extends GeneratedCriteria { method Criteria (line 550) | protected Criteria() { class Criterion (line 555) | public static class Criterion { method getCondition (line 572) | public String getCondition() { method getValue (line 576) | public Object getValue() { method getSecondValue (line 580) | public Object getSecondValue() { method isNoValue (line 584) | public boolean isNoValue() { method isSingleValue (line 588) | public boolean isSingleValue() { method isBetweenValue (line 592) | public boolean isBetweenValue() { method isListValue (line 596) | public boolean isListValue() { method getTypeHandler (line 600) | public String getTypeHandler() { method Criterion (line 604) | protected Criterion(String condition) { method Criterion (line 611) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 623) | protected Criterion(String condition, Object value) { method Criterion (line 627) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 636) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 16) | public interface UmsAdminService { method create (line 17) | void create(UmsAdmin entity); method update (line 19) | void update(UmsAdmin entity); method delete (line 21) | void delete(Long id); method select (line 23) | UmsAdmin select(Long id); method listAll (line 25) | List listAll(Integer pageNum, Integer pageSize); method list (line 27) | List list(Integer pageNum, Integer pageSize, String username... method subList (line 29) | List subList(Long roleId); method groupList (line 31) | List groupList(); method deleteByUsername (line 33) | void deleteByUsername(String username); method updateByIds (line 35) | void updateByIds(List ids,Integer status); method selectWithRoleList (line 37) | AdminRoleDto selectWithRoleList(Long id); method selectResourceWithCate (line 39) | ResourceWithCateDto selectResourceWithCate(Long id); FILE: mall-tiny-generator/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 24) | @Service method create (line 31) | @Override method update (line 36) | @Override method delete (line 41) | @Override method select (line 46) | @Override method listAll (line 51) | @Override method list (line 57) | @Override method subList (line 70) | @Override method groupList (line 75) | @Override method deleteByUsername (line 80) | @Override method updateByIds (line 87) | @Override method selectWithRoleList (line 96) | @Override method selectResourceWithCate (line 101) | @Override FILE: mall-tiny-generator/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-hutool/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-hutool/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 7) | public class CommonResult { method CommonResult (line 12) | protected CommonResult() { method CommonResult (line 15) | protected CommonResult(long code, String message, T data) { method success (line 26) | public static CommonResult success(T data) { method success (line 36) | public static CommonResult success(T data, String message) { method failed (line 44) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 52) | public static CommonResult failed(String message) { method failed (line 59) | public static CommonResult failed() { method validateFailed (line 66) | public static CommonResult validateFailed() { method validateFailed (line 74) | public static CommonResult validateFailed(String message) { method unauthorized (line 81) | public static CommonResult unauthorized(T data) { method forbidden (line 88) | public static CommonResult forbidden(T data) { method getCode (line 92) | public long getCode() { method setCode (line 96) | public void setCode(long code) { method getMessage (line 100) | public String getMessage() { method setMessage (line 104) | public void setMessage(String message) { method getData (line 108) | public T getData() { method setData (line 112) | public void setData(T data) { FILE: mall-tiny-hutool/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 7) | public interface IErrorCode { method getCode (line 8) | long getCode(); method getMessage (line 10) | String getMessage(); FILE: mall-tiny-hutool/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 7) | public enum ResultCode implements IErrorCode { method ResultCode (line 16) | private ResultCode(long code, String message) { method getCode (line 21) | public long getCode() { method getMessage (line 25) | public String getMessage() { FILE: mall-tiny-hutool/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method generateBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-hutool/src/main/java/com/macro/mall/tiny/controller/HutoolController.java class HutoolController (line 49) | @RestController method covert (line 57) | @ApiOperation("Convert使用:类型转换工具类") method dateUtil (line 75) | @ApiOperation("DateUtil使用:日期时间工具") method strUtil (line 106) | @ApiOperation("StrUtil使用:字符串工具") method classPath (line 123) | @ApiOperation("ClassPath单一资源访问类:在classPath下查找文件") method reflectUtil (line 134) | @ApiOperation("ReflectUtil使用:Java反射工具类") method numberUtil (line 148) | @ApiOperation("NumberUtil使用:数字处理工具类") method beanUtil (line 169) | @ApiOperation("BeanUtil使用:JavaBean的工具类") method collUtil (line 189) | @ApiOperation("CollUtil使用:集合工具类") method mapUtil (line 210) | @ApiOperation("MapUtil使用:Map工具类") method annotationUtil (line 225) | @ApiOperation("AnnotationUtil使用:注解工具类") method jsonUtil (line 240) | @ApiOperation("JSONUtil使用:JSON解析工具类") method secureUtil (line 262) | @ApiOperation("SecureUtil使用:加密解密工具类") method bCrypt (line 272) | @ApiOperation("BCrypt使用:BCrypt加密工具类") method captchaUtil (line 285) | @ApiOperation("CaptchaUtil使用:图形验证码") method validator (line 302) | @ApiOperation("Validator使用:字段验证器") method digestUtil (line 329) | @ApiOperation("DigestUtil使用:摘要算法工具类") method httpUtil (line 346) | @ApiOperation("HttpUtil使用:Http请求工具类") FILE: mall-tiny-hutool/src/main/java/com/macro/mall/tiny/domain/PmsBrand.java class PmsBrand (line 7) | public class PmsBrand implements Serializable { method getId (line 39) | public Long getId() { method setId (line 43) | public void setId(Long id) { method getName (line 47) | public String getName() { method setName (line 51) | public void setName(String name) { method getFirstLetter (line 55) | public String getFirstLetter() { method setFirstLetter (line 59) | public void setFirstLetter(String firstLetter) { method getSort (line 63) | public Integer getSort() { method setSort (line 67) | public void setSort(Integer sort) { method getFactoryStatus (line 71) | public Integer getFactoryStatus() { method setFactoryStatus (line 75) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 79) | public Integer getShowStatus() { method setShowStatus (line 83) | public void setShowStatus(Integer showStatus) { method getProductCount (line 87) | public Integer getProductCount() { method setProductCount (line 91) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 95) | public Integer getProductCommentCount() { method setProductCommentCount (line 99) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 103) | public String getLogo() { method setLogo (line 107) | public void setLogo(String logo) { method getBigPic (line 111) | public String getBigPic() { method setBigPic (line 115) | public void setBigPic(String bigPic) { method getBrandStory (line 119) | public String getBrandStory() { method setBrandStory (line 123) | public void setBrandStory(String brandStory) { method toString (line 127) | @Override FILE: mall-tiny-hutool/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method springfoxHandlerProviderBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 27) | @Controller method getBrandList (line 37) | @ApiOperation("获取所有品牌列表") method createBrand (line 44) | @ApiOperation("添加品牌") method updateBrand (line 60) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 76) | @ApiOperation("删除指定id的品牌") method listBrand (line 90) | @ApiOperation("分页查询品牌列表") method brand (line 101) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 17) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 26) | @Override method addFieldComment (line 35) | @Override method addFieldJavaDoc (line 54) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 66) | @Override FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 42) | public Long getId() { method setId (line 46) | public void setId(Long id) { method getName (line 50) | public String getName() { method setName (line 54) | public void setName(String name) { method getFirstLetter (line 58) | public String getFirstLetter() { method setFirstLetter (line 62) | public void setFirstLetter(String firstLetter) { method getSort (line 66) | public Integer getSort() { method setSort (line 70) | public void setSort(Integer sort) { method getFactoryStatus (line 74) | public Integer getFactoryStatus() { method setFactoryStatus (line 78) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 82) | public Integer getShowStatus() { method setShowStatus (line 86) | public void setShowStatus(Integer showStatus) { method getProductCount (line 90) | public Integer getProductCount() { method setProductCount (line 94) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 98) | public Integer getProductCommentCount() { method setProductCommentCount (line 102) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 106) | public String getLogo() { method setLogo (line 110) | public void setLogo(String logo) { method getBigPic (line 114) | public String getBigPic() { method setBigPic (line 118) | public void setBigPic(String bigPic) { method getBrandStory (line 122) | public String getBrandStory() { method setBrandStory (line 126) | public void setBrandStory(String brandStory) { method toString (line 130) | @Override FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-jenkins/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-jenkins/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/BuilderExample.java class BuilderExample (line 12) | @Builder method main (line 19) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/CleanupExample.java class CleanupExample (line 13) | public class CleanupExample { method main (line 14) | public static void main(String[] args) throws IOException { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/ConstructorExample.java class ConstructorExample (line 11) | @NoArgsConstructor method main (line 20) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/DataExample.java class DataExample (line 13) | @Data method main (line 22) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/EqualsAndHashCodeExample.java class EqualsAndHashCodeExample (line 13) | @Getter method main (line 23) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/GetterLazyExample.java class GetterLazyExample (line 11) | public class GetterLazyExample { method expensive (line 15) | private double[] expensive() { method main (line 23) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/GetterSetterExample.java class GetterSetterExample (line 13) | public class GetterSetterExample { method main (line 21) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/LogExample.java class LogExample (line 11) | @Log method main (line 13) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/LogSlf4jExample.java class LogSlf4jExample (line 11) | @Slf4j method main (line 13) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/NonNullExample.java class NonNullExample (line 11) | public class NonNullExample { method NonNullExample (line 13) | public NonNullExample(@NonNull String name){ method main (line 17) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/SneakyThrowsExample.java class SneakyThrowsExample (line 13) | public class SneakyThrowsExample { method str2byte (line 16) | @SneakyThrows(UnsupportedEncodingException.class) method main (line 21) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/SynchronizedExample.java class SynchronizedExample (line 11) | @Data method reduceCount (line 16) | @Synchronized method main (line 26) | public static void main(String[] args) { class ReduceThread (line 35) | @RequiredArgsConstructor method run (line 42) | @Override FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/ToStringExample.java class ToStringExample (line 11) | @ToString method ToStringExample (line 17) | public ToStringExample(Long id,String name,Integer age){ method main (line 23) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/ValExample.java class ValExample (line 15) | public class ValExample { method example (line 17) | public static void example() { method example2 (line 25) | public static void example2() { method main (line 35) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/ValueExample.java class ValueExample (line 11) | @Value method main (line 17) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/main/java/com/macro/mall/tiny/example/WithExample.java class WithExample (line 12) | @With method main (line 19) | public static void main(String[] args) { FILE: mall-tiny-lombok/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method springfoxHandlerProviderBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/dao/UmsAdminDao.java type UmsAdminDao (line 15) | @Repository method selectByIdSimple (line 21) | UmsAdmin selectByIdSimple(Long id); method selectById (line 26) | UmsAdmin selectById(Long id); method selectByIds (line 31) | List selectByIds(@Param("ids") List ids); method insert (line 36) | int insert(UmsAdmin entity); method insertBatch (line 41) | int insertBatch(@Param("entityList") List adminList); method updateById (line 46) | int updateById(UmsAdmin entity); method updateByIdSelective (line 51) | int updateByIdSelective(UmsAdmin entity); method deleteById (line 56) | int deleteById(Long id); method selectByUsernameAndEmailLike (line 62) | List selectByUsernameAndEmailLike(@Param("username") String ... method selectByUsernameAndEmailLike2 (line 68) | List selectByUsernameAndEmailLike2(@Param("username") String... method selectByUsernameAndEmailLike3 (line 74) | List selectByUsernameAndEmailLike3(@Param("username") String... FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/dao/UmsResourceCategoryDao.java type UmsResourceCategoryDao (line 12) | @Repository method selectCategoryWithResource (line 18) | UmsResourceCategoryExt selectCategoryWithResource(Long id); FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/dao/UmsResourceDao.java type UmsResourceDao (line 15) | @Repository method selectResourceWithCategory (line 20) | UmsResourceExt selectResourceWithCategory(Long id); method selectResourceWithCategory2 (line 25) | UmsResourceExt selectResourceWithCategory2(Long id); method selectListByCategoryId (line 30) | List selectListByCategoryId(Long categoryId); FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/domain/UmsResourceCategoryExt.java class UmsResourceCategoryExt (line 15) | @Data FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/domain/UmsResourceExt.java class UmsResourceExt (line 13) | @Data FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addJavaFileComment (line 52) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsAdmin.java class UmsAdmin (line 7) | public class UmsAdmin implements Serializable { method getId (line 37) | public Long getId() { method setId (line 41) | public void setId(Long id) { method getUsername (line 45) | public String getUsername() { method setUsername (line 49) | public void setUsername(String username) { method getPassword (line 53) | public String getPassword() { method setPassword (line 57) | public void setPassword(String password) { method getIcon (line 61) | public String getIcon() { method setIcon (line 65) | public void setIcon(String icon) { method getEmail (line 69) | public String getEmail() { method setEmail (line 73) | public void setEmail(String email) { method getNickName (line 77) | public String getNickName() { method setNickName (line 81) | public void setNickName(String nickName) { method getNote (line 85) | public String getNote() { method setNote (line 89) | public void setNote(String note) { method getCreateTime (line 93) | public Date getCreateTime() { method setCreateTime (line 97) | public void setCreateTime(Date createTime) { method getLoginTime (line 101) | public Date getLoginTime() { method setLoginTime (line 105) | public void setLoginTime(Date loginTime) { method getStatus (line 109) | public Integer getStatus() { method setStatus (line 113) | public void setStatus(Integer status) { method toString (line 117) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsAdminLoginLog.java class UmsAdminLoginLog (line 7) | public class UmsAdminLoginLog implements Serializable { method getId (line 23) | public Long getId() { method setId (line 27) | public void setId(Long id) { method getAdminId (line 31) | public Long getAdminId() { method setAdminId (line 35) | public void setAdminId(Long adminId) { method getCreateTime (line 39) | public Date getCreateTime() { method setCreateTime (line 43) | public void setCreateTime(Date createTime) { method getIp (line 47) | public String getIp() { method setIp (line 51) | public void setIp(String ip) { method getAddress (line 55) | public String getAddress() { method setAddress (line 59) | public void setAddress(String address) { method getUserAgent (line 63) | public String getUserAgent() { method setUserAgent (line 67) | public void setUserAgent(String userAgent) { method toString (line 71) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsAdminRoleRelation.java class UmsAdminRoleRelation (line 6) | public class UmsAdminRoleRelation implements Serializable { method getId (line 15) | public Long getId() { method setId (line 19) | public void setId(Long id) { method getAdminId (line 23) | public Long getAdminId() { method setAdminId (line 27) | public void setAdminId(Long adminId) { method getRoleId (line 31) | public Long getRoleId() { method setRoleId (line 35) | public void setRoleId(Long roleId) { method toString (line 39) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsMenu.java class UmsMenu (line 7) | public class UmsMenu implements Serializable { method getId (line 36) | public Long getId() { method setId (line 40) | public void setId(Long id) { method getParentId (line 44) | public Long getParentId() { method setParentId (line 48) | public void setParentId(Long parentId) { method getCreateTime (line 52) | public Date getCreateTime() { method setCreateTime (line 56) | public void setCreateTime(Date createTime) { method getTitle (line 60) | public String getTitle() { method setTitle (line 64) | public void setTitle(String title) { method getLevel (line 68) | public Integer getLevel() { method setLevel (line 72) | public void setLevel(Integer level) { method getSort (line 76) | public Integer getSort() { method setSort (line 80) | public void setSort(Integer sort) { method getName (line 84) | public String getName() { method setName (line 88) | public void setName(String name) { method getIcon (line 92) | public String getIcon() { method setIcon (line 96) | public void setIcon(String icon) { method getHidden (line 100) | public Integer getHidden() { method setHidden (line 104) | public void setHidden(Integer hidden) { method toString (line 108) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsResource.java class UmsResource (line 7) | public class UmsResource implements Serializable { method getId (line 27) | public Long getId() { method setId (line 31) | public void setId(Long id) { method getCreateTime (line 35) | public Date getCreateTime() { method setCreateTime (line 39) | public void setCreateTime(Date createTime) { method getName (line 43) | public String getName() { method setName (line 47) | public void setName(String name) { method getUrl (line 51) | public String getUrl() { method setUrl (line 55) | public void setUrl(String url) { method getDescription (line 59) | public String getDescription() { method setDescription (line 63) | public void setDescription(String description) { method getCategoryId (line 67) | public Long getCategoryId() { method setCategoryId (line 71) | public void setCategoryId(Long categoryId) { method toString (line 75) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsResourceCategory.java class UmsResourceCategory (line 7) | public class UmsResourceCategory implements Serializable { method getId (line 21) | public Long getId() { method setId (line 25) | public void setId(Long id) { method getCreateTime (line 29) | public Date getCreateTime() { method setCreateTime (line 33) | public void setCreateTime(Date createTime) { method getName (line 37) | public String getName() { method setName (line 41) | public void setName(String name) { method getSort (line 45) | public Integer getSort() { method setSort (line 49) | public void setSort(Integer sort) { method toString (line 53) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsRole.java class UmsRole (line 7) | public class UmsRole implements Serializable { method getId (line 29) | public Long getId() { method setId (line 33) | public void setId(Long id) { method getName (line 37) | public String getName() { method setName (line 41) | public void setName(String name) { method getDescription (line 45) | public String getDescription() { method setDescription (line 49) | public void setDescription(String description) { method getAdminCount (line 53) | public Integer getAdminCount() { method setAdminCount (line 57) | public void setAdminCount(Integer adminCount) { method getCreateTime (line 61) | public Date getCreateTime() { method setCreateTime (line 65) | public void setCreateTime(Date createTime) { method getStatus (line 69) | public Integer getStatus() { method setStatus (line 73) | public void setStatus(Integer status) { method getSort (line 77) | public Integer getSort() { method setSort (line 81) | public void setSort(Integer sort) { method toString (line 85) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsRoleMenuRelation.java class UmsRoleMenuRelation (line 6) | public class UmsRoleMenuRelation implements Serializable { method getId (line 17) | public Long getId() { method setId (line 21) | public void setId(Long id) { method getRoleId (line 25) | public Long getRoleId() { method setRoleId (line 29) | public void setRoleId(Long roleId) { method getMenuId (line 33) | public Long getMenuId() { method setMenuId (line 37) | public void setMenuId(Long menuId) { method toString (line 41) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/model/UmsRoleResourceRelation.java class UmsRoleResourceRelation (line 6) | public class UmsRoleResourceRelation implements Serializable { method getId (line 17) | public Long getId() { method setId (line 21) | public void setId(Long id) { method getRoleId (line 25) | public Long getRoleId() { method setRoleId (line 29) | public void setRoleId(Long roleId) { method getResourceId (line 33) | public Long getResourceId() { method setResourceId (line 37) | public void setResourceId(Long resourceId) { method toString (line 41) | @Override FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/service/UmsResourceService.java type UmsResourceService (line 12) | public interface UmsResourceService { method page (line 14) | PageInfo page(Integer pageNum, Integer pageSize,Long cate... FILE: mall-tiny-mybatis/src/main/java/com/macro/mall/tiny/service/impl/UmsResourceServiceImpl.java class UmsResourceServiceImpl (line 19) | @Service method page (line 25) | @Override FILE: mall-tiny-mybatis/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 9) | @ExtendWith(SpringExtension.class) method contextLoads (line 13) | @Test FILE: mall-tiny-mybatis/src/test/java/com/macro/mall/tiny/test/MyBatisAdvanceTest.java class MyBatisAdvanceTest (line 22) | @SpringBootTest method testOneToOne (line 36) | @Test method testAssociation (line 42) | @Test method testOneToMany (line 48) | @Test method testPage (line 54) | @Test FILE: mall-tiny-mybatis/src/test/java/com/macro/mall/tiny/test/MyBatisBaseTest.java class MyBatisBaseTest (line 20) | @SpringBootTest method testSelectByIdSimple (line 28) | @Test method testSelectById (line 34) | @Test method testInsert (line 40) | @Test method testUpdateById (line 53) | @Test method testDeleteById (line 67) | @Test FILE: mall-tiny-mybatis/src/test/java/com/macro/mall/tiny/test/MyBatisTagTest.java class MyBatisTagTest (line 21) | @SpringBootTest method testIf (line 29) | @Test method testChoose (line 35) | @Test method testWhere (line 41) | @Test method testSet (line 47) | @Test method testForeach (line 57) | @Test method testForeach2 (line 66) | @Test method randomAdmin (line 75) | UmsAdmin randomAdmin() { FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 14) | public class CommonPage { method restPage (line 24) | public static CommonPage restPage(Page pageResult) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 18) | @Configuration method mybatisPlusInterceptor (line 23) | @Bean FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method generateBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/generator/MyBatisPlusGenerator.java class MyBatisPlusGenerator (line 24) | public class MyBatisPlusGenerator { method main (line 26) | public static void main(String[] args) { method scanner (line 43) | private static String scanner(String tip) { method initGlobalConfig (line 58) | private static GlobalConfig initGlobalConfig(String projectPath) { method initDataSourceConfig (line 71) | private static DataSourceConfig initDataSourceConfig() { method initPackageConfig (line 85) | private static PackageConfig initPackageConfig(String projectPath,Stri... method initTemplateConfig (line 106) | private static TemplateConfig initTemplateConfig() { method initStrategyConfig (line 121) | private static StrategyConfig initStrategyConfig(String[] tableNames) { method initInjectionConfig (line 155) | private static InjectionConfig initInjectionConfig(String projectPath,... FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/modules/pms/controller/PmsBrandController.java class PmsBrandController (line 27) | @Api(tags = "PmsBrandController", description = "商品品牌管理") method getBrandList (line 37) | @ApiOperation("获取所有品牌列表") method createBrand (line 44) | @ApiOperation("添加品牌") method updateBrand (line 60) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 76) | @ApiOperation("删除指定id的品牌") method listBrand (line 90) | @ApiOperation("分页查询品牌列表") method brand (line 102) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/modules/pms/mapper/PmsBrandMapper.java type PmsBrandMapper (line 14) | public interface PmsBrandMapper extends BaseMapper { FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/modules/pms/model/PmsBrand.java class PmsBrand (line 20) | @Getter FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/modules/pms/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService extends IService { FILE: mall-tiny-plus/src/main/java/com/macro/mall/tiny/modules/pms/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 17) | @Service FILE: mall-tiny-plus/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method springfoxHandlerProviderBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/controller/RabbitController.java class RabbitController (line 25) | @Controller method simpleTest (line 42) | @ApiOperation("简单模式") method workTest (line 53) | @ApiOperation("工作模式") method fanoutTest (line 64) | @ApiOperation("发布/订阅模式") method directTest (line 75) | @ApiOperation("路由模式") method topicTest (line 86) | @ApiOperation("通配符模式") FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/direct/DirectRabbitConfig.java class DirectRabbitConfig (line 29) | @Configuration method direct (line 32) | @Bean method directQueue1 (line 37) | @Bean method directQueue2 (line 42) | @Bean method directBinding1a (line 47) | @Bean method directBinding2a (line 52) | @Bean method directBinding2b (line 57) | @Bean method receiver (line 62) | @Bean method directSender (line 68) | @Bean FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/direct/DirectReceiver.java class DirectReceiver (line 30) | public class DirectReceiver { method receive1 (line 33) | @RabbitListener(queues = "#{directQueue1.name}") method receive2 (line 38) | @RabbitListener(queues = "#{directQueue2.name}") method receive (line 43) | private void receive(String in, int receiver){ method doWork (line 52) | private void doWork(String in){ FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/direct/DirectSender.java class DirectSender (line 29) | public class DirectSender { method send (line 40) | public void send(int index) { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/fanout/FanoutRabbitConfig.java class FanoutRabbitConfig (line 29) | @Configuration method fanout (line 32) | @Bean method fanoutQueue1 (line 37) | @Bean method fanoutQueue2 (line 42) | @Bean method fanoutBinding1 (line 47) | @Bean method fanoutBinding2 (line 52) | @Bean method fanoutReceiver (line 57) | @Bean method fanoutSender (line 62) | @Bean FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/fanout/FanoutReceiver.java class FanoutReceiver (line 31) | public class FanoutReceiver { method receive1 (line 35) | @RabbitListener(queues = "#{fanoutQueue1.name}") method receive2 (line 40) | @RabbitListener(queues = "#{fanoutQueue2.name}") method receive (line 45) | private void receive(String in, int receiver) { method doWork (line 54) | private void doWork(String in) { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/fanout/FanoutSender.java class FanoutSender (line 29) | public class FanoutSender { method send (line 36) | public void send(int index) { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/simple/SimpleRabbitConfig.java class SimpleRabbitConfig (line 29) | @Configuration method hello (line 32) | @Bean method simpleSender (line 37) | @Bean method simpleReceiver (line 42) | @Bean FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/simple/SimpleReceiver.java class SimpleReceiver (line 29) | @RabbitListener(queues = "simple.hello") method receive (line 34) | @RabbitHandler FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/simple/SimpleSender.java class SimpleSender (line 29) | public class SimpleSender { method send (line 38) | public void send() { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/topic/TopicRabbitConfig.java class TopicRabbitConfig (line 29) | @Configuration method topic (line 32) | @Bean method topicQueue1 (line 37) | @Bean method topicQueue2 (line 42) | @Bean method topicBinding1a (line 47) | @Bean method topicBinding2a (line 52) | @Bean method topicBinding2b (line 57) | @Bean method topicReceiver (line 62) | @Bean method topicSender (line 67) | @Bean FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/topic/TopicReceiver.java class TopicReceiver (line 30) | public class TopicReceiver { method receive1 (line 34) | @RabbitListener(queues = "#{topicQueue1.name}") method receive2 (line 39) | @RabbitListener(queues = "#{topicQueue2.name}") method receive (line 44) | public void receive(String in, int receiver){ method doWork (line 53) | private void doWork(String in){ FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/topic/TopicSender.java class TopicSender (line 29) | public class TopicSender { method send (line 42) | public void send(int index) { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/work/WorkRabbitConfig.java class WorkRabbitConfig (line 29) | @Configuration method workQueue (line 32) | @Bean method workReceiver1 (line 37) | @Bean method workReceiver2 (line 42) | @Bean method workSender (line 47) | @Bean FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/work/WorkReceiver.java class WorkReceiver (line 31) | @RabbitListener(queues = "work.hello") method WorkReceiver (line 38) | public WorkReceiver(int i) { method receive (line 42) | @RabbitHandler method doWork (line 52) | private void doWork(String in) { FILE: mall-tiny-rabbit/src/main/java/com/macro/mall/tiny/work/WorkSender.java class WorkSender (line 29) | public class WorkSender { method send (line 38) | public void send(int index) { FILE: mall-tiny-rabbit/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/config/GlobalCorsConfig.java class GlobalCorsConfig (line 15) | @Configuration method corsFilter (line 21) | @Bean FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 29) | @EnableCaching method redisTemplate (line 38) | @Bean method redisSerializer (line 51) | @Bean method redisCacheManager (line 63) | @Bean FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method generateBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 27) | @Controller method create (line 37) | @ApiOperation("添加品牌") method update (line 53) | @ApiOperation("更新指定id品牌信息") method delete (line 69) | @ApiOperation("删除指定id的品牌") method getItem (line 83) | @ApiOperation("获取指定id的品牌详情") method list (line 90) | @ApiOperation("分页查询品牌列表") method getAll (line 101) | @ApiOperation("获取所有品牌列表") FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/controller/RedisController.java class RedisController (line 29) | @Controller method simpleTest (line 39) | @ApiOperation("测试简单缓存") method hashTest (line 51) | @ApiOperation("测试Hash结构的缓存") method setTest (line 65) | @ApiOperation("测试Set结构的缓存") method listTest (line 77) | @ApiOperation("测试List结构的缓存") FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | int countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand record); method insertSelective (line 17) | int insertSelective(PmsBrand record); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("record") PmsBrand record, @Param(... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param(... method updateByExample (line 29) | int updateByExample(@Param("record") PmsBrand record, @Param("example"... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand record); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand record); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand record); FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 750) | protected Criteria() { class Criterion (line 755) | public static class Criterion { method getCondition (line 772) | public String getCondition() { method getValue (line 776) | public Object getValue() { method getSecondValue (line 780) | public Object getSecondValue() { method isNoValue (line 784) | public boolean isNoValue() { method isSingleValue (line 788) | public boolean isSingleValue() { method isBetweenValue (line 792) | public boolean isBetweenValue() { method isListValue (line 796) | public boolean isListValue() { method getTypeHandler (line 800) | public String getTypeHandler() { method Criterion (line 804) | protected Criterion(String condition) { method Criterion (line 811) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 823) | protected Criterion(String condition, Object value) { method Criterion (line 827) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 836) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method create (line 16) | int create(PmsBrand brand); method update (line 18) | int update(Long id, PmsBrand brand); method delete (line 20) | int delete(Long id); method getItem (line 22) | PmsBrand getItem(Long id); method list (line 24) | List list(Integer pageNum, Integer pageSize); method ListAll (line 26) | List ListAll(); FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 23) | @Service method create (line 28) | @Override method update (line 33) | @CacheEvict(value = RedisConfig.REDIS_KEY_DATABASE, key = "'pms:brand:... method delete (line 40) | @CacheEvict(value = RedisConfig.REDIS_KEY_DATABASE, key = "'pms:brand:... method getItem (line 46) | @Cacheable(value = RedisConfig.REDIS_KEY_DATABASE, key = "'pms:brand:'... method list (line 52) | @Override method ListAll (line 58) | @Override FILE: mall-tiny-redis/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny-redis/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 6) | @SpringBootTest method contextLoads (line 9) | @Test FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 29) | @Configuration method createRestApi (line 31) | @Bean method apiInfo (line 41) | private ApiInfo apiInfo() { method springfoxHandlerProviderBeanPostProcessor (line 50) | @Bean FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 26) | @Api(tags = "PmsBrandController", description = "商品品牌管理") method getBrandList (line 35) | @ApiOperation("获取所有品牌列表") method createBrand (line 42) | @ApiOperation("添加品牌") method updateBrand (line 58) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 74) | @ApiOperation("删除指定id的品牌") method listBrand (line 88) | @ApiOperation("分页查询品牌列表") method brand (line 99) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/controller/UmsMenuController.java class UmsMenuController (line 22) | @Controller method treeList (line 30) | @ApiOperation("树形结构返回所有菜单列表") FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/dto/UmsMenuNode.java class UmsMenuNode (line 17) | @Getter FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/mapper/UmsMenuMapper.java type UmsMenuMapper (line 8) | public interface UmsMenuMapper { method countByExample (line 9) | long countByExample(UmsMenuExample example); method deleteByExample (line 11) | int deleteByExample(UmsMenuExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(UmsMenu row); method insertSelective (line 17) | int insertSelective(UmsMenu row); method selectByExample (line 19) | List selectByExample(UmsMenuExample example); method selectByPrimaryKey (line 21) | UmsMenu selectByPrimaryKey(Long id); method updateByExampleSelective (line 23) | int updateByExampleSelective(@Param("row") UmsMenu row, @Param("exampl... method updateByExample (line 25) | int updateByExample(@Param("row") UmsMenu row, @Param("example") UmsMe... method updateByPrimaryKeySelective (line 27) | int updateByPrimaryKeySelective(UmsMenu row); method updateByPrimaryKey (line 29) | int updateByPrimaryKey(UmsMenu row); FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/model/UmsMenu.java class UmsMenu (line 7) | public class UmsMenu implements Serializable { method getId (line 36) | public Long getId() { method setId (line 40) | public void setId(Long id) { method getParentId (line 44) | public Long getParentId() { method setParentId (line 48) | public void setParentId(Long parentId) { method getCreateTime (line 52) | public Date getCreateTime() { method setCreateTime (line 56) | public void setCreateTime(Date createTime) { method getTitle (line 60) | public String getTitle() { method setTitle (line 64) | public void setTitle(String title) { method getLevel (line 68) | public Integer getLevel() { method setLevel (line 72) | public void setLevel(Integer level) { method getSort (line 76) | public Integer getSort() { method setSort (line 80) | public void setSort(Integer sort) { method getName (line 84) | public String getName() { method setName (line 88) | public void setName(String name) { method getIcon (line 92) | public String getIcon() { method setIcon (line 96) | public void setIcon(String icon) { method getHidden (line 100) | public Integer getHidden() { method setHidden (line 104) | public void setHidden(Integer hidden) { method toString (line 108) | @Override FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/mbg/model/UmsMenuExample.java class UmsMenuExample (line 7) | public class UmsMenuExample { method UmsMenuExample (line 14) | public UmsMenuExample() { method setOrderByClause (line 18) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 22) | public String getOrderByClause() { method setDistinct (line 26) | public void setDistinct(boolean distinct) { method isDistinct (line 30) | public boolean isDistinct() { method getOredCriteria (line 34) | public List getOredCriteria() { method or (line 38) | public void or(Criteria criteria) { method or (line 42) | public Criteria or() { method createCriteria (line 48) | public Criteria createCriteria() { method createCriteriaInternal (line 56) | protected Criteria createCriteriaInternal() { method clear (line 61) | public void clear() { class GeneratedCriteria (line 67) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 70) | protected GeneratedCriteria() { method isValid (line 75) | public boolean isValid() { method getAllCriteria (line 79) | public List getAllCriteria() { method getCriteria (line 83) | public List getCriteria() { method addCriterion (line 87) | protected void addCriterion(String condition) { method addCriterion (line 94) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 101) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 108) | public Criteria andIdIsNull() { method andIdIsNotNull (line 113) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 118) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 123) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 128) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 133) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 138) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 143) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 148) | public Criteria andIdIn(List values) { method andIdNotIn (line 153) | public Criteria andIdNotIn(List values) { method andIdBetween (line 158) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 163) | public Criteria andIdNotBetween(Long value1, Long value2) { method andParentIdIsNull (line 168) | public Criteria andParentIdIsNull() { method andParentIdIsNotNull (line 173) | public Criteria andParentIdIsNotNull() { method andParentIdEqualTo (line 178) | public Criteria andParentIdEqualTo(Long value) { method andParentIdNotEqualTo (line 183) | public Criteria andParentIdNotEqualTo(Long value) { method andParentIdGreaterThan (line 188) | public Criteria andParentIdGreaterThan(Long value) { method andParentIdGreaterThanOrEqualTo (line 193) | public Criteria andParentIdGreaterThanOrEqualTo(Long value) { method andParentIdLessThan (line 198) | public Criteria andParentIdLessThan(Long value) { method andParentIdLessThanOrEqualTo (line 203) | public Criteria andParentIdLessThanOrEqualTo(Long value) { method andParentIdIn (line 208) | public Criteria andParentIdIn(List values) { method andParentIdNotIn (line 213) | public Criteria andParentIdNotIn(List values) { method andParentIdBetween (line 218) | public Criteria andParentIdBetween(Long value1, Long value2) { method andParentIdNotBetween (line 223) | public Criteria andParentIdNotBetween(Long value1, Long value2) { method andCreateTimeIsNull (line 228) | public Criteria andCreateTimeIsNull() { method andCreateTimeIsNotNull (line 233) | public Criteria andCreateTimeIsNotNull() { method andCreateTimeEqualTo (line 238) | public Criteria andCreateTimeEqualTo(Date value) { method andCreateTimeNotEqualTo (line 243) | public Criteria andCreateTimeNotEqualTo(Date value) { method andCreateTimeGreaterThan (line 248) | public Criteria andCreateTimeGreaterThan(Date value) { method andCreateTimeGreaterThanOrEqualTo (line 253) | public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { method andCreateTimeLessThan (line 258) | public Criteria andCreateTimeLessThan(Date value) { method andCreateTimeLessThanOrEqualTo (line 263) | public Criteria andCreateTimeLessThanOrEqualTo(Date value) { method andCreateTimeIn (line 268) | public Criteria andCreateTimeIn(List values) { method andCreateTimeNotIn (line 273) | public Criteria andCreateTimeNotIn(List values) { method andCreateTimeBetween (line 278) | public Criteria andCreateTimeBetween(Date value1, Date value2) { method andCreateTimeNotBetween (line 283) | public Criteria andCreateTimeNotBetween(Date value1, Date value2) { method andTitleIsNull (line 288) | public Criteria andTitleIsNull() { method andTitleIsNotNull (line 293) | public Criteria andTitleIsNotNull() { method andTitleEqualTo (line 298) | public Criteria andTitleEqualTo(String value) { method andTitleNotEqualTo (line 303) | public Criteria andTitleNotEqualTo(String value) { method andTitleGreaterThan (line 308) | public Criteria andTitleGreaterThan(String value) { method andTitleGreaterThanOrEqualTo (line 313) | public Criteria andTitleGreaterThanOrEqualTo(String value) { method andTitleLessThan (line 318) | public Criteria andTitleLessThan(String value) { method andTitleLessThanOrEqualTo (line 323) | public Criteria andTitleLessThanOrEqualTo(String value) { method andTitleLike (line 328) | public Criteria andTitleLike(String value) { method andTitleNotLike (line 333) | public Criteria andTitleNotLike(String value) { method andTitleIn (line 338) | public Criteria andTitleIn(List values) { method andTitleNotIn (line 343) | public Criteria andTitleNotIn(List values) { method andTitleBetween (line 348) | public Criteria andTitleBetween(String value1, String value2) { method andTitleNotBetween (line 353) | public Criteria andTitleNotBetween(String value1, String value2) { method andLevelIsNull (line 358) | public Criteria andLevelIsNull() { method andLevelIsNotNull (line 363) | public Criteria andLevelIsNotNull() { method andLevelEqualTo (line 368) | public Criteria andLevelEqualTo(Integer value) { method andLevelNotEqualTo (line 373) | public Criteria andLevelNotEqualTo(Integer value) { method andLevelGreaterThan (line 378) | public Criteria andLevelGreaterThan(Integer value) { method andLevelGreaterThanOrEqualTo (line 383) | public Criteria andLevelGreaterThanOrEqualTo(Integer value) { method andLevelLessThan (line 388) | public Criteria andLevelLessThan(Integer value) { method andLevelLessThanOrEqualTo (line 393) | public Criteria andLevelLessThanOrEqualTo(Integer value) { method andLevelIn (line 398) | public Criteria andLevelIn(List values) { method andLevelNotIn (line 403) | public Criteria andLevelNotIn(List values) { method andLevelBetween (line 408) | public Criteria andLevelBetween(Integer value1, Integer value2) { method andLevelNotBetween (line 413) | public Criteria andLevelNotBetween(Integer value1, Integer value2) { method andSortIsNull (line 418) | public Criteria andSortIsNull() { method andSortIsNotNull (line 423) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 428) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 433) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 438) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 443) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 448) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 453) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 458) | public Criteria andSortIn(List values) { method andSortNotIn (line 463) | public Criteria andSortNotIn(List values) { method andSortBetween (line 468) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 473) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andNameIsNull (line 478) | public Criteria andNameIsNull() { method andNameIsNotNull (line 483) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 488) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 493) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 498) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 503) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 508) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 513) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 518) | public Criteria andNameLike(String value) { method andNameNotLike (line 523) | public Criteria andNameNotLike(String value) { method andNameIn (line 528) | public Criteria andNameIn(List values) { method andNameNotIn (line 533) | public Criteria andNameNotIn(List values) { method andNameBetween (line 538) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 543) | public Criteria andNameNotBetween(String value1, String value2) { method andIconIsNull (line 548) | public Criteria andIconIsNull() { method andIconIsNotNull (line 553) | public Criteria andIconIsNotNull() { method andIconEqualTo (line 558) | public Criteria andIconEqualTo(String value) { method andIconNotEqualTo (line 563) | public Criteria andIconNotEqualTo(String value) { method andIconGreaterThan (line 568) | public Criteria andIconGreaterThan(String value) { method andIconGreaterThanOrEqualTo (line 573) | public Criteria andIconGreaterThanOrEqualTo(String value) { method andIconLessThan (line 578) | public Criteria andIconLessThan(String value) { method andIconLessThanOrEqualTo (line 583) | public Criteria andIconLessThanOrEqualTo(String value) { method andIconLike (line 588) | public Criteria andIconLike(String value) { method andIconNotLike (line 593) | public Criteria andIconNotLike(String value) { method andIconIn (line 598) | public Criteria andIconIn(List values) { method andIconNotIn (line 603) | public Criteria andIconNotIn(List values) { method andIconBetween (line 608) | public Criteria andIconBetween(String value1, String value2) { method andIconNotBetween (line 613) | public Criteria andIconNotBetween(String value1, String value2) { method andHiddenIsNull (line 618) | public Criteria andHiddenIsNull() { method andHiddenIsNotNull (line 623) | public Criteria andHiddenIsNotNull() { method andHiddenEqualTo (line 628) | public Criteria andHiddenEqualTo(Integer value) { method andHiddenNotEqualTo (line 633) | public Criteria andHiddenNotEqualTo(Integer value) { method andHiddenGreaterThan (line 638) | public Criteria andHiddenGreaterThan(Integer value) { method andHiddenGreaterThanOrEqualTo (line 643) | public Criteria andHiddenGreaterThanOrEqualTo(Integer value) { method andHiddenLessThan (line 648) | public Criteria andHiddenLessThan(Integer value) { method andHiddenLessThanOrEqualTo (line 653) | public Criteria andHiddenLessThanOrEqualTo(Integer value) { method andHiddenIn (line 658) | public Criteria andHiddenIn(List values) { method andHiddenNotIn (line 663) | public Criteria andHiddenNotIn(List values) { method andHiddenBetween (line 668) | public Criteria andHiddenBetween(Integer value1, Integer value2) { method andHiddenNotBetween (line 673) | public Criteria andHiddenNotBetween(Integer value1, Integer value2) { class Criteria (line 679) | public static class Criteria extends GeneratedCriteria { method Criteria (line 680) | protected Criteria() { class Criterion (line 685) | public static class Criterion { method getCondition (line 702) | public String getCondition() { method getValue (line 706) | public Object getValue() { method getSecondValue (line 710) | public Object getSecondValue() { method isNoValue (line 714) | public boolean isNoValue() { method isSingleValue (line 718) | public boolean isSingleValue() { method isBetweenValue (line 722) | public boolean isBetweenValue() { method isListValue (line 726) | public boolean isListValue() { method getTypeHandler (line 730) | public String getTypeHandler() { method Criterion (line 734) | protected Criterion(String condition) { method Criterion (line 741) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 753) | protected Criterion(String condition, Object value) { method Criterion (line 757) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 766) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/service/UmsMenuService.java type UmsMenuService (line 14) | public interface UmsMenuService { method treeList (line 19) | List treeList(); FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-stream/src/main/java/com/macro/mall/tiny/service/impl/UmsMenuServiceImpl.java class UmsMenuServiceImpl (line 25) | @Service method treeList (line 31) | @Override method covertMenuNode (line 43) | private UmsMenuNode covertMenuNode(UmsMenu menu, List menuLis... FILE: mall-tiny-stream/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test FILE: mall-tiny-stream/src/test/java/com/macro/mall/tiny/stream/StreamApiTest.java class StreamApiTest (line 17) | @SpringBootTest method eachInit (line 24) | @BeforeEach method filterTest (line 30) | @Test method mapTest (line 39) | @Test method limitTest (line 48) | @Test method countTest (line 57) | @Test method sortedTest (line 66) | @Test method skipTest (line 75) | @Test method collect2mapTest (line 84) | @Test method forEachTest (line 92) | @Test FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 13) | public class CommonPage { method restPage (line 23) | public static CommonPage restPage(List list) { method getPageNum (line 34) | public Integer getPageNum() { method setPageNum (line 38) | public void setPageNum(Integer pageNum) { method getPageSize (line 42) | public Integer getPageSize() { method setPageSize (line 46) | public void setPageSize(Integer pageSize) { method getTotalPage (line 50) | public Integer getTotalPage() { method setTotalPage (line 54) | public void setTotalPage(Integer totalPage) { method getList (line 58) | public List getList() { method setList (line 62) | public void setList(List list) { method getTotal (line 66) | public Long getTotal() { method setTotal (line 70) | public void setTotal(Long total) { FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 27) | @Component method generateToken (line 40) | private String generateToken(Map claims) { method getClaimsFromToken (line 51) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 67) | private Date generateExpirationDate() { method getUserNameFromToken (line 74) | public String getUserNameFromToken(String token) { method validateToken (line 91) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 99) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 107) | private Date getExpiredDateFromToken(String token) { method generateToken (line 115) | public String generateToken(UserDetails userDetails) { method canRefresh (line 125) | public boolean canRefresh(String token) { method refreshToken (line 132) | public String refreshToken(String token) { FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 12) | @Configuration FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 34) | @Configuration method filterChain (line 46) | @Bean method passwordEncoder (line 83) | @Bean method userDetailsService (line 88) | @Bean method jwtAuthenticationTokenFilter (line 100) | @Bean FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method springfoxHandlerProviderBeanPostProcessor (line 85) | @Bean FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 26) | @Controller method getBrandList (line 36) | @ApiOperation("获取所有品牌列表") method createBrand (line 43) | @ApiOperation("添加品牌") method updateBrand (line 60) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 77) | @ApiOperation("删除指定id的品牌") method listBrand (line 92) | @ApiOperation("分页查询品牌列表") method brand (line 104) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 29) | @Controller method login (line 41) | @RequestMapping(value = "/login", method = RequestMethod.POST) FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 7) | @ApiModel(value = "PmsBrand",description = "商品品牌") method getId (line 44) | public Long getId() { method setId (line 48) | public void setId(Long id) { method getName (line 52) | public String getName() { method setName (line 56) | public void setName(String name) { method getFirstLetter (line 60) | public String getFirstLetter() { method setFirstLetter (line 64) | public void setFirstLetter(String firstLetter) { method getSort (line 68) | public Integer getSort() { method setSort (line 72) | public void setSort(Integer sort) { method getFactoryStatus (line 76) | public Integer getFactoryStatus() { method setFactoryStatus (line 80) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 84) | public Integer getShowStatus() { method setShowStatus (line 88) | public void setShowStatus(Integer showStatus) { method getProductCount (line 92) | public Integer getProductCount() { method setProductCount (line 96) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 100) | public Integer getProductCommentCount() { method setProductCommentCount (line 104) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 108) | public String getLogo() { method setLogo (line 112) | public void setLogo(String logo) { method getBigPic (line 116) | public String getBigPic() { method setBigPic (line 120) | public void setBigPic(String bigPic) { method getBrandStory (line 124) | public String getBrandStory() { method setBrandStory (line 128) | public void setBrandStory(String brandStory) { method toString (line 132) | @Override FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 11) | public interface UmsAdminService { method getAdminByUsername (line 15) | AdminUserDetails getAdminByUsername(String username); method login (line 20) | String login(String username, String password); FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny-swagger/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 26) | @Slf4j method init (line 38) | @PostConstruct method getAdminByUsername (line 51) | @Override method login (line 60) | @Override FILE: mall-tiny-swagger/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 6) | @SpringBootTest method contextLoads (line 9) | public void contextLoads() { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/MallTinyApplication.java class MallTinyApplication (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/common/api/CommonPage.java class CommonPage (line 14) | public class CommonPage { method restPage (line 24) | public static CommonPage restPage(List list) { method restPage (line 38) | public static CommonPage restPage(Page pageInfo) { method getPageNum (line 48) | public Integer getPageNum() { method setPageNum (line 52) | public void setPageNum(Integer pageNum) { method getPageSize (line 56) | public Integer getPageSize() { method setPageSize (line 60) | public void setPageSize(Integer pageSize) { method getTotalPage (line 64) | public Integer getTotalPage() { method setTotalPage (line 68) | public void setTotalPage(Integer totalPage) { method getList (line 72) | public List getList() { method setList (line 76) | public void setList(List list) { method getTotal (line 80) | public Long getTotal() { method setTotal (line 84) | public void setTotal(Long total) { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/common/api/CommonResult.java class CommonResult (line 9) | public class CommonResult { method CommonResult (line 14) | protected CommonResult() { method CommonResult (line 17) | protected CommonResult(long code, String message, T data) { method success (line 28) | public static CommonResult success(T data) { method success (line 38) | public static CommonResult success(T data, String message) { method failed (line 46) | public static CommonResult failed(IErrorCode errorCode) { method failed (line 54) | public static CommonResult failed(String message) { method failed (line 61) | public static CommonResult failed() { method validateFailed (line 68) | public static CommonResult validateFailed() { method validateFailed (line 76) | public static CommonResult validateFailed(String message) { method unauthorized (line 83) | public static CommonResult unauthorized(T data) { method forbidden (line 90) | public static CommonResult forbidden(T data) { method getCode (line 94) | public long getCode() { method setCode (line 98) | public void setCode(long code) { method getMessage (line 102) | public String getMessage() { method setMessage (line 106) | public void setMessage(String message) { method getData (line 110) | public T getData() { method setData (line 114) | public void setData(T data) { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/common/api/IErrorCode.java type IErrorCode (line 9) | public interface IErrorCode { method getCode (line 10) | long getCode(); method getMessage (line 12) | String getMessage(); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/common/api/ResultCode.java type ResultCode (line 9) | public enum ResultCode implements IErrorCode { method ResultCode (line 18) | private ResultCode(long code, String message) { method getCode (line 23) | public long getCode() { method getMessage (line 27) | public String getMessage() { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/common/utils/JwtTokenUtil.java class JwtTokenUtil (line 29) | @Component method generateToken (line 42) | private String generateToken(Map claims) { method getClaimsFromToken (line 53) | private Claims getClaimsFromToken(String token) { method generateExpirationDate (line 69) | private Date generateExpirationDate() { method getUserNameFromToken (line 76) | public String getUserNameFromToken(String token) { method validateToken (line 93) | public boolean validateToken(String token, UserDetails userDetails) { method isTokenExpired (line 101) | private boolean isTokenExpired(String token) { method getExpiredDateFromToken (line 109) | private Date getExpiredDateFromToken(String token) { method generateToken (line 117) | public String generateToken(UserDetails userDetails) { method canRefresh (line 127) | public boolean canRefresh(String token) { method refreshToken (line 134) | public String refreshToken(String token) { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/component/CancelOrderReceiver.java class CancelOrderReceiver (line 17) | @Component method handle (line 23) | @RabbitHandler FILE: mall-tiny/src/main/java/com/macro/mall/tiny/component/CancelOrderSender.java class CancelOrderSender (line 19) | @Component method sendMessage (line 25) | public void sendMessage(Long orderId,final long delayTimes){ FILE: mall-tiny/src/main/java/com/macro/mall/tiny/component/JwtAuthenticationTokenFilter.java class JwtAuthenticationTokenFilter (line 27) | public class JwtAuthenticationTokenFilter extends OncePerRequestFilter { method doFilterInternal (line 38) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/component/RestAuthenticationEntryPoint.java class RestAuthenticationEntryPoint (line 20) | @Component method commence (line 22) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/component/RestfulAccessDeniedHandler.java class RestfulAccessDeniedHandler (line 20) | @Component method handle (line 22) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/GlobalCorsConfig.java class GlobalCorsConfig (line 15) | @Configuration method corsFilter (line 21) | @Bean FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/IgnoreUrlsConfig.java class IgnoreUrlsConfig (line 17) | @Getter FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/MallSecurityConfig.java class MallSecurityConfig (line 17) | @Configuration method userDetailsService (line 23) | @Bean FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/MyBatisConfig.java class MyBatisConfig (line 13) | @Configuration FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/RabbitMqConfig.java class RabbitMqConfig (line 14) | @Configuration method orderDirect (line 20) | @Bean method orderTtlDirect (line 31) | @Bean method orderQueue (line 42) | @Bean method orderTtlQueue (line 50) | @Bean method orderBinding (line 62) | @Bean method orderTtlBinding (line 73) | @Bean FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/RedisConfig.java class RedisConfig (line 28) | @EnableCaching method redisTemplate (line 37) | @Bean method redisSerializer (line 50) | @Bean method redisCacheManager (line 62) | @Bean FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/SecurityConfig.java class SecurityConfig (line 34) | @Configuration method filterChain (line 45) | @Bean method passwordEncoder (line 75) | @Bean method jwtAuthenticationTokenFilter (line 80) | @Bean FILE: mall-tiny/src/main/java/com/macro/mall/tiny/config/Swagger2Config.java class Swagger2Config (line 30) | @Configuration method createRestApi (line 32) | @Bean method apiInfo (line 45) | private ApiInfo apiInfo() { method securitySchemes (line 54) | private List securitySchemes() { method securityContexts (line 62) | private List securityContexts() { method getContextByPath (line 69) | private SecurityContext getContextByPath(String pathRegex) { method defaultAuth (line 76) | private List defaultAuth() { method generateBeanPostProcessor (line 85) | @Bean FILE: mall-tiny/src/main/java/com/macro/mall/tiny/controller/EsProductController.java class EsProductController (line 23) | @Controller method importAllList (line 31) | @ApiOperation(value = "导入所有数据库中商品到ES") method delete (line 39) | @ApiOperation(value = "根据id删除商品") method delete (line 47) | @ApiOperation(value = "根据id批量删除商品") method create (line 55) | @ApiOperation(value = "根据id创建商品") method search (line 67) | @ApiOperation(value = "简单搜索") FILE: mall-tiny/src/main/java/com/macro/mall/tiny/controller/MemberReadHistoryController.java class MemberReadHistoryController (line 21) | @Controller method create (line 29) | @ApiOperation("创建浏览记录") method delete (line 41) | @ApiOperation("删除浏览记录") method list (line 53) | @ApiOperation("展示浏览记录") FILE: mall-tiny/src/main/java/com/macro/mall/tiny/controller/MinioController.java class MinioController (line 28) | @Controller method upload (line 44) | @ApiOperation("文件上传") method createBucketPolicyConfigDto (line 93) | private BucketPolicyConfigDto createBucketPolicyConfigDto(String bucke... method delete (line 105) | @ApiOperation("文件删除") FILE: mall-tiny/src/main/java/com/macro/mall/tiny/controller/OmsPortalOrderController.java class OmsPortalOrderController (line 21) | @Controller method generateOrder (line 29) | @ApiOperation("根据购物车信息生成订单") FILE: mall-tiny/src/main/java/com/macro/mall/tiny/controller/PmsBrandController.java class PmsBrandController (line 28) | @Controller method getBrandList (line 38) | @ApiOperation("获取所有品牌列表") method createBrand (line 46) | @ApiOperation("添加品牌") method updateBrand (line 63) | @ApiOperation("更新指定id品牌信息") method deleteBrand (line 80) | @ApiOperation("删除指定id的品牌") method listBrand (line 95) | @ApiOperation("分页查询品牌列表") method brand (line 107) | @ApiOperation("获取指定id的品牌详情") FILE: mall-tiny/src/main/java/com/macro/mall/tiny/controller/UmsAdminController.java class UmsAdminController (line 27) | @Controller method login (line 40) | @ApiOperation(value = "登录以后返回token") method resourceList (line 54) | @ApiOperation(value = "登录以后返回token") FILE: mall-tiny/src/main/java/com/macro/mall/tiny/controller/UmsMemberController.java class UmsMemberController (line 21) | @Controller method getAuthCode (line 29) | @ApiOperation("获取验证码") method updatePassword (line 36) | @ApiOperation("判断验证码是否正确") FILE: mall-tiny/src/main/java/com/macro/mall/tiny/dao/EsProductDao.java type EsProductDao (line 14) | public interface EsProductDao { method getAllEsProductList (line 15) | List getAllEsProductList(@Param("id") Long id); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/domain/AdminUserDetails.java class AdminUserDetails (line 20) | @Data method getAuthorities (line 27) | @Override method getPassword (line 32) | @Override method getUsername (line 37) | @Override method isAccountNonExpired (line 42) | @Override method isAccountNonLocked (line 47) | @Override method isCredentialsNonExpired (line 52) | @Override method isEnabled (line 57) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/domain/UmsResource.java class UmsResource (line 19) | @Data FILE: mall-tiny/src/main/java/com/macro/mall/tiny/dto/BucketPolicyConfigDto.java class BucketPolicyConfigDto (line 15) | @Data class Statement (line 23) | @Data FILE: mall-tiny/src/main/java/com/macro/mall/tiny/dto/MinioUploadDto.java class MinioUploadDto (line 13) | @Data FILE: mall-tiny/src/main/java/com/macro/mall/tiny/dto/OrderParam.java class OrderParam (line 11) | @Data FILE: mall-tiny/src/main/java/com/macro/mall/tiny/dto/QueueEnum.java type QueueEnum (line 11) | @Getter method QueueEnum (line 35) | QueueEnum(String exchange, String name, String routeKey) { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/mbg/CommentGenerator.java class CommentGenerator (line 19) | public class CommentGenerator extends DefaultCommentGenerator { method addConfigurationProperties (line 28) | @Override method addFieldComment (line 37) | @Override method addFieldJavaDoc (line 56) | private void addFieldJavaDoc(Field field, String remarks) { method addJavaFileComment (line 68) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/mbg/Generator.java class Generator (line 18) | public class Generator { method main (line 19) | public static void main(String[] args) throws Exception { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/mbg/mapper/PmsBrandMapper.java type PmsBrandMapper (line 8) | public interface PmsBrandMapper { method countByExample (line 9) | long countByExample(PmsBrandExample example); method deleteByExample (line 11) | int deleteByExample(PmsBrandExample example); method deleteByPrimaryKey (line 13) | int deleteByPrimaryKey(Long id); method insert (line 15) | int insert(PmsBrand row); method insertSelective (line 17) | int insertSelective(PmsBrand row); method selectByExampleWithBLOBs (line 19) | List selectByExampleWithBLOBs(PmsBrandExample example); method selectByExample (line 21) | List selectByExample(PmsBrandExample example); method selectByPrimaryKey (line 23) | PmsBrand selectByPrimaryKey(Long id); method updateByExampleSelective (line 25) | int updateByExampleSelective(@Param("row") PmsBrand row, @Param("examp... method updateByExampleWithBLOBs (line 27) | int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("examp... method updateByExample (line 29) | int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsB... method updateByPrimaryKeySelective (line 31) | int updateByPrimaryKeySelective(PmsBrand row); method updateByPrimaryKeyWithBLOBs (line 33) | int updateByPrimaryKeyWithBLOBs(PmsBrand row); method updateByPrimaryKey (line 35) | int updateByPrimaryKey(PmsBrand row); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrand.java class PmsBrand (line 6) | public class PmsBrand implements Serializable { method getId (line 38) | public Long getId() { method setId (line 42) | public void setId(Long id) { method getName (line 46) | public String getName() { method setName (line 50) | public void setName(String name) { method getFirstLetter (line 54) | public String getFirstLetter() { method setFirstLetter (line 58) | public void setFirstLetter(String firstLetter) { method getSort (line 62) | public Integer getSort() { method setSort (line 66) | public void setSort(Integer sort) { method getFactoryStatus (line 70) | public Integer getFactoryStatus() { method setFactoryStatus (line 74) | public void setFactoryStatus(Integer factoryStatus) { method getShowStatus (line 78) | public Integer getShowStatus() { method setShowStatus (line 82) | public void setShowStatus(Integer showStatus) { method getProductCount (line 86) | public Integer getProductCount() { method setProductCount (line 90) | public void setProductCount(Integer productCount) { method getProductCommentCount (line 94) | public Integer getProductCommentCount() { method setProductCommentCount (line 98) | public void setProductCommentCount(Integer productCommentCount) { method getLogo (line 102) | public String getLogo() { method setLogo (line 106) | public void setLogo(String logo) { method getBigPic (line 110) | public String getBigPic() { method setBigPic (line 114) | public void setBigPic(String bigPic) { method getBrandStory (line 118) | public String getBrandStory() { method setBrandStory (line 122) | public void setBrandStory(String brandStory) { method toString (line 126) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/mbg/model/PmsBrandExample.java class PmsBrandExample (line 6) | public class PmsBrandExample { method PmsBrandExample (line 13) | public PmsBrandExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 107) | public Criteria andIdIsNull() { method andIdIsNotNull (line 112) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 117) | public Criteria andIdEqualTo(Long value) { method andIdNotEqualTo (line 122) | public Criteria andIdNotEqualTo(Long value) { method andIdGreaterThan (line 127) | public Criteria andIdGreaterThan(Long value) { method andIdGreaterThanOrEqualTo (line 132) | public Criteria andIdGreaterThanOrEqualTo(Long value) { method andIdLessThan (line 137) | public Criteria andIdLessThan(Long value) { method andIdLessThanOrEqualTo (line 142) | public Criteria andIdLessThanOrEqualTo(Long value) { method andIdIn (line 147) | public Criteria andIdIn(List values) { method andIdNotIn (line 152) | public Criteria andIdNotIn(List values) { method andIdBetween (line 157) | public Criteria andIdBetween(Long value1, Long value2) { method andIdNotBetween (line 162) | public Criteria andIdNotBetween(Long value1, Long value2) { method andNameIsNull (line 167) | public Criteria andNameIsNull() { method andNameIsNotNull (line 172) | public Criteria andNameIsNotNull() { method andNameEqualTo (line 177) | public Criteria andNameEqualTo(String value) { method andNameNotEqualTo (line 182) | public Criteria andNameNotEqualTo(String value) { method andNameGreaterThan (line 187) | public Criteria andNameGreaterThan(String value) { method andNameGreaterThanOrEqualTo (line 192) | public Criteria andNameGreaterThanOrEqualTo(String value) { method andNameLessThan (line 197) | public Criteria andNameLessThan(String value) { method andNameLessThanOrEqualTo (line 202) | public Criteria andNameLessThanOrEqualTo(String value) { method andNameLike (line 207) | public Criteria andNameLike(String value) { method andNameNotLike (line 212) | public Criteria andNameNotLike(String value) { method andNameIn (line 217) | public Criteria andNameIn(List values) { method andNameNotIn (line 222) | public Criteria andNameNotIn(List values) { method andNameBetween (line 227) | public Criteria andNameBetween(String value1, String value2) { method andNameNotBetween (line 232) | public Criteria andNameNotBetween(String value1, String value2) { method andFirstLetterIsNull (line 237) | public Criteria andFirstLetterIsNull() { method andFirstLetterIsNotNull (line 242) | public Criteria andFirstLetterIsNotNull() { method andFirstLetterEqualTo (line 247) | public Criteria andFirstLetterEqualTo(String value) { method andFirstLetterNotEqualTo (line 252) | public Criteria andFirstLetterNotEqualTo(String value) { method andFirstLetterGreaterThan (line 257) | public Criteria andFirstLetterGreaterThan(String value) { method andFirstLetterGreaterThanOrEqualTo (line 262) | public Criteria andFirstLetterGreaterThanOrEqualTo(String value) { method andFirstLetterLessThan (line 267) | public Criteria andFirstLetterLessThan(String value) { method andFirstLetterLessThanOrEqualTo (line 272) | public Criteria andFirstLetterLessThanOrEqualTo(String value) { method andFirstLetterLike (line 277) | public Criteria andFirstLetterLike(String value) { method andFirstLetterNotLike (line 282) | public Criteria andFirstLetterNotLike(String value) { method andFirstLetterIn (line 287) | public Criteria andFirstLetterIn(List values) { method andFirstLetterNotIn (line 292) | public Criteria andFirstLetterNotIn(List values) { method andFirstLetterBetween (line 297) | public Criteria andFirstLetterBetween(String value1, String value2) { method andFirstLetterNotBetween (line 302) | public Criteria andFirstLetterNotBetween(String value1, String value... method andSortIsNull (line 307) | public Criteria andSortIsNull() { method andSortIsNotNull (line 312) | public Criteria andSortIsNotNull() { method andSortEqualTo (line 317) | public Criteria andSortEqualTo(Integer value) { method andSortNotEqualTo (line 322) | public Criteria andSortNotEqualTo(Integer value) { method andSortGreaterThan (line 327) | public Criteria andSortGreaterThan(Integer value) { method andSortGreaterThanOrEqualTo (line 332) | public Criteria andSortGreaterThanOrEqualTo(Integer value) { method andSortLessThan (line 337) | public Criteria andSortLessThan(Integer value) { method andSortLessThanOrEqualTo (line 342) | public Criteria andSortLessThanOrEqualTo(Integer value) { method andSortIn (line 347) | public Criteria andSortIn(List values) { method andSortNotIn (line 352) | public Criteria andSortNotIn(List values) { method andSortBetween (line 357) | public Criteria andSortBetween(Integer value1, Integer value2) { method andSortNotBetween (line 362) | public Criteria andSortNotBetween(Integer value1, Integer value2) { method andFactoryStatusIsNull (line 367) | public Criteria andFactoryStatusIsNull() { method andFactoryStatusIsNotNull (line 372) | public Criteria andFactoryStatusIsNotNull() { method andFactoryStatusEqualTo (line 377) | public Criteria andFactoryStatusEqualTo(Integer value) { method andFactoryStatusNotEqualTo (line 382) | public Criteria andFactoryStatusNotEqualTo(Integer value) { method andFactoryStatusGreaterThan (line 387) | public Criteria andFactoryStatusGreaterThan(Integer value) { method andFactoryStatusGreaterThanOrEqualTo (line 392) | public Criteria andFactoryStatusGreaterThanOrEqualTo(Integer value) { method andFactoryStatusLessThan (line 397) | public Criteria andFactoryStatusLessThan(Integer value) { method andFactoryStatusLessThanOrEqualTo (line 402) | public Criteria andFactoryStatusLessThanOrEqualTo(Integer value) { method andFactoryStatusIn (line 407) | public Criteria andFactoryStatusIn(List values) { method andFactoryStatusNotIn (line 412) | public Criteria andFactoryStatusNotIn(List values) { method andFactoryStatusBetween (line 417) | public Criteria andFactoryStatusBetween(Integer value1, Integer valu... method andFactoryStatusNotBetween (line 422) | public Criteria andFactoryStatusNotBetween(Integer value1, Integer v... method andShowStatusIsNull (line 427) | public Criteria andShowStatusIsNull() { method andShowStatusIsNotNull (line 432) | public Criteria andShowStatusIsNotNull() { method andShowStatusEqualTo (line 437) | public Criteria andShowStatusEqualTo(Integer value) { method andShowStatusNotEqualTo (line 442) | public Criteria andShowStatusNotEqualTo(Integer value) { method andShowStatusGreaterThan (line 447) | public Criteria andShowStatusGreaterThan(Integer value) { method andShowStatusGreaterThanOrEqualTo (line 452) | public Criteria andShowStatusGreaterThanOrEqualTo(Integer value) { method andShowStatusLessThan (line 457) | public Criteria andShowStatusLessThan(Integer value) { method andShowStatusLessThanOrEqualTo (line 462) | public Criteria andShowStatusLessThanOrEqualTo(Integer value) { method andShowStatusIn (line 467) | public Criteria andShowStatusIn(List values) { method andShowStatusNotIn (line 472) | public Criteria andShowStatusNotIn(List values) { method andShowStatusBetween (line 477) | public Criteria andShowStatusBetween(Integer value1, Integer value2) { method andShowStatusNotBetween (line 482) | public Criteria andShowStatusNotBetween(Integer value1, Integer valu... method andProductCountIsNull (line 487) | public Criteria andProductCountIsNull() { method andProductCountIsNotNull (line 492) | public Criteria andProductCountIsNotNull() { method andProductCountEqualTo (line 497) | public Criteria andProductCountEqualTo(Integer value) { method andProductCountNotEqualTo (line 502) | public Criteria andProductCountNotEqualTo(Integer value) { method andProductCountGreaterThan (line 507) | public Criteria andProductCountGreaterThan(Integer value) { method andProductCountGreaterThanOrEqualTo (line 512) | public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { method andProductCountLessThan (line 517) | public Criteria andProductCountLessThan(Integer value) { method andProductCountLessThanOrEqualTo (line 522) | public Criteria andProductCountLessThanOrEqualTo(Integer value) { method andProductCountIn (line 527) | public Criteria andProductCountIn(List values) { method andProductCountNotIn (line 532) | public Criteria andProductCountNotIn(List values) { method andProductCountBetween (line 537) | public Criteria andProductCountBetween(Integer value1, Integer value... method andProductCountNotBetween (line 542) | public Criteria andProductCountNotBetween(Integer value1, Integer va... method andProductCommentCountIsNull (line 547) | public Criteria andProductCommentCountIsNull() { method andProductCommentCountIsNotNull (line 552) | public Criteria andProductCommentCountIsNotNull() { method andProductCommentCountEqualTo (line 557) | public Criteria andProductCommentCountEqualTo(Integer value) { method andProductCommentCountNotEqualTo (line 562) | public Criteria andProductCommentCountNotEqualTo(Integer value) { method andProductCommentCountGreaterThan (line 567) | public Criteria andProductCommentCountGreaterThan(Integer value) { method andProductCommentCountGreaterThanOrEqualTo (line 572) | public Criteria andProductCommentCountGreaterThanOrEqualTo(Integer v... method andProductCommentCountLessThan (line 577) | public Criteria andProductCommentCountLessThan(Integer value) { method andProductCommentCountLessThanOrEqualTo (line 582) | public Criteria andProductCommentCountLessThanOrEqualTo(Integer valu... method andProductCommentCountIn (line 587) | public Criteria andProductCommentCountIn(List values) { method andProductCommentCountNotIn (line 592) | public Criteria andProductCommentCountNotIn(List values) { method andProductCommentCountBetween (line 597) | public Criteria andProductCommentCountBetween(Integer value1, Intege... method andProductCommentCountNotBetween (line 602) | public Criteria andProductCommentCountNotBetween(Integer value1, Int... method andLogoIsNull (line 607) | public Criteria andLogoIsNull() { method andLogoIsNotNull (line 612) | public Criteria andLogoIsNotNull() { method andLogoEqualTo (line 617) | public Criteria andLogoEqualTo(String value) { method andLogoNotEqualTo (line 622) | public Criteria andLogoNotEqualTo(String value) { method andLogoGreaterThan (line 627) | public Criteria andLogoGreaterThan(String value) { method andLogoGreaterThanOrEqualTo (line 632) | public Criteria andLogoGreaterThanOrEqualTo(String value) { method andLogoLessThan (line 637) | public Criteria andLogoLessThan(String value) { method andLogoLessThanOrEqualTo (line 642) | public Criteria andLogoLessThanOrEqualTo(String value) { method andLogoLike (line 647) | public Criteria andLogoLike(String value) { method andLogoNotLike (line 652) | public Criteria andLogoNotLike(String value) { method andLogoIn (line 657) | public Criteria andLogoIn(List values) { method andLogoNotIn (line 662) | public Criteria andLogoNotIn(List values) { method andLogoBetween (line 667) | public Criteria andLogoBetween(String value1, String value2) { method andLogoNotBetween (line 672) | public Criteria andLogoNotBetween(String value1, String value2) { method andBigPicIsNull (line 677) | public Criteria andBigPicIsNull() { method andBigPicIsNotNull (line 682) | public Criteria andBigPicIsNotNull() { method andBigPicEqualTo (line 687) | public Criteria andBigPicEqualTo(String value) { method andBigPicNotEqualTo (line 692) | public Criteria andBigPicNotEqualTo(String value) { method andBigPicGreaterThan (line 697) | public Criteria andBigPicGreaterThan(String value) { method andBigPicGreaterThanOrEqualTo (line 702) | public Criteria andBigPicGreaterThanOrEqualTo(String value) { method andBigPicLessThan (line 707) | public Criteria andBigPicLessThan(String value) { method andBigPicLessThanOrEqualTo (line 712) | public Criteria andBigPicLessThanOrEqualTo(String value) { method andBigPicLike (line 717) | public Criteria andBigPicLike(String value) { method andBigPicNotLike (line 722) | public Criteria andBigPicNotLike(String value) { method andBigPicIn (line 727) | public Criteria andBigPicIn(List values) { method andBigPicNotIn (line 732) | public Criteria andBigPicNotIn(List values) { method andBigPicBetween (line 737) | public Criteria andBigPicBetween(String value1, String value2) { method andBigPicNotBetween (line 742) | public Criteria andBigPicNotBetween(String value1, String value2) { class Criteria (line 748) | public static class Criteria extends GeneratedCriteria { method Criteria (line 749) | protected Criteria() { class Criterion (line 754) | public static class Criterion { method getCondition (line 771) | public String getCondition() { method getValue (line 775) | public Object getValue() { method getSecondValue (line 779) | public Object getSecondValue() { method isNoValue (line 783) | public boolean isNoValue() { method isSingleValue (line 787) | public boolean isSingleValue() { method isBetweenValue (line 791) | public boolean isBetweenValue() { method isListValue (line 795) | public boolean isListValue() { method getTypeHandler (line 799) | public String getTypeHandler() { method Criterion (line 803) | protected Criterion(String condition) { method Criterion (line 810) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 822) | protected Criterion(String condition, Object value) { method Criterion (line 826) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 835) | protected Criterion(String condition, Object value, Object secondVal... FILE: mall-tiny/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProduct.java class EsProduct (line 21) | @Data FILE: mall-tiny/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/document/EsProductAttributeValue.java class EsProductAttributeValue (line 16) | @Data FILE: mall-tiny/src/main/java/com/macro/mall/tiny/nosql/elasticsearch/repository/EsProductRepository.java type EsProductRepository (line 14) | public interface EsProductRepository extends ElasticsearchRepository findByNameOrSubTitleOrKeywords(String name, String sub... FILE: mall-tiny/src/main/java/com/macro/mall/tiny/nosql/mongodb/document/MemberReadHistory.java class MemberReadHistory (line 17) | @Data FILE: mall-tiny/src/main/java/com/macro/mall/tiny/nosql/mongodb/repository/MemberReadHistoryRepository.java type MemberReadHistoryRepository (line 15) | public interface MemberReadHistoryRepository extends MongoRepository findByMemberIdOrderByCreateTimeDesc(Long membe... FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/EsProductService.java type EsProductService (line 14) | public interface EsProductService { method importAll (line 18) | int importAll(); method delete (line 23) | void delete(Long id); method create (line 28) | EsProduct create(Long id); method delete (line 33) | void delete(List ids); method search (line 38) | Page search(String keyword, Integer pageNum, Integer pageSi... FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/MemberReadHistoryService.java type MemberReadHistoryService (line 14) | public interface MemberReadHistoryService { method create (line 18) | int create(MemberReadHistory memberReadHistory); method delete (line 23) | int delete(List ids); method list (line 28) | List list(Long memberId); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/OmsPortalOrderService.java type OmsPortalOrderService (line 13) | public interface OmsPortalOrderService { method generateOrder (line 18) | @Transactional method cancelOrder (line 24) | @Transactional FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/PmsBrandService.java type PmsBrandService (line 14) | public interface PmsBrandService { method listAllBrand (line 15) | List listAllBrand(); method createBrand (line 17) | int createBrand(PmsBrand brand); method updateBrand (line 19) | int updateBrand(Long id, PmsBrand brand); method deleteBrand (line 21) | int deleteBrand(Long id); method listBrand (line 23) | List listBrand(int pageNum, int pageSize); method getBrand (line 25) | PmsBrand getBrand(Long id); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/RedisService.java type RedisService (line 13) | public interface RedisService { method set (line 18) | void set(String key, Object value, long time); method set (line 23) | void set(String key, Object value); method get (line 28) | Object get(String key); method del (line 33) | Boolean del(String key); method del (line 38) | Long del(List keys); method expire (line 43) | Boolean expire(String key, long time); method getExpire (line 48) | Long getExpire(String key); method hasKey (line 53) | Boolean hasKey(String key); method incr (line 58) | Long incr(String key, long delta); method decr (line 63) | Long decr(String key, long delta); method hGet (line 68) | Object hGet(String key, String hashKey); method hSet (line 73) | Boolean hSet(String key, String hashKey, Object value, long time); method hSet (line 78) | void hSet(String key, String hashKey, Object value); method hGetAll (line 83) | Map hGetAll(String key); method hSetAll (line 88) | Boolean hSetAll(String key, Map map, long time); method hSetAll (line 93) | void hSetAll(String key, Map map); method hDel (line 98) | void hDel(String key, Object... hashKey); method hHasKey (line 103) | Boolean hHasKey(String key, String hashKey); method hIncr (line 108) | Long hIncr(String key, String hashKey, Long delta); method hDecr (line 113) | Long hDecr(String key, String hashKey, Long delta); method sMembers (line 118) | Set sMembers(String key); method sAdd (line 123) | Long sAdd(String key, Object... values); method sAdd (line 128) | Long sAdd(String key, long time, Object... values); method sIsMember (line 133) | Boolean sIsMember(String key, Object value); method sSize (line 138) | Long sSize(String key); method sRemove (line 143) | Long sRemove(String key, Object... values); method lRange (line 148) | List lRange(String key, long start, long end); method lSize (line 153) | Long lSize(String key); method lIndex (line 158) | Object lIndex(String key, long index); method lPush (line 163) | Long lPush(String key, Object value); method lPush (line 168) | Long lPush(String key, Object value, long time); method lPushAll (line 173) | Long lPushAll(String key, Object... values); method lPushAll (line 178) | Long lPushAll(String key, Long time, Object... values); method lRemove (line 183) | Long lRemove(String key, long count, Object value); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/UmsAdminService.java type UmsAdminService (line 14) | public interface UmsAdminService { method getAdminByUsername (line 18) | AdminUserDetails getAdminByUsername(String username); method getResourceList (line 23) | List getResourceList(); method login (line 28) | String login(String username, String password); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/UmsMemberService.java type UmsMemberService (line 11) | public interface UmsMemberService { method generateAuthCode (line 16) | CommonResult generateAuthCode(String telephone); method verifyAuthCode (line 21) | CommonResult verifyAuthCode(String telephone, String authCode); FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/impl/EsProductServiceImpl.java class EsProductServiceImpl (line 27) | @Service method importAll (line 34) | @Override method delete (line 47) | @Override method create (line 52) | @Override method delete (line 63) | @Override method search (line 76) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/impl/MemberReadHistoryServiceImpl.java class MemberReadHistoryServiceImpl (line 19) | @Service method create (line 23) | @Override method delete (line 31) | @Override method list (line 43) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/impl/OmsPortalOrderServiceImpl.java class OmsPortalOrderServiceImpl (line 18) | @Service method generateOrder (line 24) | @Override method cancelOrder (line 33) | @Override method sendDelayMessageCancelOrder (line 39) | private void sendDelayMessageCancelOrder(Long orderId) { FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/impl/PmsBrandServiceImpl.java class PmsBrandServiceImpl (line 19) | @Service method listAllBrand (line 24) | @Override method createBrand (line 29) | @Override method updateBrand (line 34) | @Override method deleteBrand (line 40) | @Override method listBrand (line 45) | @Override method getBrand (line 51) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/impl/RedisServiceImpl.java class RedisServiceImpl (line 19) | @Service method set (line 24) | @Override method set (line 29) | @Override method get (line 34) | @Override method del (line 39) | @Override method del (line 44) | @Override method expire (line 49) | @Override method getExpire (line 54) | @Override method hasKey (line 59) | @Override method incr (line 64) | @Override method decr (line 69) | @Override method hGet (line 74) | @Override method hSet (line 79) | @Override method hSet (line 85) | @Override method hGetAll (line 90) | @Override method hSetAll (line 95) | @Override method hSetAll (line 101) | @Override method hDel (line 106) | @Override method hHasKey (line 111) | @Override method hIncr (line 116) | @Override method hDecr (line 121) | @Override method sMembers (line 126) | @Override method sAdd (line 131) | @Override method sAdd (line 136) | @Override method sIsMember (line 143) | @Override method sSize (line 148) | @Override method sRemove (line 153) | @Override method lRange (line 158) | @Override method lSize (line 163) | @Override method lIndex (line 168) | @Override method lPush (line 173) | @Override method lPush (line 178) | @Override method lPushAll (line 185) | @Override method lPushAll (line 190) | @Override method lRemove (line 197) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/impl/UmsAdminServiceImpl.java class UmsAdminServiceImpl (line 29) | @Slf4j method init (line 45) | @PostConstruct method getAdminByUsername (line 83) | @Override method getResourceList (line 92) | @Override method login (line 97) | @Override FILE: mall-tiny/src/main/java/com/macro/mall/tiny/service/impl/UmsMemberServiceImpl.java class UmsMemberServiceImpl (line 20) | @Service method generateAuthCode (line 29) | @Override method verifyAuthCode (line 44) | @Override FILE: mall-tiny/src/test/java/com/macro/mall/tiny/MallTinyApplicationTests.java class MallTinyApplicationTests (line 7) | @SpringBootTest method contextLoads (line 10) | @Test