| | |
| | | public class CodePublishRecord implements Serializable {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | // 发布有效时间 3天
|
| | | public static final long VALIDTIME = 3*24*60*60;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "pr_id")
|
| | |
| | | private String portrait; // 图片
|
| | |
|
| | | @Expose
|
| | | private String team; // 邀请码
|
| | | private Long team; // 邀请码
|
| | |
|
| | | @Expose
|
| | | private String inviteCode; // 邀请码
|
| | |
| | | this.portrait = portrait;
|
| | | }
|
| | |
|
| | | public String getTeam() {
|
| | | public Long getTeam() {
|
| | | return team;
|
| | | }
|
| | |
|
| | | public void setTeam(String team) {
|
| | | public void setTeam(Long team) {
|
| | | this.team = team;
|
| | | }
|
| | |
|