Skip to content

Commit c5216a8

Browse files
committed
view
1 parent cd4e80b commit c5216a8

File tree

5 files changed

+185
-0
lines changed

5 files changed

+185
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
}

0 commit comments

Comments
 (0)