-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from yanyanho/main
add hiring and sharing entity
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.dl.officialsite.hiring; | ||
|
||
|
||
|
||
public class Hiring { | ||
|
||
private String headline; | ||
private String employer; | ||
private String jd; | ||
private String role; | ||
private String requirement; | ||
private String locate; | ||
private String salary; | ||
private String memo; | ||
|
||
} |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package com.dl.officialsite.sharing; | ||
|
||
import com.dl.officialsite.member.Member; | ||
|
||
public class Sharing { | ||
|
||
|
||
private Long id; | ||
private String theme; | ||
private String date; | ||
private String time; | ||
|
||
private int Language; // 0 Chinese 1 English | ||
|
||
|
||
private String presenter; | ||
|
||
private String twitter; | ||
|
||
private Member member; | ||
|
||
private String sharingDoc; | ||
|
||
private String Org; | ||
|
||
//defi zk underlying | ||
private String topic; | ||
|
||
private Integer reward; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
} |