Skip to content

Commit

Permalink
Merge pull request #49 from yanyanho/main
Browse files Browse the repository at this point in the history
add hiring and sharing  entity
  • Loading branch information
yanyanho authored Nov 4, 2023
2 parents 0973341 + 788b613 commit 43a67b4
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
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;










}

0 comments on commit 43a67b4

Please sign in to comment.