forked from HackXieHao/ZSQX-API
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
51213ea
commit 3dbf34d
Showing
38 changed files
with
2,358 additions
and
270 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
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
23 changes: 0 additions & 23 deletions
23
QingXie/src/main/java/com/selfcreate/qingxie/bean/user/UserActivityHoursKey.java
This file was deleted.
Oops, something went wrong.
103 changes: 103 additions & 0 deletions
103
QingXie/src/main/java/com/selfcreate/qingxie/bean/user/UserActivityHoursVw.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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
package com.selfcreate.qingxie.bean.user; | ||
|
||
public class UserActivityHoursVw { | ||
private Integer id; | ||
|
||
private Integer userId; | ||
|
||
private String userName; | ||
|
||
private Integer classId; | ||
|
||
private String className; | ||
|
||
private Integer activityId; | ||
|
||
private String activityName; | ||
|
||
private Integer count; | ||
|
||
private Integer voluntaryHours; | ||
|
||
private Integer isConfirm; | ||
|
||
public Integer getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Integer id) { | ||
this.id = id; | ||
} | ||
|
||
public Integer getUserId() { | ||
return userId; | ||
} | ||
|
||
public void setUserId(Integer userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public String getUserName() { | ||
return userName; | ||
} | ||
|
||
public void setUserName(String userName) { | ||
this.userName = userName == null ? null : userName.trim(); | ||
} | ||
|
||
public Integer getClassId() { | ||
return classId; | ||
} | ||
|
||
public void setClassId(Integer classId) { | ||
this.classId = classId; | ||
} | ||
|
||
public String getClassName() { | ||
return className; | ||
} | ||
|
||
public void setClassName(String className) { | ||
this.className = className == null ? null : className.trim(); | ||
} | ||
|
||
public Integer getActivityId() { | ||
return activityId; | ||
} | ||
|
||
public void setActivityId(Integer activityId) { | ||
this.activityId = activityId; | ||
} | ||
|
||
public String getActivityName() { | ||
return activityName; | ||
} | ||
|
||
public void setActivityName(String activityName) { | ||
this.activityName = activityName == null ? null : activityName.trim(); | ||
} | ||
|
||
public Integer getCount() { | ||
return count; | ||
} | ||
|
||
public void setCount(Integer count) { | ||
this.count = count; | ||
} | ||
|
||
public Integer getVoluntaryHours() { | ||
return voluntaryHours; | ||
} | ||
|
||
public void setVoluntaryHours(Integer voluntaryHours) { | ||
this.voluntaryHours = voluntaryHours; | ||
} | ||
|
||
public Integer getIsConfirm() { | ||
return isConfirm; | ||
} | ||
|
||
public void setIsConfirm(Integer isConfirm) { | ||
this.isConfirm = isConfirm; | ||
} | ||
} |
Oops, something went wrong.