parent
aa6dd2f391
commit
e472433337
@ -0,0 +1,24 @@
|
||||
package com.luoo.user.dto.point;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @program: luoo_parent
|
||||
* @description: 已参加抽奖的人查询参数
|
||||
* @author: yawei.huang
|
||||
* @create: 2024-10-14 12:13
|
||||
**/
|
||||
@Data
|
||||
public class LotteryParticipatedSearchDto implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1188283935760704569L;
|
||||
|
||||
@ApiModelProperty(value = "抽奖id")
|
||||
private String lotteryId;
|
||||
|
||||
@ApiModelProperty(value = "中奖结果 1-中奖 2-未中奖 null-全部")
|
||||
private Integer lotteryResult;
|
||||
}
|
Loading…
Reference in new issue