parent
ccec9958ce
commit
96bcea1979
@ -0,0 +1,35 @@
|
|||||||
|
package com.luoo.user.vo.point;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @program: luoo_parent
|
||||||
|
* @description: 抽奖区域
|
||||||
|
* @author: yawei.huang
|
||||||
|
* @create: 2024-08-16 08:08
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class LotteryRegionDetailVO {
|
||||||
|
@ApiModelProperty(value = "主键")
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "抽奖id")
|
||||||
|
private String lotteryId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "区域id")
|
||||||
|
private Integer regionId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "数量")
|
||||||
|
private Integer num;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "区域名称")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "区域编码")
|
||||||
|
private String code;
|
||||||
|
}
|
Loading…
Reference in new issue