-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
57 additions
and
73 deletions.
There are no files selected for viewing
Binary file modified
BIN
+350 Bytes
(110%)
hauth/bin/src/main/java/com/asofdate/hauth/controller/HandleLogController.class
Binary file not shown.
Binary file modified
BIN
-45 Bytes
(99%)
hauth/bin/src/main/java/com/asofdate/hauth/controller/OrgController.class
Binary file not shown.
Binary file modified
BIN
-222 Bytes
(97%)
hauth/bin/src/main/java/com/asofdate/hauth/controller/RoleController.class
Binary file not shown.
Binary file modified
BIN
-589 Bytes
(93%)
hauth/bin/src/main/java/com/asofdate/hauth/controller/ShareDomainController.class
Binary file not shown.
Binary file modified
BIN
-23 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/controller/UserController.class
Binary file not shown.
Binary file modified
BIN
+205 Bytes
(110%)
hauth/bin/src/main/java/com/asofdate/hauth/dao/RoleDao.class
Binary file not shown.
Binary file modified
BIN
+62 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/dao/ShareDomainDao.class
Binary file not shown.
Binary file modified
BIN
+74 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/dao/UserDao.class
Binary file not shown.
Binary file modified
BIN
+142 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/dao/impl/RoleDaoImpl.class
Binary file not shown.
Binary file modified
BIN
+37 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/dao/impl/ShareDomainDaoImpl.class
Binary file not shown.
Binary file modified
BIN
+25 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/dao/impl/UserDaoImpl.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.02 KB
hauth/bin/src/main/java/com/asofdate/hauth/entity/UserRoleEntity.class
Binary file not shown.
Binary file modified
BIN
+252 Bytes
(110%)
hauth/bin/src/main/java/com/asofdate/hauth/service/RoleService.class
Binary file not shown.
Binary file modified
BIN
+62 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/service/ShareDomainService.class
Binary file not shown.
Binary file modified
BIN
+74 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/service/UserService.class
Binary file not shown.
Binary file modified
BIN
+297 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/service/impl/RoleServiceImpl.class
Binary file not shown.
Binary file modified
BIN
+105 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/service/impl/ShareDomainServiceImpl.class
Binary file not shown.
Binary file modified
BIN
+107 Bytes
(100%)
hauth/bin/src/main/java/com/asofdate/hauth/service/impl/UserServiceImpl.class
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 32 additions & 28 deletions
60
hauth/src/main/java/com/asofdate/hauth/dto/PagingDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,36 @@ | ||
package com.asofdate.hauth.dto; | ||
|
||
public class PagingDto<T> { | ||
public T rows; | ||
public Integer total; | ||
|
||
public PagingDto(){ | ||
} | ||
|
||
public PagingDto(Integer total,T rows) { | ||
this.rows = rows; | ||
this.total = total; | ||
} | ||
|
||
public T getRows() { | ||
return rows; | ||
} | ||
public void setRows(T rows) { | ||
this.rows = rows; | ||
} | ||
public Integer getTotal() { | ||
return total; | ||
} | ||
public void setTotal(Integer total) { | ||
this.total = total; | ||
} | ||
@Override | ||
public String toString() { | ||
return "PageDto [rows=" + rows + ", total=" + total + "]"; | ||
} | ||
|
||
public T rows; | ||
public Integer total; | ||
|
||
public PagingDto() { | ||
} | ||
|
||
public PagingDto(Integer total, T rows) { | ||
this.rows = rows; | ||
this.total = total; | ||
} | ||
|
||
public T getRows() { | ||
return rows; | ||
} | ||
|
||
public void setRows(T rows) { | ||
this.rows = rows; | ||
} | ||
|
||
public Integer getTotal() { | ||
return total; | ||
} | ||
|
||
public void setTotal(Integer total) { | ||
this.total = total; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "PageDto [rows=" + rows + ", total=" + total + "]"; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
hauth/src/main/java/com/asofdate/hauth/service/ShareDomainService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters