├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── src ├── main │ ├── resources │ │ ├── banner.jpg │ │ ├── static │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ ├── ok.gif │ │ │ │ │ ├── caret.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── pop-bg.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ └── videologo.gif │ │ │ │ ├── img │ │ │ │ │ └── bg-img.jpg │ │ │ │ ├── icon │ │ │ │ │ └── common.jpg │ │ │ │ ├── dialogs │ │ │ │ │ ├── emotion │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ │ ├── bface.gif │ │ │ │ │ │ │ ├── cface.gif │ │ │ │ │ │ │ ├── fface.gif │ │ │ │ │ │ │ ├── tface.gif │ │ │ │ │ │ │ ├── wface.gif │ │ │ │ │ │ │ ├── yface.gif │ │ │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ │ │ └── neweditor-tab-bg.png │ │ │ │ │ │ └── emotion.css │ │ │ │ │ ├── image │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── upload1.png │ │ │ │ │ │ │ └── upload2.png │ │ │ │ │ │ └── image.css │ │ │ │ │ ├── formula │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── formula.png │ │ │ │ │ │ ├── formula.css │ │ │ │ │ │ └── formula.js │ │ │ │ │ ├── video │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ │ │ └── right_focus.jpg │ │ │ │ │ │ └── video.css │ │ │ │ │ ├── link │ │ │ │ │ │ └── link.js │ │ │ │ │ └── map │ │ │ │ │ │ └── map.html │ │ │ │ ├── font-awesome │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── umeditor │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── emotion │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ │ │ ├── bface.gif │ │ │ │ │ │ │ │ ├── cface.gif │ │ │ │ │ │ │ │ ├── fface.gif │ │ │ │ │ │ │ │ ├── tface.gif │ │ │ │ │ │ │ │ ├── wface.gif │ │ │ │ │ │ │ │ ├── yface.gif │ │ │ │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ │ │ │ └── neweditor-tab-bg.png │ │ │ │ │ │ │ └── emotion.css │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ │ ├── upload1.png │ │ │ │ │ │ │ │ └── upload2.png │ │ │ │ │ │ │ └── image.css │ │ │ │ │ │ ├── formula │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── formula.png │ │ │ │ │ │ │ ├── formula.css │ │ │ │ │ │ │ └── formula.js │ │ │ │ │ │ ├── video │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ │ │ │ └── right_focus.jpg │ │ │ │ │ │ │ └── video.css │ │ │ │ │ │ ├── link │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── map │ │ │ │ │ │ │ └── map.html │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regulard41d.eot │ │ │ │ ├── materialize │ │ │ │ │ └── fonts │ │ │ │ │ │ └── roboto │ │ │ │ │ │ ├── Roboto-Bold.eot │ │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ │ │ ├── Roboto-Light.eot │ │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ │ ├── Roboto-Light.woff │ │ │ │ │ │ ├── Roboto-Medium.eot │ │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ │ ├── Roboto-Thin.eot │ │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ │ │ ├── Roboto-Regular.eot │ │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ │ │ └── Roboto-Regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── morris │ │ │ │ │ └── morris-0.4.3.min.css │ │ │ │ │ ├── easypiechart-data.js │ │ │ │ │ ├── jquery.metisMenu.js │ │ │ │ │ ├── Lightweight-Chart │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.html │ │ │ │ │ └── index - Copy.html │ │ │ │ │ ├── chart-data.js │ │ │ │ │ └── dataTables │ │ │ │ │ └── dataTables.bootstrap.css │ │ │ ├── um.html │ │ │ ├── modelTest.html │ │ │ └── login.html │ │ ├── emailConfig.properties │ │ ├── templates │ │ │ ├── 404.html │ │ │ ├── hello.html │ │ │ └── login.html │ │ └── application.properties │ └── java │ │ └── cn │ │ └── lger │ │ ├── exception │ │ ├── IdNotFoundException.java │ │ ├── BalanceNotEnoughException.java │ │ ├── IntegralNotEnoughException.java │ │ ├── GiftNumberNotEnoughException.java │ │ └── CommodityNumberNotEnoughException.java │ │ ├── util │ │ ├── UUIDRandomUtil.java │ │ ├── MemberNumberRandomUtil.java │ │ └── FileUploadUtil.java │ │ ├── dao │ │ ├── CommodityDao.java │ │ ├── AdminDao.java │ │ ├── TransactionRecordDao.java │ │ ├── ExchangeRecordDao.java │ │ ├── MemberGradeDao.java │ │ ├── GiftDao.java │ │ └── MemberDao.java │ │ ├── domain │ │ ├── AdminRole.java │ │ ├── ExchangeRecord.java │ │ ├── TransactionRecord.java │ │ ├── Gift.java │ │ ├── MemberGrade.java │ │ ├── Admin.java │ │ ├── Commodity.java │ │ └── Member.java │ │ ├── ServletInitializer.java │ │ ├── service │ │ ├── AdminService.java │ │ ├── TransactionRecordService.java │ │ ├── ExchangeRecordService.java │ │ ├── MemberGradeService.java │ │ ├── GiftService.java │ │ ├── MemberService.java │ │ └── CommodityService.java │ │ ├── MembershipApplication.java │ │ ├── web │ │ ├── LoginController.java │ │ ├── TransactionRecordController.java │ │ ├── ExchangeRecordController.java │ │ ├── MemberGradeController.java │ │ ├── CommodityController.java │ │ ├── BirthdayWarningController.java │ │ ├── GiftController.java │ │ ├── AdminController.java │ │ └── MemberController.java │ │ └── security │ │ ├── CustomerUserDetailsService.java │ │ ├── CustomerLoginSuccessHandler.java │ │ ├── SecurityConfig.java │ │ └── CustomerUserDetails.java └── test │ └── java │ └── cn │ └── lger │ ├── util │ ├── TestDateRandom.java │ └── TestParseTime.java │ ├── MembershipApplicationTests.java │ └── dao │ ├── TestRandom.java │ ├── TestMemberGradeDao.java │ ├── TestAdminDao.java │ ├── TestTransactionRecordDao.java │ └── TestMemberDao.java ├── .gitignore ├── README.md ├── membership.uml ├── pom.xml └── mvnw.cmd /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/main/resources/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/banner.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/ok.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/bg-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/img/bg-img.jpg -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.2/apache-maven-3.5.2-bin.zip 2 | -------------------------------------------------------------------------------- /src/main/resources/emailConfig.properties: -------------------------------------------------------------------------------- 1 | email.account=XXXXXXX@163.com 2 | email.password=XXXXXXX 3 | email.smtp=smtp.163.com 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/resources/static/assets/icon/common.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/icon/common.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/caret.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/close.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/icons.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/icons.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/pop-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/pop-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/spacer.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/images/videologo.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/image/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/image/images/close.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/image/images/upload1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/image/images/upload1.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/image/images/upload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/image/images/upload2.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/formula/images/formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/formula/images/formula.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/image/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/image/images/close.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/glyphicons-halflings-regulard41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/fonts/glyphicons-halflings-regulard41d.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/image/images/upload1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/image/images/upload1.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/image/images/upload2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/image/images/upload2.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/materialize/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/formula/images/formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/formula/images/formula.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/umeditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mr-Pro/membership/HEAD/src/main/resources/static/assets/umeditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /src/main/resources/templates/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |图片上传和视频上传功能未做,请使用其他功能测试
17 |