File tree Expand file tree Collapse file tree 5 files changed +185
-0
lines changed
website/src/main/java/info/xiaomo/website/view Expand file tree Collapse file tree 5 files changed +185
-0
lines changed Original file line number Diff line number Diff line change 1+ package info .xiaomo .website .view ;
2+
3+ /**
4+ * 把今天最好的表现当作明天最新的起点..~
5+ * いま 最高の表現 として 明日最新の始発..~
6+ * Today the best performance as tomorrow newest starter!
7+ * Created by IntelliJ IDEA.
8+ *
9+ * @author: xiaomo
10+ * @github: https://github.com/qq83387856
11+ * @email: hupengbest@163.com
12+ * @QQ_NO: 83387856
13+ * @Date: 2016/11/21 11:12
14+ * @Copyright(©) 2015 by xiaomo.
15+ **/
16+
17+ public enum AdminUserView {
18+
19+ LOGIN ("login" ),
20+ REGISTER ("register" ),
21+ REGISTER_INFO ("info" ),
22+ INDEX ("/web/index" );
23+
24+ private String name ;
25+
26+ AdminUserView (String name ) {
27+ this .name = name ;
28+ }
29+
30+ public String getName () {
31+ return name ;
32+ }
33+
34+ public void setName (String name ) {
35+ this .name = name ;
36+ }
37+ }
Original file line number Diff line number Diff line change 1+ package info .xiaomo .website .view ;
2+
3+ /**
4+ * 把今天最好的表现当作明天最新的起点..~
5+ * いま 最高の表現 として 明日最新の始発..~
6+ * Today the best performance as tomorrow newest starter!
7+ * Created by IntelliJ IDEA.
8+ *
9+ * @author: xiaomo
10+ * @github: https://github.com/qq83387856
11+ * @email: hupengbest@163.com
12+ * @QQ_NO: 83387856
13+ * @Date: 2016/11/21 11:12
14+ * @Copyright(©) 2015 by xiaomo.
15+ **/
16+
17+ public enum ChangeLogView {
18+
19+ LOGIN ("login" ),
20+ REGISTER ("register" ),
21+ REGISTER_INFO ("info" ),
22+ INDEX ("/web/index" );
23+
24+ private String name ;
25+
26+ ChangeLogView (String name ) {
27+ this .name = name ;
28+ }
29+
30+ public String getName () {
31+ return name ;
32+ }
33+
34+ public void setName (String name ) {
35+ this .name = name ;
36+ }
37+ }
Original file line number Diff line number Diff line change 1+ package info .xiaomo .website .view ;
2+
3+ /**
4+ * 把今天最好的表现当作明天最新的起点..~
5+ * いま 最高の表現 として 明日最新の始発..~
6+ * Today the best performance as tomorrow newest starter!
7+ * Created by IntelliJ IDEA.
8+ *
9+ * @author: xiaomo
10+ * @github: https://github.com/qq83387856
11+ * @email: hupengbest@163.com
12+ * @QQ_NO: 83387856
13+ * @Date: 2016/11/21 11:12
14+ * @Copyright(©) 2015 by xiaomo.
15+ **/
16+
17+ public enum LinkView {
18+
19+ LOGIN ("login" ),
20+ REGISTER ("register" ),
21+ REGISTER_INFO ("info" ),
22+ INDEX ("/web/index" );
23+
24+ private String name ;
25+
26+ LinkView (String name ) {
27+ this .name = name ;
28+ }
29+
30+ public String getName () {
31+ return name ;
32+ }
33+
34+ public void setName (String name ) {
35+ this .name = name ;
36+ }
37+ }
Original file line number Diff line number Diff line change 1+ package info .xiaomo .website .view ;
2+
3+ /**
4+ * 把今天最好的表现当作明天最新的起点..~
5+ * いま 最高の表現 として 明日最新の始発..~
6+ * Today the best performance as tomorrow newest starter!
7+ * Created by IntelliJ IDEA.
8+ *
9+ * @author: xiaomo
10+ * @github: https://github.com/qq83387856
11+ * @email: hupengbest@163.com
12+ * @QQ_NO: 83387856
13+ * @Date: 2016/11/21 11:12
14+ * @Copyright(©) 2015 by xiaomo.
15+ **/
16+
17+ public enum TechnologyView {
18+
19+ LOGIN ("login" ),
20+ REGISTER ("register" ),
21+ REGISTER_INFO ("info" ),
22+ INDEX ("/web/index" );
23+
24+ private String name ;
25+
26+ TechnologyView (String name ) {
27+ this .name = name ;
28+ }
29+
30+ public String getName () {
31+ return name ;
32+ }
33+
34+ public void setName (String name ) {
35+ this .name = name ;
36+ }
37+ }
Original file line number Diff line number Diff line change 1+ package info .xiaomo .website .view ;
2+
3+ /**
4+ * 把今天最好的表现当作明天最新的起点..~
5+ * いま 最高の表現 として 明日最新の始発..~
6+ * Today the best performance as tomorrow newest starter!
7+ * Created by IntelliJ IDEA.
8+ *
9+ * @author: xiaomo
10+ * @github: https://github.com/qq83387856
11+ * @email: hupengbest@163.com
12+ * @QQ_NO: 83387856
13+ * @Date: 2016/11/21 11:12
14+ * @Copyright(©) 2015 by xiaomo.
15+ **/
16+
17+ public enum WorksView {
18+
19+ LOGIN ("login" ),
20+ REGISTER ("register" ),
21+ REGISTER_INFO ("info" ),
22+ INDEX ("/web/index" );
23+
24+ private String name ;
25+
26+ WorksView (String name ) {
27+ this .name = name ;
28+ }
29+
30+ public String getName () {
31+ return name ;
32+ }
33+
34+ public void setName (String name ) {
35+ this .name = name ;
36+ }
37+ }
You can’t perform that action at this time.
0 commit comments