领取满签奖励

This commit is contained in:
谭凯凯
2024-12-26 17:00:07 +08:00
committed by Tankaikai
parent 0289392f3c
commit 93b591fac1
4 changed files with 84 additions and 0 deletions

View File

@@ -33,6 +33,9 @@ public class UserSignDTO implements Serializable {
@ApiModelProperty(value = "该用户能否参加签到活动", example = "1-允许,0-不允许")
private Integer enable;
@ApiModelProperty(value = "该用户是否已领取满签奖励", example = "1-已领取,0-未领取")
private Integer isReceived;
@ApiModelProperty(value = "连续签到记录")
private List<UserSignRecordDTO> recordList;
}