|
|
|
@ -2,6 +2,8 @@ package com.luoo.user.pojo;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
@ -28,8 +30,9 @@ import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
@DynamicUpdate
|
|
|
|
|
@Table(name = "tb_lottery_region")
|
|
|
|
|
@EntityListeners(AuditingEntityListener.class)
|
|
|
|
|
public class LotteryRegion {
|
|
|
|
|
public class LotteryRegion implements Serializable {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = -5624272399971443902L;
|
|
|
|
|
@Id
|
|
|
|
|
@Size(max = 20)
|
|
|
|
|
@Column(name = "id", nullable = false, length = 20)
|
|
|
|
|