Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add hiring and sharing entity #49

Merged
merged 3 commits into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ https://github.com/spruceid/siwe-go/blob/main/message.go
## IPFS data
/root/graph-node/docker/data/ipfs

## graph ql 集成

## TODO
1. 头像 简历
2. 红包改造,奖励认领自动化。
Expand Down
16 changes: 16 additions & 0 deletions src/main/java/com/dl/officialsite/hiring/Hiring.java
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;

}
40 changes: 40 additions & 0 deletions src/main/java/com/dl/officialsite/sharing/Sharing.java
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;










}